From e4b8a33d7c84dcd320de0e5a17eae1854df025b8 Mon Sep 17 00:00:00 2001 From: zhangdongxue Date: Tue, 26 Oct 2021 09:51:28 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9D=83=E8=AF=81=E6=A0=B8=E9=94=80=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apis/interfaces/scan.js | 32 +++-- pages.json | 8 +- pages/verification/history.vue | 7 +- pages/verification/index.vue | 2 +- static/imgs/hexiao_bg.png | Bin 0 -> 55447 bytes static/imgs/ver-bg.png | Bin 0 -> 7462 bytes .../dist/dev/app-plus/app-config-service.js | 2 +- unpackage/dist/dev/app-plus/app-service.js | 99 +++++++++------ unpackage/dist/dev/app-plus/app-view.js | 115 +++++++++++------- .../dev/app-plus/static/imgs/hexiao_bg.png | Bin 0 -> 55447 bytes .../dist/dev/app-plus/static/imgs/ver-bg.png | Bin 0 -> 7462 bytes 11 files changed, 163 insertions(+), 102 deletions(-) create mode 100644 static/imgs/hexiao_bg.png create mode 100644 static/imgs/ver-bg.png create mode 100644 unpackage/dist/dev/app-plus/static/imgs/hexiao_bg.png create mode 100644 unpackage/dist/dev/app-plus/static/imgs/ver-bg.png diff --git a/apis/interfaces/scan.js b/apis/interfaces/scan.js index 82c5faf..63a17a8 100644 --- a/apis/interfaces/scan.js +++ b/apis/interfaces/scan.js @@ -3,31 +3,29 @@ * moduleName:核销相关操作 */ -import { - request -} from '../index' +import { request } from '../index' // 扫码前置条件 get 核销前置 post 表示核销 -const scanInfo = (apiUrl, data, method) => { - return request({ - url: apiUrl, - method: method, - data: data - }) +const scanInfo = (apiUrl,data,method) => { + return request({ + url: apiUrl, + method:method, + data:data + }) } // 核销记录 -const scanList = (apiUrl, data) => { - return request({ - url: apiUrl, - method: 'GET', - data: data - }) +const scanList = (apiUrl,data) => { + return request({ + url: apiUrl, + method:'GET', + data:data + }) } export { - scanInfo, - scanList + scanInfo, + scanList } diff --git a/pages.json b/pages.json index 976c57d..7622737 100644 --- a/pages.json +++ b/pages.json @@ -281,14 +281,18 @@ "name": "verificationIndex", "auth": true, "style": { - "navigationBarTitleText": "扫码核销" + "navigationBarTitleText": "扫码核销", + "navigationBarBackgroundColor":"#076cff", + "navigationBarTextStyle":"white" } }, { "path": "pages/verification/history", "name": "verificationHistory", "auth": true, "style": { - "navigationBarTitleText": "核销记录" + "navigationBarTitleText": "核销记录", + "navigationBarBackgroundColor":"#076cff", + "navigationBarTextStyle":"white" } }, { "path": "pages/shop/lists", diff --git a/pages/verification/history.vue b/pages/verification/history.vue index 55f1c32..fcada04 100644 --- a/pages/verification/history.vue +++ b/pages/verification/history.vue @@ -1,7 +1,7 @@