| | |
| | | > |
| | | <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 |
| | |
| | | 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: { |
| | |
| | | moneyRevise: this.dataForm.moneyRevise, |
| | | coinType: this.usdtArr.value, // 币种 |
| | | resetType: this.resetFreeze.value, |
| | | loginSafeword: encrypt(this.dataForm.loginSafeword), |
| | | id: this.userId, |
| | | }; |
| | | this.$http({ |
| | |
| | | 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) { |
| | |
| | | moneyRevise: this.dataForm.moneyRevise, |
| | | coinType: this.usdtArr.value, // 币种 |
| | | resetType: "addLock", |
| | | loginSafeword: encrypt(this.dataForm.loginSafeword), |
| | | id: this.userId, |
| | | }; |
| | | } else if (this.isShow == 4) { |
| | |
| | | moneyRevise: this.dataForm.moneyRevise, |
| | | coinType: this.usdtArr.value, // 币种 |
| | | resetType: "subLock", |
| | | loginSafeword: encrypt(this.dataForm.loginSafeword), |
| | | id: this.userId, |
| | | }; |
| | | } |