|
@@ -11,7 +11,7 @@
|
|
|
<el-form-item label="部门名称" prop="deptId">
|
|
|
<el-select filterable v-model="queryParams.deptId" placeholder="请选择">
|
|
|
<el-option
|
|
|
- v-for="item in detpList"
|
|
|
+ v-for="item in deptList"
|
|
|
:key="item.value"
|
|
|
:label="item.deptName"
|
|
|
:value="item.deptId"
|
|
@@ -231,7 +231,7 @@
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="部门" prop="deptName">
|
|
|
<!-- 树状结构组件引用 -->
|
|
|
- <select-tree :param="detpList" :placeholder="'请选择部门'" :modelValue="form.deptName" @setNodeValue="handleNodeClick" />
|
|
|
+ <select-tree ref="selectTree" :placeholder="'请选择部门'" :modelValue="form.deptName" @setNodeValue="handleNodeClick" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -341,7 +341,7 @@
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="企业结构 " prop="enterpriseStructureValue">
|
|
|
- <el-select v-model="form.enterpriseStructureValue" placeholder="请选择" style="width: 100%">
|
|
|
+ <el-select v-model="form.enterpriseStructureValue" multiple placeholder="请选择" style="width: 100%">
|
|
|
<el-option
|
|
|
v-for="dict in dict.type.enterprise_structure"
|
|
|
:key="dict.value"
|
|
@@ -353,7 +353,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="业务构成 " prop="businessEventsValue">
|
|
|
- <el-select v-model="form.businessEventsValue" placeholder="请选择" style="width: 100%">
|
|
|
+ <el-select v-model="form.businessEventsValue" multiple placeholder="请选择" style="width: 100%">
|
|
|
<el-option
|
|
|
v-for="dict in dict.type.business_events"
|
|
|
:key="dict.value"
|
|
@@ -518,8 +518,6 @@
|
|
|
</el-form>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
-
|
|
|
-
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
@@ -549,7 +547,7 @@ export default {
|
|
|
// 新增标签索引
|
|
|
tabMsg: "basicMsg",
|
|
|
// 部门列表
|
|
|
- detpList: [],
|
|
|
+ deptList: [],
|
|
|
// 根路径
|
|
|
baseURL: process.env.VUE_APP_BASE_API,
|
|
|
// 遮罩层
|
|
@@ -752,9 +750,9 @@ export default {
|
|
|
created() {
|
|
|
this.getList();
|
|
|
getEnterprise().then((res) => {
|
|
|
- this.detpList = res.data
|
|
|
-
|
|
|
+ this.deptList = res.data
|
|
|
});
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
changeIsShowStatus(val) {
|
|
@@ -838,18 +836,27 @@ export default {
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
+ let that = this
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
this.title = "添加园区内企业基础数据";
|
|
|
+ this.$nextTick(() => {
|
|
|
+ that.$refs.selectTree.init(that.deptList)
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
+ let that = this
|
|
|
const id = row.id || this.ids;
|
|
|
getGARDENBASEDATA(id).then((response) => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = "修改园区内企业基础数据";
|
|
|
+ this.$nextTick(() => {
|
|
|
+ that.$refs.selectTree.init(that.deptList)
|
|
|
+ })
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
@@ -870,15 +877,23 @@ export default {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
|
if (valid) {
|
|
|
+
|
|
|
+ /*
|
|
|
+ 以下处理建立在 字典值的 value 和 sort 值排序顺序一致
|
|
|
+ */
|
|
|
// 获取选中的企业结构 获取 label数据和 sort排序数据
|
|
|
- let currentEnterpriseStructure = this.dict.type.enterprise_structure?.find(({value}) => value == this.form.enterpriseStructureValue)
|
|
|
- this.form.enterpriseStructure = currentEnterpriseStructure?.label
|
|
|
- this.form.enterpriseStructureSort = currentEnterpriseStructure?.raw?.dictSort
|
|
|
+ let currentEnterpriseStructure = this.dict.type.enterprise_structure?.filter(({ value }) => this.form.enterpriseStructureValue.sort((a, b) => a - b).includes(value))
|
|
|
+ this.form.enterpriseStructure = currentEnterpriseStructure?.map(({ label }) => label).join()
|
|
|
+ this.form.enterpriseStructureSort = currentEnterpriseStructure?.map(({ raw }) => raw?.dictSort).join()
|
|
|
|
|
|
// 获取选中的业务结构
|
|
|
- let currentBusinessEvents = this.dict.type.business_events?.find(({value}) => value == this.form.businessEventsValue)
|
|
|
- this.form.businessEvents = currentBusinessEvents?.label
|
|
|
- this.form.businessEventsSort = currentBusinessEvents?.raw?.dictSort
|
|
|
+ let currentBusinessEvents = this.dict.type.business_events?.filter(({ value }) => this.form.businessEventsValue.sort((a, b) => a - b).includes(value))
|
|
|
+ this.form.businessEvents = currentBusinessEvents?.map(({ label }) => label).join()
|
|
|
+ this.form.businessEventsSort = currentBusinessEvents?.map(({ raw }) => raw?.dictSort).join()
|
|
|
+
|
|
|
+ // 将选中的label数据数组转换为字符串
|
|
|
+ this.form.enterpriseStructureValue = this.form.enterpriseStructureValue.sort((a, b) => a - b).join()
|
|
|
+ this.form.businessEventsValue = this.form.businessEventsValue.sort((a, b) => a - b).join()
|
|
|
|
|
|
if (this.form.id != null) {
|
|
|
updateGARDENBASEDATA(this.form).then((response) => {
|