| | |
| | | <el-form-item v-if="isShow == 9" label="用户重置资金密码" prop="newSafeword" label-width="160px"> |
| | | <el-input type="password" v-model="dataForm.newSafeword" placeholder="请输入用户重置资金密码"></el-input> |
| | | </el-form-item> |
| | | <el-form-item |
| | | v-if="isShow == 1 || isShow == 8 || isShow == 7 || isShow == 9 || isShow ==10" |
| | | label="登录人资金密码" |
| | | prop="safePassword" |
| | | label-width="160px" |
| | | > |
| | | <el-input |
| | | type="password" |
| | | v-model="dataForm.safePassword" |
| | | placeholder="请输入登录人资金密码" |
| | | ></el-input> |
| | | </el-form-item> |
| | | <el-form-item v-if="isShow == 8 || isShow == 7|| isShow == 9 || isShow ==10" label="登录人谷歌验证器" prop="googleAuthCode" label-width="160px"> |
| | | <el-input type="number" v-model="dataForm.googleAuthCode" placeholder="请输入登录人谷歌验证码"></el-input> |
| | | </el-form-item> |
| | |
| | | { required: true, message: "账变金额不能为空", trigger: "blur" }, |
| | | { validator: vaBignumber, trigger: "blur" }, |
| | | ], |
| | | safePassword: [ |
| | | { |
| | | required: true, |
| | | message: "登录人资金密码不能为空", |
| | | trigger: "blur", |
| | | }, |
| | | ], |
| | | googleAuthCode: [ |
| | | { |
| | | required: true, |
| | |
| | | moneyRevise: this.dataForm.moneyRevise, |
| | | coinType: this.optionsTwo.value, |
| | | accountType: this.options.value, |
| | | safePassword: encrypt(this.dataForm.safePassword), |
| | | userId: this.userId, |
| | | }), |
| | | }) |
| | |
| | | method: "post", |
| | | data: this.$http.adornData({ |
| | | googleAuthCode: this.dataForm.googleAuthCode, |
| | | loginSafeword: encrypt(this.dataForm.safePassword), |
| | | userId: this.userId, |
| | | }), |
| | | }) |
| | |
| | | method: "post", |
| | | data: this.$http.adornData({ |
| | | googleAuthCode: this.dataForm.googleAuthCode, |
| | | loginSafeword: encrypt(this.dataForm.safePassword), |
| | | password: encrypt(this.dataForm.password), |
| | | userId: this.userId, |
| | | }), |
| | |
| | | method: "post", |
| | | data: this.$http.adornData({ |
| | | googleAuthCode: this.dataForm.googleAuthCode, |
| | | loginSafeword: encrypt(this.dataForm.safePassword), |
| | | newSafeword: encrypt(this.dataForm.newSafeword), |
| | | userId: this.userId, |
| | | }), |
| | |
| | | url: this.$http.adornUrl("/user/resetUserLoginState"), |
| | | method: "post", |
| | | data: this.$http.adornData({ |
| | | loginSafeword: encrypt(this.dataForm.safePassword), |
| | | googleAuthCode: this.dataForm.googleAuthCode, |
| | | userId: this.userId, |
| | | }), |