[update] 联调企标立项、变更计划

This commit is contained in:
lideqin
2023-10-13 18:08:38 +08:00
parent 667656fc5d
commit bf517b5d37
23 changed files with 747 additions and 563 deletions
@@ -12,7 +12,7 @@
<a-row :gutter="24">
<a-col :span="6">
<a-form-item :label="$t('system.contact.departName')" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input :placeholder="$t('pleaseEnter')+$t('system.contact.departName')" v-model="queryParam.departName"></a-input>
<j-input :placeholder="$t('pleaseEnter')+$t('system.contact.departName')" v-model="queryParam.departName"></j-input>
</a-form-item>
</a-col>
<span style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
@@ -25,7 +25,7 @@
<div class="modal-content">
<a-table
:columns="columns"
rowKey="id"
rowKey="contactId"
bordered
:scroll="{x: '100%'}"
:data-source="dataSource"
@@ -96,28 +96,28 @@ export default {
title: this.$t('system.contact.departName'),
align: 'center',
width: 180,
dataIndex: 'departName',
dataIndex: 'departId_dictText',
scopedSlots: { customRender: 'text' }
},
{ // 标准化工程师
title: this.$t('system.contact.standardizationEngineer'),
align: 'center',
width: 180,
dataIndex: 'standardizationEngineer',
dataIndex: 'engineerId_dictText',
scopedSlots: { customRender: 'text' }
},
{ // 联络人
title: this.$t('system.contact.contactPerson'),
align: 'center',
width: 180,
dataIndex: 'contactPerson',
dataIndex: 'contactId_dictText',
scopedSlots: { customRender: 'text' }
},
{ // 部门联络人主管级领导
title: this.$t('system.contact.contactPersonSupervisorLevelLeader'),
align: 'center',
width: 240,
dataIndex: 'contactPersonSupervisorLevelLeader',
dataIndex: 'leaderId_dictText',
scopedSlots: { customRender: 'text' }
}
],
@@ -137,7 +137,7 @@ export default {
loadingLeft: false,
dataSourceRight: [],
url: {
userList: '',
userList: '/laws/system/lawsContactManage/page',
userListByIds: '/sys/user/queryByIds'
}
}
@@ -244,6 +244,7 @@ export default {
},
handleOk () {
this.$emit('change', this.selectedRowKeys.join(','))
this.$emit('listChange', this.dataSourceRight)
this.$emit('nameChange', this.dataSourceRight.map(item => item.realname + '(' + item.username + ')').join(','))
this.close()
},