|
@@ -520,22 +520,28 @@ export default {
|
|
|
} else {
|
|
|
const id = this.ruleForm.user_group_id || this.ruleForm.user_id
|
|
|
if (id) {
|
|
|
- this.ruleForm.user_pwd = MD5(this.ruleForm.user_pwd)
|
|
|
- const data = _.cloneDeep(this.ruleForm)
|
|
|
- if (data.user_group_id) {
|
|
|
- delete data.user_group_id
|
|
|
+ const r = PLATFROM_CONFIG.editRule
|
|
|
+ const b = r.test(this.ruleForm.user_pwd)
|
|
|
+ if (b) {
|
|
|
+ this.ruleForm.user_pwd = MD5(this.ruleForm.user_pwd)
|
|
|
+ const data = _.cloneDeep(this.ruleForm)
|
|
|
+ if (data.user_group_id) {
|
|
|
+ delete data.user_group_id
|
|
|
+ }
|
|
|
+ const { code } = await this.getChangeList(SERVICE_ID.getUserTableId, data, 2, 'user_id')
|
|
|
+ this.tipMsg(code)
|
|
|
+ const result = await this.getQueryList(SERVICE_ID.getUserTableId, {
|
|
|
+ up_user_group_id: this.treeCheckObj.user_group_id
|
|
|
+ })
|
|
|
+ this.tableData = result.returnData
|
|
|
+ this.clearTableForm()
|
|
|
+ this.tableFlag = false
|
|
|
+ this.paswordFlag = false
|
|
|
+ } else {
|
|
|
+ this.$message.error('请根据密码规则设置密码')
|
|
|
}
|
|
|
- const { code } = await this.getChangeList(SERVICE_ID.getUserTableId, data, 2, 'user_id')
|
|
|
- this.tipMsg(code)
|
|
|
}
|
|
|
}
|
|
|
- const result = await this.getQueryList(SERVICE_ID.getUserTableId, {
|
|
|
- up_user_group_id: this.treeCheckObj.user_group_id
|
|
|
- })
|
|
|
- this.tableData = result.returnData
|
|
|
- this.clearTableForm()
|
|
|
- this.tableFlag = false
|
|
|
- this.paswordFlag = false
|
|
|
}
|
|
|
else {
|
|
|
return false
|