# 移动端部署
EOS Low-Code Platform 8 自带基于H5的客户端示例程序,使用VANT框架,支持微前端技术。
精简版的资源路径为:{安装目录}/static/mobile,微服务版的资源路径为:{安装目录}/web/mobile。
目前移动端采用H5技术以开源的形式提供给项目组,开源的代码在EOS8.3介质下载的同级目录source文件夹下。
# 1.移动端示例程序的访问
# 1.1精简应用模式
精简应用模式下可以通过路径直接访问移动端
http://localhost:28079/mobile/index.html
# 1.2微服务应用模式
微服务应用模式下使用nginx配置后,通过ip和移动端端口访问:http://localhost:8099/
# EOS 微服务应用环境下的eosgateway服务地址
upstream eosgateway {
server 127.0.0.1:9090;
}
#EOS mobile
server {
listen 8099;
# idata 服务所在的地址
location /cboard {
add_header X-Frame-Options ALLOWALL;
proxy_pass http://127.0.0.1:8026 ;
}
location ^~/api/ {
proxy_pass http://eosgateway ;
}
location ~/(.*)/api/ {
rewrite ^/(.*)/api/(.*)$ /api/$2 break;
proxy_pass http://eosgateway ;
}
location ~ \.biz\.ext$ {
proxy_pass http://eosgateway;
}
location / {
root "/opt/idc/apps/eos-8.2-app/web/mobile";
access_log /opt/idc/apps/eos-8.2-app/web/logs/access.log ;
error_log /opt/idc/apps/eos-8.2-app/web/logs/error.log warn;
index index.html index.htm;
try_files $uri /index.html;
}
}
# 2.移动端示例程序的使用
访问移动端示例程序
登录后访问到移动端首页
移动端示例程序可以使用AFCenter系统内的应用页面,示例如下:
登录到AFCenter系统,打开菜单”应用中心” - “菜单管理” - “移动端菜单” 配置已创建的应用页面。
打开移动端的工作台可以看见添加的菜单页面
# 3.移动端相关配置(可选)
如果需要通过企业微信或者钉钉打开移动端,可以参考集成企业微信或钉钉
← iData报表产品安装与集成 第一个表单 →