From 36fc52b11976c5df7a6795a19d4f8b475cf56cb1 Mon Sep 17 00:00:00 2001 From: HuskyOo <1145804501@qq.com> Date: Thu, 19 May 2022 16:06:13 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E6=B7=BB=E5=8A=A0=E7=A7=AF?= =?UTF-8?q?=E5=88=86=E6=B8=85=E5=8D=95=20=E7=89=B9=E7=BA=A6=E5=95=86?= =?UTF-8?q?=E6=88=B7=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/fingertipIntegral.js | 8 +++ src/views/fingertipIntegral/options.js | 58 ++++++++++++++++++ src/views/fingertipIntegral/recordList.vue | 60 +----------------- .../fingertipIntegral/settlementList.vue | 61 ++++++++++++++++++- src/views/speciallyBusiness/list.vue | 8 +++ 5 files changed, 135 insertions(+), 60 deletions(-) create mode 100644 src/views/fingertipIntegral/options.js diff --git a/src/api/fingertipIntegral.js b/src/api/fingertipIntegral.js index 2f1ea5a..5468d15 100644 --- a/src/api/fingertipIntegral.js +++ b/src/api/fingertipIntegral.js @@ -79,3 +79,11 @@ export function activityDel(params) { params }) } + +export function settlementRecordList(params) { + return request({ + url: '/api/convenience/fingertipIntegral/settlementRecordList', + method: 'get', + params + }) +} diff --git a/src/views/fingertipIntegral/options.js b/src/views/fingertipIntegral/options.js new file mode 100644 index 0000000..87748fe --- /dev/null +++ b/src/views/fingertipIntegral/options.js @@ -0,0 +1,58 @@ +export const sourceOptions = [ + { + value: 'REAL_NAME_AUTHENTICATION', + label: '实名认证' + }, + { + value: 'HANDLING', + label: '处理办件' + }, + { + value: 'APPLY', + label: '申请办件' + }, + { + value: 'TIMEOUT', + label: '超期办件扣分' + }, + { + value: 'VERY_SATISFIED', + label: '非常满意得分' + }, + { + value: 'NEGATIVE_COMMENT', + label: '差评扣分' + }, + { + value: 'READ', + label: '阅读' + }, + { + value: 'SEND_A_CIRCLE_OF_FRIENDS', + label: '发朋友圈' + }, + { + value: 'CONSUMPTION', + label: '消费' + }, + { + value: 'MERCHANT_SETTLEMENT', + label: '商户结算' + }, + { + value: 'POINT_REFUND', + label: '积分回退' + }, + { + value: 'REGULATORY_PUNISHMENT_AND_REWARD', + label: '监管惩罚' + }, + { + value: 'SPECIAL_WORK_TYPE', + label: '特殊工单类型奖励积分(医保卫生)' + }, + { + value: 'TITLE_EVALUATION', + label: '称号评比' + } +] diff --git a/src/views/fingertipIntegral/recordList.vue b/src/views/fingertipIntegral/recordList.vue index cda87e9..bc55bb7 100644 --- a/src/views/fingertipIntegral/recordList.vue +++ b/src/views/fingertipIntegral/recordList.vue @@ -51,6 +51,7 @@