diff --git a/src/components/PlayerEdit.vue b/src/components/PlayerEdit.vue
index 06d9f73..401d436 100644
--- a/src/components/PlayerEdit.vue
+++ b/src/components/PlayerEdit.vue
@@ -95,11 +95,20 @@
-
+
@@ -156,6 +165,30 @@ export default {
listAddOther: ["猜谜活动代币", "星星商店代币", "破茧成蝶代币", "装修代币", "挖宝箱积分"],
listPayTypes: ["模拟支付", "支付补单"],
+ listActUid: [
+ { text: '新手礼包', v: '20001' },
+ { text: '每日礼包', v: '20002' },
+ { text: '体力礼包', v: '20005' },
+ { text: '工具礼包', v: '20003' },
+ { text: '卡牌礼包', v: '20006' },
+ { text: '无尽礼包六格', v: '20004' },
+ { text: '无尽礼包三格', v: '20007' },
+ { text: 'Solo积分活动', v: '10002' },
+ { text: '挖沙子活动', v: '10005' },
+ { text: '卡牌活动', v: '10008' },
+ { text: '50人排行榜活动', v: '30002' },
+ { text: '水晶球活动', v: '10006' },
+ { text: '限时订单', v: '40000' },
+ { text: '阶段任务订单', v: '40001' },
+ { text: '大逃杀订单', v: '40002' },
+ { text: '猜谜', v: '10011' },
+ { text: '副本', v: '50001' },
+ { text: '副本礼包', v: '50101' },
+ { text: '破茧成蝶', v: '10021' },
+ { text: '装修', v: '10031' },
+ { text: '挖宝箱', v: '10041' },
+ ],
+
formAddMoney: {
tp: '',
count: 0,
@@ -175,6 +208,9 @@ export default {
formSimPay: {
id: 201,
},
+ formClearActFlag: {
+ id: 20001,
+ },
}
},
@@ -226,12 +262,18 @@ export default {
})
},
onSimPay(event) {
- let v= event.srcElement.value
+ let v = event.srcElement.value
this.onGmPost({
Action: '玩家数据修改',
Args: [v, this.formSimPay.id.toString()]
})
},
+ onClearActFlag(event) {
+ this.onGmPost({
+ Action: '玩家数据修改',
+ Args: ["删除活动标记", this.formClearActFlag.id.toString()]
+ })
+ },
}
}
--
libgit2 0.21.0