|
|
@ -38,7 +38,7 @@ |
|
|
prop="deptId"> |
|
|
prop="deptId"> |
|
|
<el-cascader v-model="dataForm.deptId" style="width: 100%" |
|
|
<el-cascader v-model="dataForm.deptId" style="width: 100%" |
|
|
:options="options" |
|
|
:options="options" |
|
|
:disabled="dataForm.id" |
|
|
:disabled="dataForm.id != null" |
|
|
:props="{ checkStrictly: true }" |
|
|
:props="{ checkStrictly: true }" |
|
|
ref="grid" |
|
|
ref="grid" |
|
|
@change="deptHandleChange" |
|
|
@change="deptHandleChange" |
|
|
@ -188,7 +188,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
// 获取信息 |
|
|
// 获取信息 |
|
|
getInfo () { |
|
|
getInfo () { |
|
|
this.$http.get(`//group/${this.dataForm.id}`).then(({ data: res }) => { |
|
|
this.$http.get(`/property/group/${this.dataForm.id}`).then(({ data: res }) => { |
|
|
if (res.code !== 0) { |
|
|
if (res.code !== 0) { |
|
|
return this.$message.error(res.msg) |
|
|
return this.$message.error(res.msg) |
|
|
} |
|
|
} |
|
|
|