新版交易所前段管理后台
1
5 days ago b4dd0687c7285f3be32860adccfa523a62bfd4c6
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,
            };
          }