From bd120ae862a4a54b011dcc344ee5d8969e8a1412 Mon Sep 17 00:00:00 2001 From: dute7liang <383200134@qq.com> Date: Sun, 31 Dec 2023 18:19:57 +0800 Subject: [PATCH] init --- src/constant/statusMap.js | 25 + src/views/cai/consumeLog/index.vue | 736 ++++------------------------- src/views/cai/guardLog/index.vue | 276 ++--------- src/views/cai/guardTotal/index.vue | 251 ++-------- src/views/cai/userGift/index.vue | 304 +++--------- 5 files changed, 253 insertions(+), 1339 deletions(-) diff --git a/src/constant/statusMap.js b/src/constant/statusMap.js index df3c216..0a95455 100644 --- a/src/constant/statusMap.js +++ b/src/constant/statusMap.js @@ -128,5 +128,30 @@ export const indexDisplayList = [ { value: 1, label: '展示',listClass: listClass.info}, ] +// 类型 1 个人详情页 2.IM页面 3 视频页 +export const userGiftTypeList = [ + { value: 1, label: '个人详情页'}, + { value: 2, label: 'IM页面'}, + { value: 3, label: '视频页'}, +] + +// 类型 1-充值 2-礼物 3-守护 4-通话 +export const consumeLogTypeList = [ + { value: 1, label: '充值'}, + { value: 2, label: '礼物'}, + { value: 3, label: '守护'}, + { value: 4, label: '通话'}, +] + +export const consumeLogStatusList = [ + { value: -1, label: '无须分销',listClass: listClass.info}, + { value: 0, label: '待分销',listClass: listClass.warning}, + { value: 1, label: '已分销',listClass: listClass.primary}, +] + +export const consumeLogCalculateStatusList = [ + { value: false, label: '待计算',listClass: listClass.warning}, + { value: true, label: '已计算',listClass: listClass.primary}, +] diff --git a/src/views/cai/consumeLog/index.vue b/src/views/cai/consumeLog/index.vue index 8e376c5..68ab2e6 100644 --- a/src/views/cai/consumeLog/index.vue +++ b/src/views/cai/consumeLog/index.vue @@ -1,230 +1,38 @@