1.对接桌码

2.对接消息通知
3.对接扫码分配二维码
huipay-app-dev
杨杰 2 years ago
parent 704f9ec888
commit 0b7da8dfcf
  1. 5
      App.vue
  2. 43
      Utils/Api.js
  3. 616
      components/downloadUp.vue
  4. 266
      manifest.json
  5. 16
      pages/index/bindScan/bindScan.vue
  6. 26
      pages/index/merchant-details/merchant-details.vue
  7. 24
      pages/index/salesOrderList/salesOrderList.vue
  8. 18
      pages/index/scanCodeAllocation/scanCodeAllocation.vue
  9. 6
      pages/tabBar/home/home.vue

@ -59,9 +59,8 @@
const res = uni.getSystemInfoSync(); const res = uni.getSystemInfoSync();
uni.setStorageSync('platform', res.platform); uni.setStorageSync('platform', res.platform);
plus.runtime.getProperty(plus.runtime.appid, function(inf) { plus.runtime.getProperty(plus.runtime.appid, function(inf) {
uni.setStorageSync('version', inf.version); // uni.setStorageSync('version', inf.versionCode);
uni.setStorageSync('versionCode', inf.versionCode); //
}); });
let uuid = plus.device.uuid; let uuid = plus.device.uuid;

@ -177,18 +177,6 @@ export const deviceRefund = params => {
// //门店添加设备
// export const bindStoreDevice = params => {
// return POST('POST', `${base}/device/bindStoreDevice`, params).then(res => res.data);
// }
// //业务员查询设备列表
// export const getSalesmanDeviceList = params => {
// return POST('GET', `${base}/device/getSalesmanDeviceList`, params).then(res => res.data);
// }
// //门店查询设备列表
// export const getStoreDeviceList = params => {
// return POST('GET', `${base}/device/getStoreDeviceList`, params).then(res => res.data);
// }
//业务员查询统计 //业务员查询统计
export const moveHomeCount = params => { export const moveHomeCount = params => {
@ -264,25 +252,34 @@ export const enrollActivity = params => {
// 配置费率 // 配置费率
export const configRosterRate = params => { export const configRosterRate = params => {
return POST('POST', `${base}/bankActivity/configRosterRate`, params).then(res => res.data); return POST('POST', `${base}/bankActivity/configRosterRate`, params).then(res => res.data);
} }
//进件复议 //进件复议
export const reconsider = params => { export const reconsider = params => {
return POST('POST', `${base}/mer/reconsider`, params).then(res => res.data); return POST('POST', `${base}/mer/reconsider`, params).then(res => res.data);
} }
//根据商户查询结算 //根据商户查询结算
export const getSettleAcctByMer = params => { export const getSettleAcctByMer = params => {
return POST('GET', `${base}/merSettleAcct/getSettleAcctByMer`, params).then(res => res.data); return POST('GET', `${base}/merSettleAcct/getSettleAcctByMer`, params).then(res => res.data);
} }
//上传cid //上传cid
export const uniPush = params => { export const uniPush = params => {
return POST('GET', `${base}/test/uniPush`, params).then(res => res.data); return POST('GET', `${base}/test/uniPush`, params).then(res => res.data);
} }
//绑定门店关系 //绑定门店关系
export const connectStoreCid = params => { export const connectStoreCid = params => {
return POST('POST', `${base}/storeCid/connectStoreCid`, params).then(res => res.data); return POST('POST', `${base}/storeCid/connectStoreCid`, params).then(res => res.data);
} }
//结束播报语音 //解除绑定
export const unbindStore = params => {
return POST('POST', `${base}/payQrCode/unbindStore`, params).then(res => res.data);
}
//结束播报语音
export const voiceSucceed = params => { export const voiceSucceed = params => {
return POST('GET', `${base}/storeCid/voiceSucceed`, params).then(res => res.data); return POST('GET', `${base}/storeCid/voiceSucceed`, params).then(res => res.data);
} }
//查询版本号?termType=APP
export const queryVersion = params => {
return POST('GET', `${base}/sysVersion/queryVersion`, params).then(res => res.data);
}

@ -1,294 +1,324 @@
<template> <template>
<view class="content" v-if="bannerShow"> <view class="content" v-if="bannerShow">
<!-- 弹出层 --> <!-- 弹出层 -->
<view class="uni-banner"> <view class="uni-banner">
<image src="/static/img/startUpHeader01.png" class="startUpHeaderLogo" /> <!-- <image src="../static/logo.png" class="startUpHeaderLogo" /> -->
<view class="banner_box"> <view class="banner_box">
<view class="startUpHeaderBox h6">发现新版本</view> <view class="startUpHeaderBox h6">发现新版本</view>
<view class="conter">{{ msg }}</view> <view class="conter">{{ msg }}</view>
<view class="banner_foot"><button @click="goUpdate(updateApkObj)" class="banner_foot_button">前往升级</button></view> <view class="banner_foot"><button @click="goUpdate()" class="banner_foot_button">前往升级</button></view>
</view> </view>
</view> </view>
<view class="uni-mask"></view> <view class="uni-mask"></view>
</view> </view>
</template> </template>
<script> <script>
import { comparisonVersionHandler } from '@/common/js/tools'; // import {
import { getUpgrade } from '@/common/js/apis'; // getUpgrade
// } from '@/common/js/apis';
export default { import {
data() { queryVersion
return { } from '../Utils/Api.js'
bannerShow: false, // app export default {
msg: '', // data() {
type: '', // android:2, ios:1 return {
updateApkObj: null // bannerShow: false, // app
}; msg: '', //
}, type: '', // android:2, ios:1
created() { updateApkObj: null //
const appUpdate = uni.getStorageSync('platform'); };
// #ifdef APP-PLUS },
this.type = appUpdate == 'android' ? 2 : 1; created() {
this.checkUpdate(); const appUpdate = uni.getStorageSync('platform');
// #endif // #ifdef APP-PLUS
this.checkUpdate();
}, // #endif
methods: {
checkUpdate() { },
const self = this, methods: {
localAppVersonName = uni.getStorageSync('version'), checkUpdate() {
localAppVerson = uni.getStorageSync('versionCode'); let that = this;
let localAppVersonName = uni.getStorageSync('version');
// #ifdef APP-PLUS // #ifdef APP-PLUS
plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) { let datas = {
getUpgrade({ termType: "app"
appType: self.type }
}).then(res => { queryVersion(datas).then(res => {
const { data } = res.data; if (res.return_code == '000000') {
if (res.data.code !== '200') return; if (res.return_data.versionType == 1 && that.comparisonVersionHandler(localAppVersonName,
// res.return_data.version)) {
if (data.apkVersion && comparisonVersionHandler(localAppVersonName, data.apkVersion.appVersonName)) { that.downloadWgt(res.return_data.fileUrl);
uni.hideTabBar() return;
self.updateApkObj = data.apkVersion; }
self.msg = data.apkVersion.versonLog; if (res.return_data.versionType == 2 && that.comparisonVersionHandler(localAppVersonName,
self.bannerShow = true; res.return_data.version)) {
return; that.updateApkObj = res.return_data;
// app that.bannerShow = true; //
} else if (data.wgtVersion && comparisonVersionHandler(localAppVerson, data.wgtVersion.appVerson)) { return;
self.downloadWgt(data.wgtVersion.downloadUrl); }
return; }
} else { })
return; // #endif
} },
});
}); downloadWgt(updateWgtUrl) {
// #endif //
}, // wgt
downloadWgt(updateWgtUrl) { const that = this;
// // wgt
// wgt plus.nativeUI.showWaiting('正在更新...');
const that = this; plus.downloader
// wgt .createDownload(
plus.nativeUI.showWaiting('正在更新...'); updateWgtUrl, {
plus.downloader filename: '_doc/update/'
.createDownload( },
updateWgtUrl, function(d, status) {
{ if (status == 200) {
filename: '_doc/update/' that.installWgt(d.filename); // wgt
}, }
function(d, status) { plus.nativeUI.closeWaiting();
if (status == 200) { }
that.installWgt(d.filename); // wgt )
} .start();
plus.nativeUI.closeWaiting(); },
} installWgt(path) {
) // wgt
.start(); plus.nativeUI.showWaiting('安装文件...');
}, plus.runtime.install(
installWgt(path) { path, {
// wgt force: true
plus.nativeUI.showWaiting('安装文件...'); },
plus.runtime.install( function() {
path, plus.nativeUI.closeWaiting();
{ force: true }, plus.nativeUI.alert('应用资源更新完成!', function() {
function() { plus.runtime.restart();
plus.nativeUI.closeWaiting(); });
plus.nativeUI.alert('应用资源更新完成!', function() { },
plus.runtime.restart(); function(e) {
}); plus.nativeUI.closeWaiting();
}, }
function(e) { );
plus.nativeUI.closeWaiting(); },
} goUpdate() {
); if (this.type == 2) {
}, //
goUpdate(updateApkObj) { var dtask = plus.downloader.createDownload(
if (this.type == 2) { this.updateApkObj.fileUrl, {},
// function(d, status) {
var dtask = plus.downloader.createDownload(updateApkObj.downloadUrl, {}, function(d, status) { this.bannerShow = false;
this.bannerShow = false; //
// if (status == 200) {
if (status == 200) { plus.runtime.install(plus.io.convertLocalFileSystemURL(d.filename), {}, {}, function(
plus.runtime.install(plus.io.convertLocalFileSystemURL(d.filename), {}, {}, function(error) { error) {
uni.showToast({ uni.showToast({
title: '安装失败', title: '安装失败',
mask: false, mask: false,
duration: 1500 duration: 1500
}); });
}); });
} else { } else {
uni.showToast({ uni.showToast({
title: '更新失败', title: '更新失败',
mask: false, mask: false,
duration: 1500 duration: 1500
}); });
} }
}); });
try { try {
dtask.start(); // dtask.start(); //
let prg = 0; let prg = 0;
const showLoading = plus.nativeUI.showWaiting('正在下载'); //showWaiting const showLoading = plus.nativeUI.showWaiting('正在下载'); //showWaiting
dtask.addEventListener('statechanged', function(task, status) { dtask.addEventListener('statechanged', function(task, status) {
// //
switch (task.state) { switch (task.state) {
case 1: case 1:
showLoading.setTitle('正在下载'); showLoading.setTitle('正在下载');
break; break;
case 2: case 2:
showLoading.setTitle('已连接到服务器'); showLoading.setTitle('已连接到服务器');
break; break;
case 3: case 3:
prg = parseInt((parseFloat(task.downloadedSize) / parseFloat(task.totalSize)) * 100); prg = parseInt((parseFloat(task.downloadedSize) / parseFloat(task.totalSize)) *
showLoading.setTitle(' 正在下载' + prg + '% '); 100);
break; showLoading.setTitle(' 正在下载' + prg + '% ');
case 4: break;
plus.nativeUI.closeWaiting(); case 4:
// plus.nativeUI.closeWaiting();
break; //
} break;
}); }
} catch (err) { });
plus.nativeUI.closeWaiting(); } catch (err) {
uni.showToast({ plus.nativeUI.closeWaiting();
title: '更新失败-03', uni.showToast({
mask: false, title: '更新失败-03',
duration: 1500 mask: false,
}); duration: 1500
} });
} else if (this.type == 1) { // iosapp store }
plus.runtime.openURL(updateApkObj.downloadUrl); } else if (this.type == 1) { // iosapp store
} plus.runtime.openURL(updateApkObj.downloadUrl);
} }
} },
}; //
</script> comparisonVersionHandler(reqV, curV) {
/*
<style lang="scss" scoped> curV string :当前最新
.content, reqV string :之前
#img {
width: 100%; 返回 true 表示需要升级
height: 100%; */
} if (curV && reqV) {
curV = String(curV);
.content .con { reqV = String(reqV);
font-size: 0; //
display: flex; let arr1 = curV.split('.'), //
align-items: center; arr2 = reqV.split('.');
} let minLength = Math.min(arr1.length, arr2.length),
position = 0,
diff = 0;
#info { //
position: absolute; while (position < minLength && ((diff = parseInt(arr1[position]) - parseInt(arr2[position])) == 0)) {
top: 0; position++;
left: 0; }
width: 72rpx; diff = (diff != 0) ? diff : (arr1.length - arr2.length);
height: 72rpx; //curVreqVtrue
line-height: 72rpx; return diff > 0;
border-radius: 50%; } else {
background-color: rgba(0, 0, 0, 0.3); //
text-align: center; return false;
color: #fff; }
font-size: 24rpx; }
} }
};
</script>
.wrapper {
width: 36rpx; <style lang="scss" scoped>
height: 72rpx; .content,
position: absolute; #img {
top: 0; width: 100%;
overflow: hidden; height: 100%;
} }
.right { .content .con {
right: 0; font-size: 0;
} display: flex;
align-items: center;
.left { }
left: 0;
}
#info {
position: absolute;
top: 0;
left: 0;
width: 72rpx;
height: 72rpx;
line-height: 72rpx;
/* 弹出层形式的广告 */ border-radius: 50%;
.uni-banner { background-color: rgba(0, 0, 0, 0.3);
display: flex; text-align: center;
align-items: center; color: #fff;
flex-direction: column; font-size: 24rpx;
position: fixed; }
left: 50%;
top: 50%;
z-index: 1000; .wrapper {
transform: translate(-50%, -50%); width: 36rpx;
width: 80%; height: 72rpx;
position: absolute;
.startUpHeaderLogo { top: 0;
width: 256rpx; overflow: hidden;
height: 194rpx; }
}
.right {
.banner_box { right: 0;
width: 100%; }
background: #fff;
border-radius: 20rpx; .left {
} left: 0;
}
.startUpHeaderBox {
width: 100%;
height: 96rpx;
background-image: url('/static/img/startUpHeader02.png');
background-position: left top;
background-repeat: no-repeat;
background-size: cover;
} /* 弹出层形式的广告 */
} .uni-banner {
display: flex;
.banner_box .h6 { align-items: center;
text-align: center; flex-direction: column;
line-height: 96rpx; position: fixed;
font-size: 36rpx; left: 50%;
color: #fff; top: 50%;
font-weight: bold; z-index: 1000;
} transform: translate(-50%, -50%);
width: 80%;
.banner_box .conter {
font-size: 28rpx; .startUpHeaderLogo {
color: #333; width: 256rpx;
margin: 48rpx; height: 194rpx;
} }
.banner_foot { .banner_box {
width: 238rpx; width: 100%;
margin: 48rpx auto; background: #fff;
} border-radius: 20rpx;
}
.banner_foot_button {
background-image: linear-gradient(to right, #3aaf7a, #41bf7f); .startUpHeaderBox {
line-height: 72rpx; width: 100%;
height: 72rpx; height: 96rpx;
font-size: 30rpx; background-image: url('/static/logo.png');
color: #fff; background-position: left top;
font-weight: bold; background-repeat: no-repeat;
border-radius: 40rpx; background-size: cover;
border: none; }
box-shadow: 0 8rpx 20rpx 0 rgba(46, 189, 88, 0.36); }
}
.banner_box .h6 {
.banner_foot_button:active { text-align: center;
background-image: linear-gradient(to right, #41bf7f, #3aaf7a); line-height: 96rpx;
} font-size: 36rpx;
color: #fff;
.uni-mask { font-weight: bold;
background: rgba(0, 0, 0, 0.6); }
position: fixed;
width: 100%; .banner_box .conter {
height: 100%; font-size: 28rpx;
left: 0; color: #333;
top: 0; margin: 48rpx;
z-index: 2; }
}
.banner_foot {
width: 238rpx;
margin: 48rpx auto;
}
.banner_foot_button {
background-image: linear-gradient(to right, #3aaf7a, #41bf7f);
line-height: 72rpx;
height: 72rpx;
font-size: 30rpx;
color: #fff;
font-weight: bold;
border-radius: 40rpx;
border: none;
box-shadow: 0 8rpx 20rpx 0 rgba(46, 189, 88, 0.36);
}
.banner_foot_button:active {
background-image: linear-gradient(to right, #41bf7f, #3aaf7a);
}
.uni-mask {
background: rgba(0, 0, 0, 0.6);
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 2;
}
</style> </style>

@ -1,133 +1,133 @@
{ {
"name" : "惠支付", "name": "惠支付",
"appid" : "__UNI__190622D", "appid": "__UNI__190622D",
"description" : "", "description": "",
"versionName" : "1.0.0", "versionName": "1.0.0",
"versionCode" : "100", "versionCode": 101,
"transformPx" : false, "transformPx": false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus": {
"usingComponents" : true, "usingComponents": true,
"nvueStyleCompiler" : "uni-app", "nvueStyleCompiler": "uni-app",
"compilerVersion" : 3, "compilerVersion": 3,
"splashscreen" : { "splashscreen": {
"alwaysShowBeforeRender" : true, "alwaysShowBeforeRender": true,
"waiting" : true, "waiting": true,
"autoclose" : true, "autoclose": true,
"delay" : 0 "delay": 0
}, },
/* */ /* */
"modules" : { "modules": {
"Push" : {} "Push": {}
}, },
/* */ /* */
"distribute" : { "distribute": {
/* android */ /* android */
"android" : { "android": {
"permissions" : [ "permissions": [
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>", "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>", "<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
"<uses-permission android:name=\"android.permission.VIBRATE\"/>", "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
"<uses-permission android:name=\"android.permission.READ_LOGS\"/>", "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>", "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>", "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>", "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
"<uses-permission android:name=\"android.permission.CAMERA\"/>", "<uses-permission android:name=\"android.permission.CAMERA\"/>",
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>", "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>", "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>", "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>", "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>", "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>", "<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>" "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
] ]
}, },
/* ios */ /* ios */
"ios" : { "ios": {
"dSYMs" : false "dSYMs": false
}, },
/* SDK */ /* SDK */
"sdkConfigs" : { "sdkConfigs": {
"push" : { "push": {
"unipush" : { "unipush": {
"offline" : false, "offline": false,
"hms" : {} "hms": {}
} }
}, },
"ad" : {} "ad": {}
}, },
"icons" : { "icons": {
"android" : { "android": {
"hdpi" : "unpackage/res/icons/72x72.png", "hdpi": "unpackage/res/icons/72x72.png",
"xhdpi" : "unpackage/res/icons/96x96.png", "xhdpi": "unpackage/res/icons/96x96.png",
"xxhdpi" : "unpackage/res/icons/144x144.png", "xxhdpi": "unpackage/res/icons/144x144.png",
"xxxhdpi" : "unpackage/res/icons/192x192.png" "xxxhdpi": "unpackage/res/icons/192x192.png"
}, },
"ios" : { "ios": {
"appstore" : "unpackage/res/icons/1024x1024.png", "appstore": "unpackage/res/icons/1024x1024.png",
"ipad" : { "ipad": {
"app" : "unpackage/res/icons/76x76.png", "app": "unpackage/res/icons/76x76.png",
"app@2x" : "unpackage/res/icons/152x152.png", "app@2x": "unpackage/res/icons/152x152.png",
"notification" : "unpackage/res/icons/20x20.png", "notification": "unpackage/res/icons/20x20.png",
"notification@2x" : "unpackage/res/icons/40x40.png", "notification@2x": "unpackage/res/icons/40x40.png",
"proapp@2x" : "unpackage/res/icons/167x167.png", "proapp@2x": "unpackage/res/icons/167x167.png",
"settings" : "unpackage/res/icons/29x29.png", "settings": "unpackage/res/icons/29x29.png",
"settings@2x" : "unpackage/res/icons/58x58.png", "settings@2x": "unpackage/res/icons/58x58.png",
"spotlight" : "unpackage/res/icons/40x40.png", "spotlight": "unpackage/res/icons/40x40.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png" "spotlight@2x": "unpackage/res/icons/80x80.png"
}, },
"iphone" : { "iphone": {
"app@2x" : "unpackage/res/icons/120x120.png", "app@2x": "unpackage/res/icons/120x120.png",
"app@3x" : "unpackage/res/icons/180x180.png", "app@3x": "unpackage/res/icons/180x180.png",
"notification@2x" : "unpackage/res/icons/40x40.png", "notification@2x": "unpackage/res/icons/40x40.png",
"notification@3x" : "unpackage/res/icons/60x60.png", "notification@3x": "unpackage/res/icons/60x60.png",
"settings@2x" : "unpackage/res/icons/58x58.png", "settings@2x": "unpackage/res/icons/58x58.png",
"settings@3x" : "unpackage/res/icons/87x87.png", "settings@3x": "unpackage/res/icons/87x87.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png", "spotlight@2x": "unpackage/res/icons/80x80.png",
"spotlight@3x" : "unpackage/res/icons/120x120.png" "spotlight@3x": "unpackage/res/icons/120x120.png"
} }
} }
} }
} }
}, },
/* */ /* */
"quickapp" : {}, "quickapp": {},
/* */ /* */
"mp-weixin" : { "mp-weixin": {
"appid" : "", "appid": "",
"setting" : { "setting": {
"urlCheck" : false "urlCheck": false
}, },
"usingComponents" : true "usingComponents": true
}, },
"mp-alipay" : { "mp-alipay": {
"usingComponents" : true "usingComponents": true
}, },
"mp-baidu" : { "mp-baidu": {
"usingComponents" : true "usingComponents": true
}, },
"mp-toutiao" : { "mp-toutiao": {
"usingComponents" : true "usingComponents": true
}, },
"uniStatistics" : { "uniStatistics": {
"enable" : false "enable": false
}, },
"vueVersion" : "2", "vueVersion": "2",
"h5" : { "h5": {
"router" : { "router": {
"base" : "/cweb", "base": "/cweb",
"mode" : "hash" "mode": "hash"
}, },
"title" : "惠支付", "title": "惠支付",
"devServer" : { "devServer": {
"https" : false "https": false
}, },
"sdkConfigs" : { "sdkConfigs": {
"maps" : { "maps": {
"qqmap" : { "qqmap": {
"key" : "7UMBZ-HFEHX-HSD4Q-Z3QY6-OQKN7-2QBDB" "key": "7UMBZ-HFEHX-HSD4Q-Z3QY6-OQKN7-2QBDB"
} }
} }
} },
} }
} }

@ -17,16 +17,16 @@
<view class="mart10 fcor666 padleft15 font14" v-else>创建: {{item.createTime | timeFormat('yyyy-mm-dd')}} <view class="mart10 fcor666 padleft15 font14" v-else>创建: {{item.createTime | timeFormat('yyyy-mm-dd')}}
{{item.createTime | timeFormat('hh:mm')}} {{item.createTime | timeFormat('hh:mm')}}
</view> </view>
<button class="btns" @click="bindStore(item.id)" v-if="typeId == 1">绑定二维码</button> <button class="btns" @click="unbindStore(item.id)">解除绑定</button>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
import { import {
bindStore,
getSalesmanQrCodeList, getSalesmanQrCodeList,
getStoreQrCodeList getStoreQrCodeList,
unbindStore
} from '../../../Utils/Api.js'; } from '../../../Utils/Api.js';
let app = getApp(); let app = getApp();
export default { export default {
@ -135,12 +135,12 @@
} }
}); });
}, },
// //
bindStore(item) { unbindStore(item) {
let that = this; let that = this;
uni.showModal({ uni.showModal({
title: '绑二维码', title: '绑二维码',
content: '是否绑当前二维码。', content: '是否绑当前二维码。',
success: (res) => { success: (res) => {
if (res.confirm) { if (res.confirm) {
uni.showLoading({ uni.showLoading({
@ -150,7 +150,7 @@
"qrCodeId": item, "qrCodeId": item,
"storeId": that.storeId "storeId": that.storeId
} }
bindStore(params).then(res => { unbindStore(params).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
uni.showToast({ uni.showToast({

@ -90,7 +90,7 @@
<view class="margle10 font14 fcor999 width90p">{{item.storeRegion.address}}</view> <view class="margle10 font14 fcor999 width90p">{{item.storeRegion.address}}</view>
</view> </view>
<view class="height45 width100"> <view class="height45 width100">
<button class="btns mart10 margle10" @click.stop="jumpBindScan(item.id,1)">绑定二维码</button> <button class="btns mart10 margle10" @click.stop="jumpBindScan(item,1)">绑定二维码</button>
<button class="btns mart10 margle10" @click.stop="jumpBindScan(item.id,2)">二维码列表</button> <button class="btns mart10 margle10" @click.stop="jumpBindScan(item.id,2)">二维码列表</button>
<!-- <button class="btns mart10 marRight10" @click.stop="jumpService(item.id,1)">绑定设备</button> --> <!-- <button class="btns mart10 marRight10" @click.stop="jumpService(item.id,1)">绑定设备</button> -->
<!-- <button class="btns mart10 marRight10" @click.stop="jumpService(item.id,2)">设备列表</button> --> <!-- <button class="btns mart10 marRight10" @click.stop="jumpService(item.id,2)">设备列表</button> -->
@ -166,7 +166,7 @@
pageNum: 1, pageNum: 1,
pageSize: 10 pageSize: 10
} }
getStoreListByMer(datas).then(res => { getStoreListByMer(datas).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000' && res.return_data.list) { if (res.return_code == '000000' && res.return_data.list) {
this.storeList = res.return_data.list; this.storeList = res.return_data.list;
@ -199,9 +199,25 @@
}, },
// //
jumpBindScan(item, items) { jumpBindScan(item, items) {
uni.navigateTo({ if (items == 1) {
url: '../bindScan/bindScan?storeid=' + item + '&type=' + items //
}) uni.scanCode({
success: function(res) {
let scanCont = res.result.split('=');
let scanNo = scanCont[1];
uni.navigateTo({
url: '/pages/index/scanCodeAllocation/scanCodeAllocation?storename=' +
item.name + '&scanno=' + scanNo +
'&storeId=' + item.id
})
}
});
} else {
uni.navigateTo({
url: '../bindScan/bindScan?storeid=' + item + '&type=' + items
})
}
} }
} }
} }

@ -29,17 +29,12 @@
<view class="margle10 font13 fcor999">申请数量: 1</view> <view class="margle10 font13 fcor999">申请数量: 1</view>
</view> </view>
<view class="width90 paddbotm10 alijusstart"> <view class="width90 paddbotm10 alijusstart">
<view class="otstatucs border-r marRight10" @click.stop="scanNo(item)"
v-if="item.status == 2 && item.deviceType == 2">
分配桌码
</view>
<view class="otstatucs border-r marRight10" @click.stop="orderRefund(item.orderNo)" <view class="otstatucs border-r marRight10" @click.stop="orderRefund(item.orderNo)"
v-if="item.status == 2 && item.deviceType == 1"> v-if="item.status == 2">
订单退款 订单退款
</view> </view>
<view class="otstatucs border-r marRight10" @click.stop="replace(item.orderAssignList[0].id)" <view class="otstatucs border-r marRight10" @click.stop="replace(item.orderAssignList[0].id)"
v-if="item.status == 3 && item.deviceType == 1"> v-if="item.status == 3">
更换设备 更换设备
</view> </view>
</view> </view>
@ -134,21 +129,6 @@
} }
}) })
}, },
//
scanNo(item) {
//
uni.scanCode({
success: function(res) {
let scanCont = res.result.split('=');
let scanNo = scanCont[1];
uni.navigateTo({
url: '/pages/index/scanCodeAllocation/scanCodeAllocation?storename=' +
item.storeName + '&scanno=' + scanNo + '&orderno=' + item.orderNo
})
}
});
},
// //
jumpService(item) { jumpService(item) {
if (this.goodtyid == 2) { if (this.goodtyid == 2) {

@ -11,30 +11,30 @@
<view class="font14 fcor333 text2 width75 fotrt">{{scanNo}}</view> <view class="font14 fcor333 text2 width75 fotrt">{{scanNo}}</view>
</view> </view>
<view class="btn" @tap="assignOrder">提交绑定</view> <view class="btn" @tap="bindStore">提交绑定</view>
</view> </view>
</template> </template>
<script> <script>
import { import {
assignOrder bindStore
} from '../../../Utils/Api.js'; } from '../../../Utils/Api.js';
export default { export default {
data() { data() {
return { return {
scanNo: '', //, scanNo: '', //,
storeName: '', // storeName: '', //
orderNo: '' // storeId: '' //
} }
}, },
onLoad(options) { onLoad(options) {
this.scanNo = options.scanno; this.scanNo = options.scanno;
this.storeName = options.storename; this.storeName = options.storename;
this.orderNo = options.orderno; this.storeId = options.storeId;
}, },
methods: { methods: {
// //
assignOrder() { bindStore() {
uni.showModal({ uni.showModal({
title: '温馨提示', title: '温馨提示',
content: '是否分配当前设备', content: '是否分配当前设备',
@ -43,13 +43,11 @@
uni.showLoading({ uni.showLoading({
title: '加载中' title: '加载中'
}) })
let serviceList = [];
serviceList.push(this.scanNo);
let datas = { let datas = {
"orderNo": this.orderNo, "serialNumber": this.scanNo,
"deviceNoList": serviceList "storeId": this.storeId
} }
assignOrder(datas).then(res => { bindStore(datas).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
uni.showToast({ uni.showToast({

@ -64,6 +64,8 @@
</view> </view>
</view> </view>
<view class="width100 height40p"></view> <view class="width100 height40p"></view>
<downloadup></downloadup>
</view> </view>
</template> </template>
@ -76,8 +78,12 @@
connectStoreCid, connectStoreCid,
voiceSucceed voiceSucceed
} from '../../../Utils/Api.js' } from '../../../Utils/Api.js'
import downloadup from '../../../components/downloadUp.vue'
let app = getApp(); let app = getApp();
export default { export default {
components: {
downloadup
},
data() { data() {
return { return {
funcList: [], funcList: [],

Loading…
Cancel
Save