1.对接ios 的推送消息

huipay-app-dev
杨杰 1 year ago
parent 55730706ac
commit 91f4822df1
  1. 2
      Utils/Api.js
  2. 5
      manifest.json
  3. 8
      pages/index/bindScan/bindScan.vue
  4. 4
      pages/tabBar/home/home.vue

@ -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);
}

@ -52,10 +52,7 @@
/* SDK */
"sdkConfigs" : {
"push" : {
"unipush" : {
"offline" : false,
"hms" : {}
}
"unipush" : {}
},
"ad" : {}
},

@ -17,7 +17,7 @@
<view class="mart10 fcor666 padleft15 font14" v-else>创建: {{item.createTime | timeFormat('yyyy-mm-dd')}}
{{item.createTime | timeFormat('hh:mm')}}
</view>
<button class="btns" @click="unbindStore(item.id)">解除绑定</button>
<button class="btns" @click="qrcodeunbindStore(item.id)">解除绑定</button>
</view>
</view>
</template>
@ -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({

@ -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;

Loading…
Cancel
Save