From b4dd0687c7285f3be32860adccfa523a62bfd4c6 Mon Sep 17 00:00:00 2001
From: 李 <344137771@qq.com>
Date: Fri, 05 Jun 2026 11:19:37 +0800
Subject: [PATCH] 1
---
src/views/modules/user/mangr-other-update.vue | 25 ++++---------------------
1 files changed, 4 insertions(+), 21 deletions(-)
diff --git a/src/views/modules/user/mangr-other-update.vue b/src/views/modules/user/mangr-other-update.vue
index 239c61e..76a8044 100644
--- a/src/views/modules/user/mangr-other-update.vue
+++ b/src/views/modules/user/mangr-other-update.vue
@@ -83,15 +83,7 @@
>
<el-input type="number" v-model="dataForm.moneyRevise"></el-input>
</el-form-item>
- <div class="spranDiv">登录人资金密码</div>
- <el-form-item label="资金密码" prop="loginSafeword" label-width="100px">
- <el-input
- type="password"
- v-model="dataForm.loginSafeword"
- placeholder="请输入登录人资金密码"
- ></el-input>
- </el-form-item>
- </el-form>
+</el-form>
<span slot="footer" class="dialog-footer">
<el-button v-if="isShow == 6" type="primary" @click="cleMath()"
>一键清0</el-button
@@ -167,20 +159,15 @@
password: [
{ required: true, message: "密码不能为空", trigger: "blur" },
],
- loginSafeword: [
- { required: true, message: "资金密码不能为空", trigger: "blur" },
- ],
- moneyRevise: [
+moneyRevise: [
{ required: true, message: "金额不能为空", trigger: "blur" },
{ validator: vaBignumber, trigger: "blur" },
],
// safePassword: [
// {required: true,message: "登录人资金密码不能为空",trigger: "blur",},
// ],
- // loginSafeword: [
- // { required: true, message: "登录人资金密码不能为空", trigger: "blur" },
- // ]
- },
+ //
+},
};
},
computed: {
@@ -292,7 +279,6 @@
moneyRevise: this.dataForm.moneyRevise,
coinType: this.usdtArr.value, // 币种
resetType: this.resetFreeze.value,
- loginSafeword: encrypt(this.dataForm.loginSafeword),
id: this.userId,
};
this.$http({
@@ -331,7 +317,6 @@
moneyRevise: this.dataForm.moneyRevise,
coinType: this.usdtArr.value, // 币种
resetType: this.resetLock.value,
- loginSafeword: encrypt(this.dataForm.loginSafeword),
id: this.userId,
};
}else if (this.isShow == 3) {
@@ -340,7 +325,6 @@
moneyRevise: this.dataForm.moneyRevise,
coinType: this.usdtArr.value, // 币种
resetType: "addLock",
- loginSafeword: encrypt(this.dataForm.loginSafeword),
id: this.userId,
};
} else if (this.isShow == 4) {
@@ -349,7 +333,6 @@
moneyRevise: this.dataForm.moneyRevise,
coinType: this.usdtArr.value, // 币种
resetType: "subLock",
- loginSafeword: encrypt(this.dataForm.loginSafeword),
id: this.userId,
};
}
--
Gitblit v1.9.3