|
|
|
@ -87,6 +87,14 @@ |
|
|
|
<el-input v-model="dataForm.domainControlAccount" style="width: 150px;" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-form> |
|
|
|
<el-form-item :label="'ifs账号'" > |
|
|
|
<el-input v-model="dataForm.ifsUsername" style="width: 150px;" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="'ifs密码'" > |
|
|
|
<el-input v-model="dataForm.ifsPassword" type="password" style="width: 150px;" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-form> |
|
|
|
<el-form-item label="角色" size="mini" prop="roleIdList"> |
|
|
|
<el-checkbox-group v-model="dataForm.roleIdList"> |
|
|
|
@ -137,6 +145,8 @@ export default { |
|
|
|
postList:[], |
|
|
|
dataForm: { |
|
|
|
id: 0, |
|
|
|
ifsUsername:'', |
|
|
|
ifsPassword:'', |
|
|
|
userName: '', |
|
|
|
password: '', |
|
|
|
comfirmPassword: '', |
|
|
|
@ -316,6 +326,8 @@ export default { |
|
|
|
this.dataForm.post = data.user.post |
|
|
|
this.dataForm.postNo = data.user.postNo |
|
|
|
this.dataForm.domainControlAccount = data.user.domainControlAccount |
|
|
|
this.dataForm.ifsUsername = data.user.ifsUsername |
|
|
|
this.dataForm.ifsPassword = data.user.ifsPassword |
|
|
|
this.getBDPList() |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -343,7 +355,9 @@ export default { |
|
|
|
siteID: '', |
|
|
|
siteName: '', |
|
|
|
userDisplay: '', |
|
|
|
domainControlAccount: '' |
|
|
|
domainControlAccount: '', |
|
|
|
ifsUsername:'', |
|
|
|
ifsPassword:'', |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
@ -370,7 +384,9 @@ export default { |
|
|
|
'buNo': this.dataForm.buNo, |
|
|
|
'departmentNo': this.dataForm.departmentNo, |
|
|
|
'postNo': this.dataForm.postNo, |
|
|
|
'domainControlAccount': this.dataForm.domainControlAccount |
|
|
|
'domainControlAccount': this.dataForm.domainControlAccount, |
|
|
|
'ifsUsername': this.dataForm.ifsUsername, |
|
|
|
'ifsPassword': this.dataForm.ifsPassword, |
|
|
|
}) |
|
|
|
}).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
|