From 8935ee79730ac7861e4da34e2871820c5b4f606b Mon Sep 17 00:00:00 2001 From: Wik-T <812952667@qq.com> Date: Mon, 22 May 2023 09:48:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AF=B9=E6=8E=A5=E6=9D=83=E7=9B=8A=E6=B4=BB?= =?UTF-8?q?=E5=8A=A8=202.=E4=BF=AE=E6=94=B9=E4=BA=A4=E6=98=93=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=203.=E6=89=93?= =?UTF-8?q?=E5=8C=85=E4=B8=8A=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 8 +- Utils/Api.js | 31 ++- pages.json | 54 +++- pages/index/collectNotes/collectNotes.vue | 208 ++++++++++++++-- .../equity-activities-details.vue | 234 ++++++++++++++++++ .../equity-activities/equity-activities.vue | 130 ++++++++++ .../equity-activity-review.vue | 90 +++++++ .../merchant-details/merchant-details.vue | 17 +- .../merchant-incoming-parts.vue | 6 +- .../merchant-management.vue | 13 +- .../order-list-details/order-list-details.vue | 70 ++++++ .../review-Settlement/review-Settlement.vue | 21 -- pages/tabBar/home/home.vue | 34 +-- pages/welcome/welcome.vue | 40 +-- static/img/alipay.png | Bin 0 -> 2264 bytes static/img/home5.png | Bin 0 -> 1764 bytes static/img/wechat.png | Bin 0 -> 2370 bytes unpackage/dist/build/h5/index.html | 2 +- 18 files changed, 862 insertions(+), 96 deletions(-) create mode 100644 pages/index/equity-activities-details/equity-activities-details.vue create mode 100644 pages/index/equity-activities/equity-activities.vue create mode 100644 pages/index/equity-activity-review/equity-activity-review.vue create mode 100644 pages/index/order-list-details/order-list-details.vue create mode 100644 static/img/alipay.png create mode 100644 static/img/home5.png create mode 100644 static/img/wechat.png diff --git a/App.vue b/App.vue index 8941b45..de77746 100644 --- a/App.vue +++ b/App.vue @@ -4,11 +4,11 @@ // url: 'http://192.168.3.4:9301/crest', // imgUrl: 'https://192.168.3.4:9301/filesystem/', //正式 - url: 'https://pay.dctpay.com/crest', - imgUrl: 'https://gratia-pay.obs.cn-southwest-2.myhuaweicloud.com', + // url: 'https://pay.dctpay.com/crest', + // imgUrl: 'https://gratia-pay.obs.cn-southwest-2.myhuaweicloud.com', //测试 - // url: 'https://gratia-pay.dctpay.com/crest', - // imgUrl: 'https://gratia-pay-test.obs.cn-east-3.myhuaweicloud.com', + url: 'https://gratia-pay.dctpay.com/crest', + imgUrl: 'https://gratia-pay-test.obs.cn-east-3.myhuaweicloud.com', userInfo: "", openId: '', h5code: '', diff --git a/Utils/Api.js b/Utils/Api.js index 85731c1..7f5db62 100644 --- a/Utils/Api.js +++ b/Utils/Api.js @@ -115,20 +115,20 @@ export const getLastApplyByMer = params => { export const getAuditList = params => { return POST('GET', `${base}/audit/getAuditList`, params).then(res => res.data); } -//通过审核 +//通过审核 export const approve = params => { return POST('POST', `${base}/audit/approve`, params).then(res => res.data); } -//驳回审核 +//驳回审核 export const reject = params => { return POST('POST', `${base}/audit/reject`, params).then(res => res.data); -} -//审核详情 +} +//审核详情 export const getAuditDetail = params => { return POST('GET', `${base}/audit/getAuditDetail`, params).then(res => res.data); -} - - +} + + @@ -247,4 +247,21 @@ export const merLedgerReceiverDelApply = params => { //查询接收方详情 export const getLedgerReceiverById = params => { return POST('GET', `${base}/merLedger/getLedgerReceiverById`, params).then(res => res.data); +} + +//查询活动列表 +export const queryActivityList = params => { + return POST('GET', `${base}/bankActivity/queryActivityList`, params).then(res => res.data); +} +//查询活动详情 +export const queryActivityDetail = params => { + return POST('GET', `${base}/bankActivity/queryActivityDetail`, params).then(res => res.data); +} +//报名活动 +export const enrollActivity = params => { + return POST('POST', `${base}/bankActivity/enrollActivity`, params).then(res => res.data); +} +// 配置费率 +export const configRosterRate = params => { + return POST('POST', `${base}/bankActivity/configRosterRate`, params).then(res => res.data); } \ No newline at end of file diff --git a/pages.json b/pages.json index 706fd87..b64deb2 100644 --- a/pages.json +++ b/pages.json @@ -398,12 +398,62 @@ } } + }, { + "path": "pages/index/table_CodeList/table_CodeList", + "style": { + "navigationBarTitleText": "分配桌码", + "navigationBarTextStyle": "white", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": false, //禁用原生导航栏 + "softinputNavBar": "none" + } + } + + }, { + "path": "pages/index/equity-activities/equity-activities", + "style": { + "navigationBarTitleText": "权益活动", + "navigationBarTextStyle": "white", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": false, //禁用原生导航栏 + "softinputNavBar": "none" + } + } + + }, { + "path": "pages/index/equity-activities-details/equity-activities-details", + "style": { + "navigationBarTitleText": "活动详情", + "navigationBarTextStyle": "white", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": false, //禁用原生导航栏 + "softinputNavBar": "none" + } + } + } ,{ - "path" : "pages/index/table_CodeList/table_CodeList", + "path" : "pages/index/equity-activity-review/equity-activity-review", + "style" : + { + "navigationBarTitleText": "活动审核", + "navigationBarTextStyle": "white", + "enablePullDownRefresh": false, + "app-plus": { + "titleNView": false, //禁用原生导航栏 + "softinputNavBar": "none" + } + } + + } + ,{ + "path" : "pages/index/order-list-details/order-list-details", "style" : { - "navigationBarTitleText": "分配桌码", + "navigationBarTitleText": "订单详情", "navigationBarTextStyle": "white", "enablePullDownRefresh": false, "app-plus": { diff --git a/pages/index/collectNotes/collectNotes.vue b/pages/index/collectNotes/collectNotes.vue index 3668209..a4b04c5 100644 --- a/pages/index/collectNotes/collectNotes.vue +++ b/pages/index/collectNotes/collectNotes.vue @@ -1,19 +1,70 @@ @@ -24,7 +75,12 @@ } from '../../../Utils/Api.js'; export default { data() { + const currentDate = this.getDate({ + format: true + }) return { + startdate: currentDate, + enddate: currentDate, notesList: [], statusList: { 1: "待支付", @@ -37,6 +93,17 @@ pageNum: 1, pageSize: 10, isNoMoreData: false, //是否加载中 + orderNo: '', //订单编号 + totalPrice: 0, //总价格 + totalNum: 0, //总笔数 + } + }, + computed: { + startDate() { + return this.getDate('start'); + }, + endDate() { + return this.getDate('end'); } }, onLoad() { @@ -45,24 +112,73 @@ onReachBottom() { this.getTradeOrderList(); }, + methods: { - getTradeOrderList() { + //时间修改 + getDate(type) { + const date = new Date(); + let year = date.getFullYear(); + let month = date.getMonth() + 1; + let day = date.getDate(); + + if (type === 'start') { + year = year - 60; + } else if (type === 'end') { + year = year + 2; + } + month = month > 9 ? month : '0' + month;; + day = day > 9 ? day : '0' + day; + return `${year}-${month}-${day}`; + }, + //选择时间 + bindDateChange(e) { + this.startdate = e.target.value; + this.pageNum = 1; + this.notesList = []; + this.isNoMoreData = false; + this.getTradeOrderList(); + }, + bindDateChange1(e) { + this.enddate = e.target.value; + this.pageNum = 1; + this.notesList = []; + this.isNoMoreData = false; + this.getTradeOrderList(); + }, + toSearch(){ + this.pageNum = 1; + this.notesList = []; + this.isNoMoreData = false; + this.getTradeOrderList(); + }, + //查询列表 + getTradeOrderList() { uni.showLoading({ title: '加载中...' }) if (this.isNoMoreData) { uni.hideLoading() return false; - } + } + console.log('1111111111'); + let a = new Date(this.startdate).getTime(); + let b = new Date(this.enddate).getTime(); + let startTime = a - 28800000; + let endTime = b + 57599000; let pagenum = this.pageNum; let datas = { + status: 3, + payTimeS: startTime, + payTimeE: endTime, + outTradeNo: this.orderNo, pageNum: pagenum, pageSize: this.pageSize } - getTradeOrderList(datas).then(res => { uni.hideLoading(); if (res.return_code == '000000' && res.return_data.pageInfo.list) { + this.totalPrice = res.return_data.totalPrice; + this.totalNum = res.return_data.totalNum; this.isNoMoreData = res.return_data.pageInfo.list.length == this.pageSize ? false : true; this.notesList = this.notesList.concat(res.return_data.pageInfo.list); if (res.return_data.pageInfo.total == (this.pageNum * this.pageSize)) { @@ -79,6 +195,12 @@ } }) }, + //跳转详情 + jumpOderlist() { + // uni.navigateTo({ + // url: '/pages/index/order-list-details/order-list-details' + // }) + } } } @@ -88,6 +210,51 @@ background-color: #f8f9f9; } + .input-box { + width: 90%; + margin-left: 5%; + margin-top: 15px; + margin-bottom: 15px; + height: 70rpx; + background-color: #f5f5f5; + border-radius: 10rpx; + position: relative; + display: flex; + align-items: center; + + .icon { + display: flex; + align-items: center; + position: absolute; + top: 2px; + left: 5px; + width: 60upx; + height: 60upx; + font-size: 34upx; + color: #c0c0c0; + } + + input { + padding-left: 50upx; + height: 28upx; + font-size: 28upx; + width: 100%; + } + } + + i { + border: solid #ffffff; + border-width: 0 2px 2px 0; + display: inline-block; + padding: 4px; + margin-left: 10px; + vertical-align: 3px; + } + + .down { + -webkit-transform: rotate(45deg); + } + .font306adb { color: #306adb; } @@ -96,4 +263,17 @@ float: right; margin-right: 20px; } - + + .headsearch { + border-radius: 8px; + background-color: #4c7fe6; + } + + .datetim { + width: 130px; + height: 30px; + line-height: 30px; + text-align: right; + border-radius: 15px; + } + \ No newline at end of file diff --git a/pages/index/equity-activities-details/equity-activities-details.vue b/pages/index/equity-activities-details/equity-activities-details.vue new file mode 100644 index 0000000..f3127aa --- /dev/null +++ b/pages/index/equity-activities-details/equity-activities-details.vue @@ -0,0 +1,234 @@ + + + + + \ No newline at end of file diff --git a/pages/index/equity-activities/equity-activities.vue b/pages/index/equity-activities/equity-activities.vue new file mode 100644 index 0000000..7886d67 --- /dev/null +++ b/pages/index/equity-activities/equity-activities.vue @@ -0,0 +1,130 @@ + + + + + \ No newline at end of file diff --git a/pages/index/equity-activity-review/equity-activity-review.vue b/pages/index/equity-activity-review/equity-activity-review.vue new file mode 100644 index 0000000..1e3047f --- /dev/null +++ b/pages/index/equity-activity-review/equity-activity-review.vue @@ -0,0 +1,90 @@ + + + + + \ No newline at end of file diff --git a/pages/index/merchant-details/merchant-details.vue b/pages/index/merchant-details/merchant-details.vue index 79374bc..0848af4 100644 --- a/pages/index/merchant-details/merchant-details.vue +++ b/pages/index/merchant-details/merchant-details.vue @@ -16,11 +16,12 @@ 商户ID {{merDesInfo.merNo}} + + + 商户名称 + {{merDesInfo.merName}} - - 手机号 - {{merDesInfo.regPhone}} - + 商户状态 正常 @@ -29,11 +30,15 @@ 联系人 {{merDesInfo.account.userName}} + + + 手机号 + {{merDesInfo.regPhone}} - + 银行卡号 {{merDesInfo.merSettleAcct.bankCardNo}} diff --git a/pages/index/merchant-incoming-parts/merchant-incoming-parts.vue b/pages/index/merchant-incoming-parts/merchant-incoming-parts.vue index 1fbcf1d..163de2d 100644 --- a/pages/index/merchant-incoming-parts/merchant-incoming-parts.vue +++ b/pages/index/merchant-incoming-parts/merchant-incoming-parts.vue @@ -350,8 +350,8 @@ - - + 非法人身份证照片 diff --git a/pages/index/merchant-management/merchant-management.vue b/pages/index/merchant-management/merchant-management.vue index 9aa0ac2..55a874e 100644 --- a/pages/index/merchant-management/merchant-management.vue +++ b/pages/index/merchant-management/merchant-management.vue @@ -14,8 +14,8 @@ @click="jumpmerdes(item.id)"> - - {{item.regPhone}} + + {{item.merName}} {{item.createTime | timeFormat('yyyy-mm-dd')}} {{item.createTime | timeFormat('hh:mm')}} @@ -35,6 +35,7 @@ + @@ -69,7 +70,7 @@ if (!this.isLoadMore) { //此处判断,上锁,防止重复请求 this.isLoadMore = true this.pageNum += 1 - this.getCmsContentNEWS() + this.getMerListBySalesman() } }, methods: { @@ -167,6 +168,12 @@ }) } }) + }, + //跳转权益活动 + jumpEquityActivity(item) { + uni.navigateTo({ + url: '/pages/index/equity-activities/equity-activities?id=' + item + }) } } } diff --git a/pages/index/order-list-details/order-list-details.vue b/pages/index/order-list-details/order-list-details.vue new file mode 100644 index 0000000..279178d --- /dev/null +++ b/pages/index/order-list-details/order-list-details.vue @@ -0,0 +1,70 @@ + + + + + \ No newline at end of file diff --git a/pages/index/review-Settlement/review-Settlement.vue b/pages/index/review-Settlement/review-Settlement.vue index 29b7700..9c438bb 100644 --- a/pages/index/review-Settlement/review-Settlement.vue +++ b/pages/index/review-Settlement/review-Settlement.vue @@ -21,12 +21,6 @@ 提交时间: {{item.createTime | timeFormat('yyyy-mm-dd hh:mm:ss')}} - - 提交人 @@ -135,19 +129,4 @@ padding: 20upx 0 20upx 20upx; } - //正常状态 - .statucs { - background-color: #e9f9e5; - color: #84b878; - text-align: center; - padding: 2px 5px; - } - - //其他状态 - .otstatucs { - background-color: #fbeee4; - color: #db8c73; - text-align: center; - padding: 2px 5px; - } \ No newline at end of file diff --git a/pages/tabBar/home/home.vue b/pages/tabBar/home/home.vue index b94c698..385637c 100644 --- a/pages/tabBar/home/home.vue +++ b/pages/tabBar/home/home.vue @@ -9,10 +9,10 @@ {{userInfo.mer.merAbbreviate}} - - - {{userInfo.agent.name}} - + + + {{userInfo.agent.name}} + {{userInfo.store.name}} @@ -147,16 +147,20 @@ } ] return; - } - //代理商 - if (this.userInfo.secUser.objectType == 2) { - this.funcList = [{ - title: '结算审核', - url: '../../index/review-Settlement/review-Settlement', - img: '../../../static/img/home1.png' - } - ] - return; + } + //代理商 + if (this.userInfo.secUser.objectType == 2) { + this.funcList = [{ + title: '结算审核', + url: '../../index/review-Settlement/review-Settlement', + img: '../../../static/img/home1.png' + }] + // , { + // title: '权益活动', + // url: '../../index/equity-activity-review/equity-activity-review', + // img: '../../../static/img/home5.png' + // } + return; } }, @@ -292,4 +296,4 @@ padding-top: 15px; } } - + \ No newline at end of file diff --git a/pages/welcome/welcome.vue b/pages/welcome/welcome.vue index 9c93c9d..8565a0a 100644 --- a/pages/welcome/welcome.vue +++ b/pages/welcome/welcome.vue @@ -17,28 +17,28 @@ }, onLoad(options) { let that = this; - // uni.reLaunch({ - // url: '../tabBar/home/home' - // }) + uni.reLaunch({ + url: '../tabBar/home/home' + }) // #ifdef H5 - let arr1 = window.location.href; - let arr2 = arr1.split('='); - if (arr2[2]) { - var arr3 = arr2[2].split('&'); - if (arr3[0] != undefined && arr3[0]) { - app.globalData.h5code = arr3[0]; - uni.setStorage({ - key: "h5code", - data: arr3[0] - }) - } - } else { + // let arr1 = window.location.href; + // let arr2 = arr1.split('='); + // if (arr2[2]) { + // var arr3 = arr2[2].split('&'); + // if (arr3[0] != undefined && arr3[0]) { + // app.globalData.h5code = arr3[0]; + // uni.setStorage({ + // key: "h5code", + // data: arr3[0] + // }) + // } + // } else { // 获取openid - that.jumpcdx(); - } - if (app.globalData.h5code) { - that.getAccessToken(); - } + // that.jumpcdx(); + // } + // if (app.globalData.h5code) { + // that.getAccessToken(); + // } // #endif }, methods: { diff --git a/static/img/alipay.png b/static/img/alipay.png new file mode 100644 index 0000000000000000000000000000000000000000..a678033d69fec6f579cec070f32ed925b96d112c GIT binary patch literal 2264 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 o`**aCf4|;;4CkeKH^ol>1G^VQUu惠支付
\ No newline at end of file + document.write('')
\ No newline at end of file