diff --git a/App.vue b/App.vue index 8a71a42..8a4bb12 100644 --- a/App.vue +++ b/App.vue @@ -58,6 +58,10 @@ export default { this.checkArguments(); // 检测启动参数 }); // #endif + + // #ifdef MP-WEIXIN + this.applyUpdateWeChat(); + // #endif }, onShow() { @@ -66,6 +70,33 @@ export default { // #endif }, methods: { + /** + * 微信小程序版本提交更新版本 解决缓存问题 + */ + applyUpdateWeChat() { + const updateManager = uni.getUpdateManager(); + + updateManager.onCheckForUpdate(function (res) { + // 请求完新版本信息的回调 + }); + + updateManager.onUpdateReady(function (res) { + uni.showModal({ + title: "更新提示", + content: "发现新版本,是否重启应用?", + success(res) { + if (res.confirm) { + // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 + updateManager.applyUpdate(); + } + }, + }); + }); + updateManager.onUpdateFailed(function (res) { + // 新的版本下载失败 + }); + }, + // TODO 开屏广告 后续优化添加 launch() { try { diff --git a/config/api.js b/config/api.js index eed88ad..3206bbb 100644 --- a/config/api.js +++ b/config/api.js @@ -4,10 +4,10 @@ */ // 开发环境 const dev = { - common: "https://common-api.pickmall.cn", - buyer: "https://buyer-api.pickmall.cn", - // common: "http://192.168.0.109:8890", - // buyer: "http://192.168.0.109:8888", + // common: "https://common-api.pickmall.cn", + // buyer: "https://buyer-api.pickmall.cn", + common: "http://192.168.0.109:8890", + buyer: "http://192.168.0.109:8888", }; // 生产环境 const prod = { diff --git a/pages/mine/distribution/auth.vue b/pages/mine/distribution/auth.vue index 4c5a5e1..4c70762 100644 --- a/pages/mine/distribution/auth.vue +++ b/pages/mine/distribution/auth.vue @@ -8,10 +8,16 @@ - + + + + + + + + + + - 提交 + 提交 @@ -35,12 +41,16 @@