diff --git a/Utils/Api.js b/Utils/Api.js index aec474f..326410e 100644 --- a/Utils/Api.js +++ b/Utils/Api.js @@ -271,7 +271,7 @@ export const connectStoreCid = params => { return POST('POST', `${base}/storeCid/connectStoreCid`, params).then(res => res.data); } //解除绑定 -export const unbindStore = params => { +export const qrcodeunbindStore = params => { return POST('POST', `${base}/payQrCode/unbindStore`, params).then(res => res.data); } diff --git a/manifest.json b/manifest.json index b172e74..e4a4a9e 100644 --- a/manifest.json +++ b/manifest.json @@ -52,10 +52,7 @@ /* SDK配置 */ "sdkConfigs" : { "push" : { - "unipush" : { - "offline" : false, - "hms" : {} - } + "unipush" : {} }, "ad" : {} }, diff --git a/pages/index/bindScan/bindScan.vue b/pages/index/bindScan/bindScan.vue index ac8e152..2c30fca 100644 --- a/pages/index/bindScan/bindScan.vue +++ b/pages/index/bindScan/bindScan.vue @@ -17,7 +17,7 @@ 创建: {{item.createTime | timeFormat('yyyy-mm-dd')}} {{item.createTime | timeFormat('hh:mm')}} - + @@ -26,7 +26,7 @@ import { getSalesmanQrCodeList, getStoreQrCodeList, - unbindStore + qrcodeunbindStore } from '../../../Utils/Api.js'; let app = getApp(); export default { @@ -136,7 +136,7 @@ }); }, //解除绑定设备 - unbindStore(item) { + qrcodeunbindStore(item) { let that = this; uni.showModal({ title: '解绑二维码', @@ -150,7 +150,7 @@ "qrCodeId": item, "storeId": that.storeId } - unbindStore(params).then(res => { + qrcodeunbindStore(params).then(res => { uni.hideLoading(); if (res.return_code == '000000') { uni.showToast({ diff --git a/pages/tabBar/home/home.vue b/pages/tabBar/home/home.vue index caf8965..4c51d8c 100644 --- a/pages/tabBar/home/home.vue +++ b/pages/tabBar/home/home.vue @@ -107,10 +107,10 @@ let that = this; uni.getPushClientId({ success: res => { - that.storeCid = res.cid; + that.storeCid = res.cid; uni.getStorage({ key: "clientId", - success: (res) => { + success: (res) => { if (res.data && res.data != undefined && res.data != that .storeCid) { status = 2;