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 |   35 +++++++++++------------------------
 1 files changed, 11 insertions(+), 24 deletions(-)

diff --git a/src/views/modules/user/mangr-other-update.vue b/src/views/modules/user/mangr-other-update.vue
index 94f3f91..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,13 +279,16 @@
               moneyRevise: this.dataForm.moneyRevise,
               coinType: this.usdtArr.value, // 币种
               resetType: this.resetFreeze.value,
-              loginSafeword: encrypt(this.dataForm.loginSafeword),
               id: this.userId,
             };
             this.$http({
-            url: this.$http.adornUrl("/exchangeApplyOrder/resetFreeze"),
-            method: "get",
-            params: this.$http.adornParams(data),
+            url: this.$http.adornUrl("/exchangeApplyOrder/resetFreezess"),
+            method: "post",
+            data: this.$http.adornData(
+          Object.assign(
+            data
+          )
+        ),
           }).then(({ data }) => {
             console.log(data);
             if (data.code == 1) {
@@ -327,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) {
@@ -336,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) {
@@ -345,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