|
@@ -13,14 +13,14 @@
|
|
|
<el-col :span="6">
|
|
|
<div class="body-card">
|
|
|
<CheckCardList
|
|
|
- ref="officerList"
|
|
|
- title="职员列表"
|
|
|
- label="OfficerName"
|
|
|
- check-id="OfficerId"
|
|
|
- search-placeholder="请输入职员名称"
|
|
|
- :data-list="officerList"
|
|
|
- @load="loadOfficerList"
|
|
|
- @check-change="officerCheckChangeHandler"
|
|
|
+ ref="userList"
|
|
|
+ title="用户列表"
|
|
|
+ label="UserName"
|
|
|
+ check-id="UserId"
|
|
|
+ search-placeholder="请输入用户名称"
|
|
|
+ :data-list="userList"
|
|
|
+ @load="loadUserList"
|
|
|
+ @check-change="userCheckChangeHandler"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -30,14 +30,14 @@
|
|
|
ref="sectionTree"
|
|
|
:default-props="{
|
|
|
children: 'children',
|
|
|
- label: 'SectionName'
|
|
|
+ label: 'SessionName'
|
|
|
}"
|
|
|
:data="sectionTree"
|
|
|
:checked-keys-duo="sectionCheckedKeys"
|
|
|
:org-list="sectionList"
|
|
|
:default-multiple="true"
|
|
|
- node-key="SectionId"
|
|
|
- up-node-key="SectionUpid"
|
|
|
+ node-key="SessionId"
|
|
|
+ up-node-key="UpSessionId"
|
|
|
title="选择标段"
|
|
|
@getTreeDataDuo="sectionCheckChangeHandler"
|
|
|
/>
|
|
@@ -48,8 +48,8 @@
|
|
|
<CheckCardList
|
|
|
ref="regulatorList"
|
|
|
title="监管单位"
|
|
|
- label="name"
|
|
|
- check-id="id"
|
|
|
+ label="OrganName"
|
|
|
+ check-id="OrganId"
|
|
|
search-placeholder="请输入单位名称"
|
|
|
:data-list="regulatorList"
|
|
|
@load="loadRegulatorList"
|
|
@@ -83,22 +83,58 @@
|
|
|
<script>
|
|
|
import CheckCardList from '@/components/CheckCardList'
|
|
|
import MultipleTree from '@/components/organization'
|
|
|
-import officerList from '../mixins/officerList'
|
|
|
+import userList from '../mixins/userList'
|
|
|
import sectionTree from '../mixins/sectionTree'
|
|
|
import regulatorList from '../mixins/regulatorList'
|
|
|
import orgTree from '../mixins/orgTree'
|
|
|
+import { SaveSection } from '@/api/section'
|
|
|
|
|
|
export default {
|
|
|
components: { CheckCardList, MultipleTree },
|
|
|
- mixins: [officerList, sectionTree, regulatorList, orgTree],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- regulatorList: []
|
|
|
- }
|
|
|
- },
|
|
|
+ mixins: [userList, sectionTree, regulatorList, orgTree],
|
|
|
methods: {
|
|
|
btnSaveHandler() {
|
|
|
- this.$message.warning('开发中')
|
|
|
+ if (this.checkedUsers.length === 0) {
|
|
|
+ this.$message.error('请选择用户')
|
|
|
+ return
|
|
|
+ } else if (this.checkedSections.length === 0) {
|
|
|
+ this.$message.error('请选择标段')
|
|
|
+ return
|
|
|
+ } else if (this.checkedRegulators.length === 0) {
|
|
|
+ this.$message.error('请选择监管单位')
|
|
|
+ return
|
|
|
+ } else if (this.checkedOrgs.length === 0) {
|
|
|
+ this.$message.error('请选择组织')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ const mixedDatas = []
|
|
|
+ this.checkedUsers.forEach(user => {
|
|
|
+ this.checkedSections.forEach(section => {
|
|
|
+ this.checkedRegulators.forEach(regulator => {
|
|
|
+ this.checkedOrgs.forEach(org => {
|
|
|
+ mixedDatas.push({
|
|
|
+ officerId: user.UserId,
|
|
|
+ OrganId: org.OrganId,
|
|
|
+ OthOrganId: regulator.OrganId,
|
|
|
+ ...section
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ this.saveSection(mixedDatas)
|
|
|
+ },
|
|
|
+ async saveSection(params) {
|
|
|
+ try {
|
|
|
+ const res = await SaveSection(params)
|
|
|
+ if (res.code === 0) {
|
|
|
+ this.$message.success(res.message ?? '成功')
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message ?? '失败')
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.log('错误', error)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|