|
@@ -126,7 +126,7 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div class="foot right">
|
|
|
- <el-button size="small" @click="handleOk('ruleForms')" class="r24" type="primary">确定</el-button>
|
|
|
+ <el-button size="small" @click="handleOkSk('ruleForms')" class="r24" type="primary">确定</el-button>
|
|
|
<el-button @click="eledite" size="small">取消</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -507,6 +507,31 @@ export default {
|
|
|
hide () {
|
|
|
this.dialogFlag = false
|
|
|
},
|
|
|
+ async handleOkSk () {
|
|
|
+ const id = this.ruleForm.user_group_id || this.ruleForm.user_id
|
|
|
+ if (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('请根据密码规则设置密码')
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
async handleOk (data) {
|
|
|
this.$refs[data].validate(async (valid) => {
|
|
|
if (valid) {
|
|
@@ -520,26 +545,19 @@ export default {
|
|
|
} else {
|
|
|
const id = this.ruleForm.user_group_id || this.ruleForm.user_id
|
|
|
if (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('请根据密码规则设置密码')
|
|
|
- }
|
|
|
+ this.ruleForm.user_pwd = MD5(this.ruleForm.user_pwd)
|
|
|
+ this.ruleForm.up_user_group_id = this.ruleForm.user_group_id
|
|
|
+ const data = _.cloneDeep(this.ruleForm)
|
|
|
+ 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
|
|
|
}
|
|
|
}
|
|
|
}
|