diff --git a/src/components/PlayerEdit.vue b/src/components/PlayerEdit.vue
index c3f2f70..3994000 100644
--- a/src/components/PlayerEdit.vue
+++ b/src/components/PlayerEdit.vue
@@ -107,8 +107,7 @@
-
-
+
@@ -158,6 +157,8 @@ export default {
input1: '',
puid: '1215485',
+ listPayTypes: ["模拟支付", "支付补单"],
+
formAddMoney: {
tp: '',
count: 0,
@@ -206,13 +207,13 @@ export default {
onAddMoney(event) {
this.onGmPost({
Action: '玩家数据修改',
- Args: ["货币添加", this.formAddMoney.tp, this.formAddMoney.count]
+ Args: ["货币添加", this.formAddMoney.tp, this.formAddMoney.count.toString()]
})
},
onAddTool(event) {
this.onGmPost({
Action: '玩家数据修改',
- Args: ["工具添加", this.formAddTool.id, this.formAddTool.count]
+ Args: ["工具添加", this.formAddTool.id, this.formAddTool.count.toString()]
})
},
onSetProp(event) {
@@ -224,14 +225,14 @@ export default {
onAddOther(event) {
this.onGmPost({
Action: '玩家数据修改',
- Args: ["其他添加", this.formAddOther.tp, this.formAddOther.count]
+ Args: ["其他添加", this.formAddOther.tp, this.formAddOther.count.toString()]
})
},
onSimPay(event) {
- console.log(event);
+ let v= event.srcElement.value
this.onGmPost({
Action: '玩家数据修改',
- Args: ["模拟支付", this.formSimPay.id.toString()]
+ Args: [v, this.formSimPay.id.toString()]
})
},
}
--
libgit2 0.21.0