From d20ae15560cda7022a19d8869b1f9029b0280ba8 Mon Sep 17 00:00:00 2001
From: dute7liang <383200134@qq.com>
Date: Sun, 7 Jan 2024 16:48:56 +0800
Subject: [PATCH] init
---
src/views/cai/accountChangeLog/index.vue | 24 ++++++++++++++++++-----
src/views/cai/guardLog/guard-log-info.vue | 2 +-
src/views/cai/userGift/index.vue | 2 +-
3 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/src/views/cai/accountChangeLog/index.vue b/src/views/cai/accountChangeLog/index.vue
index 9629fab..0c07c46 100644
--- a/src/views/cai/accountChangeLog/index.vue
+++ b/src/views/cai/accountChangeLog/index.vue
@@ -89,6 +89,8 @@
@pagination="getList"
/>
+
+
@@ -96,16 +98,20 @@
import {listAccountChangeLog, listChangeType} from "@/api/cai/accountChangeLog";
import {accountTypeList, yesOrNoList} from "@/constant/statusMap";
import RechargeOrderInfo from "@/views/cai/rechargeOrder/recharge-order-info";
+import UserGiftInfo from "@/views/cai/userGift/user-gift-info";
+import GuardLogInfo from "@/views/cai/guardLog/guard-log-info";
export default {
name: "AccountChangeLog",
components: {
- RechargeOrderInfo
+ RechargeOrderInfo,UserGiftInfo,GuardLogInfo
},
data() {
return {
accountTypeList,yesOrNoList,
rechargeOrderInfoVisible: false,
+ userGiftInfoVisible: false,
+ guardLogInfoVisible: false,
// 遮罩层
loading: true,
// 选中数组
@@ -174,16 +180,24 @@ export default {
})
break;
case "GIFT":
- this.handleResetPwd(row);
+ this.userGiftInfoVisible = true
+ this.$nextTick(() => {
+ this.$refs.userGiftInfo.traceIdInit(row.traceId)
+ })
break;
case "GUARD":
- this.handleResetMobile(row);
+ this.guardLogInfoVisible = true
+ this.$nextTick(() => {
+ this.$refs.guardLogInfo.traceIdInit(row.traceId)
+ })
break;
case "VIDEO":
- this.handleResetMobile(row);
break;
case "WITHDRAW":
- this.handleResetMobile(row);
+ /*this.rechargeOrderInfoVisible = true
+ this.$nextTick(() => {
+ this.$refs.rechargeOrderInfo.traceIdInit(row.traceId)
+ })*/
break;
default:
break;
diff --git a/src/views/cai/guardLog/guard-log-info.vue b/src/views/cai/guardLog/guard-log-info.vue
index 667b729..c07a9a5 100644
--- a/src/views/cai/guardLog/guard-log-info.vue
+++ b/src/views/cai/guardLog/guard-log-info.vue
@@ -34,7 +34,7 @@