## 广电项目 ``` # 域名 gd.szmgzhly.com # 广电小程序(superdesk-service-routine/guangdian) 小程序名称 广电智慧楼宇 小程序链接 URL Scheme weixin://dl/business/?t=2xJyIKX3rqe 小程序普通链接二维码地址 https://gd.szmgzhly.com/super_cloud/pcm/shortcut/ # 广电后台管理系统(http://gd.szmgzhly.com/super_cloud/admin/#/) 部署路径 /super_cloud/admin 正式环境 /super_cloud/backend_guangdian 测试环境 # 广电后台管理系统 账号 gd_wh Aa123456 lzp123 Lzp123456 ``` ## 服务之窗微信端 ``` # 服务之窗微信端 https://zhly.superdesk.cn/super_cloud/wx/main/?oJGPr5eGQqgDC85CKpkMOkh-K81w&state=85 ``` ## 快速访问(即小程序版本的快捷入口) 扫普通链接二维码打开小程序 ``` # 正式链接(需要生成普通二维码后,微信扫码访问) https://gd.szmgzhly.com/super_cloud/pcm/shortcut/?orgId=778&serviceId=185 https://gd.szmgzhly.com/super_cloud/pcm/shortcut/?orgId=778&serviceId=185&servicePath=/productList?from=2&bigCategorySaleId=23 https://gd.szmgzhly.com/super_cloud/pcm/shortcut/?orgId=778&serviceId=185&servicePath=%2FproductList%3Ffrom%3D2%26bigCategorySaleId%3D23 const servicePath = encodeURIComponent("/productList?from=2&bigCategorySaleId=23"); console.log( `https://gd.szmgzhly.com/super_cloud/pcm/shortcut/?orgId=778&serviceId=185&servicePath=${servicePath}` ); ``` ## 跳转第三方小程序 ``` 小程序已设置无需关联确认,点击下一步完成关联。 原始ID:gh_f542b14408a6 appId: `wxbb0932012e5c1b5c` path: `pages/index/index`, // wx.navigateToMiniProgram({ // appId: `wxe5f52902cf4de896`, // 小程序示例 // path: `pages/form/form/form`, // }); wx.navigateToMiniProgram({ appId: `wxbb0932012e5c1b5c`, path: `pages/index/index`, }); ```