This commit is contained in:
2025-12-31 08:58:05 +08:00
4 changed files with 24 additions and 11 deletions
@@ -143,7 +143,7 @@ layout("/layouts/platform.html"){
</el-col>
</el-row>
<template v-if="formData.isManyUnit">
<template v-if="formData.isManyUnit && formData.specialStaffType != 'HMC_RELATION'">
<el-row :gutter="10">
<el-col :span=12>
<el-form-item label="所属单位(工会关系)" prop="unionRelationUnitId">
@@ -178,7 +178,7 @@ layout("/layouts/platform.html"){
:disabled="isView" @change="unionRelationUnionChange"
clearable placeholder="请选择工会关系所属工会" style="width: 100%">
<el-option v-for="item in unionRelationUnionOptions" :key="item.id"
:label="item.unionname" :value="item.id"></el-option>
:label="item.name" :value="item.id"></el-option>
</el-select>
</el-form-item>
</el-col>
@@ -250,7 +250,7 @@ layout("/layouts/platform.html"){
methods: {
unionRelationUnionChange(val){
const unionInfo = this.unionRelationUnionOptions.find(v=> v.id === val)
this.formData.unionRelationUnionName = unionInfo.unionname
this.formData.unionRelationUnionName = unionInfo.name
},
dropdownCommand(command) {
const { type, data } = command
@@ -280,7 +280,6 @@ layout("/layouts/platform.html"){
this.isView = false
this.formData = {}
this.getUserInfo(userId)
// this.$refs.guava.edit()
this.specialStaffDialog = true
this.specialStaffTitle = "修改人员"
},
@@ -288,14 +287,12 @@ layout("/layouts/platform.html"){
this.isView = true
this.formData = {}
this.getUserInfo(userId)
// this.$refs.guava.edit()
this.specialStaffDialog = true
this.specialStaffTitle = "查看人员信息"
},
personnelAdd() {
this.isView = false
this.formData = {}
// this.$refs.guava.edit()
this.specialStaffDialog = true
this.specialStaffTitle = "新增人员"
},
@@ -310,9 +307,6 @@ layout("/layouts/platform.html"){
this.$axios.post(url, { userId: param }).then((resp) => {
if (resp.code === 0) {
this.formData = resp.data
if (resp.data && resp.data.unionRelationThreeUnitId) {
this.getThreeUnits(resp.data.unionRelationUnitId)
}
this.queryUser(this.formData.loginname, false)
}
})
@@ -356,7 +350,6 @@ layout("/layouts/platform.html"){
this.formData = {}
this.specialStaffDialog = false
this.pageData()
// this.$refs.guava.index()
}
})
}