|
@@ -42,18 +42,18 @@
|
|
|
</div>
|
|
|
<div class="seat-position" v-loading="loadingSeat">
|
|
|
<template v-for="item in seatList">
|
|
|
- <div class="seat-item __hover" :class="{no: !(item.abbreviation || item.name), active: currentSeatId === item.id}" @click="onSeatClick(item)">
|
|
|
+ <div class="seat-item __hover" :class="{no: !(item.abbreviation || item.name), active: currentSeatId === item.id}" @click="onSeatClick(item.id)">
|
|
|
<div class="index">{{item.serialNumber}}</div>
|
|
|
<div class="name">{{item.abbreviation || item.name || '无单位'}}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="dept" v-if="seatInfo.info?.id">
|
|
|
+ <div class="dept" v-if="seatInfo.info?.id" v-loading="loadingForm">
|
|
|
<template v-if="isEdit">
|
|
|
<div class="dept-edit-buttons">
|
|
|
- <div class="reset __hover">清空</div>
|
|
|
- <div class="save __hover">保存</div>
|
|
|
+ <div class="reset __hover" @click="onReset">清空</div>
|
|
|
+ <div class="save __hover" @click="onSave">保存</div>
|
|
|
<div class="cancel __hover" @click="onEditCancel">取消</div>
|
|
|
</div>
|
|
|
<div class="dept-edit-form">
|
|
@@ -62,17 +62,18 @@
|
|
|
:span="24"
|
|
|
:disabled="true"
|
|
|
label="席位编号:"
|
|
|
- v-model:param="seatInfo.editDutyInfo.deptForm.index"/>
|
|
|
+ v-model:param="seatInfo.editDutyInfo.deptForm.serialNumber"/>
|
|
|
<CusFormColumn
|
|
|
:span="24"
|
|
|
- required
|
|
|
label="单位名称:"
|
|
|
- link="dept"
|
|
|
- v-model:param="seatInfo.editDutyInfo.deptForm.p2"/>
|
|
|
+ link="select"
|
|
|
+ v-model:param="seatInfo.editDutyInfo.deptForm.deptId"
|
|
|
+ :options="$store.state.dictionary.deptList"
|
|
|
+ @change="onChangeDept"/>
|
|
|
<CusFormColumn
|
|
|
:span="24"
|
|
|
label="单位简称:"
|
|
|
- v-model:param="seatInfo.editDutyInfo.deptForm.p2"/>
|
|
|
+ v-model:param="seatInfo.editDutyInfo.deptForm.abbreviation"/>
|
|
|
<CusFormColumn
|
|
|
:span="24"
|
|
|
label="简介:"
|
|
@@ -80,12 +81,12 @@
|
|
|
:rows="4"
|
|
|
show-word-limit
|
|
|
:maxlength="100"
|
|
|
- v-model:param="seatInfo.editDutyInfo.deptForm.p3"/>
|
|
|
+ v-model:param="seatInfo.editDutyInfo.deptForm.introduction"/>
|
|
|
</CusForm>
|
|
|
</div>
|
|
|
<div class="dept-duty-total">
|
|
|
值班人员列表({{seatInfo.editDutyInfo.tableData.length}})
|
|
|
- <div class="people-add __hover" @click="addPeople">
|
|
|
+ <div class="people-add __hover" @click="addPeople" v-if="seatInfo.editDutyInfo.deptForm.deptId">
|
|
|
<img src="./add.png"/>新增
|
|
|
</div>
|
|
|
</div>
|
|
@@ -95,6 +96,13 @@
|
|
|
:tableHead="seatInfo.editDutyInfo.tableHead"
|
|
|
noPage
|
|
|
>
|
|
|
+ <template #do-column-value="{ scope }">
|
|
|
+ <div class="__cus-table_do">
|
|
|
+ <div class="__cus-table_do-red __hover" @click="delPeople(scope)">
|
|
|
+ <SvgIcon name="del" size="16"/>删除
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</CusTable>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -115,7 +123,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="dept-duty-total">
|
|
|
- 值班人员列表({{seatInfo.dutyInfo.total}})
|
|
|
+ 值班人员列表({{seatInfo.dutyInfo.tableData.length}})
|
|
|
</div>
|
|
|
<div class="dept-duty-table">
|
|
|
<CusTable
|
|
@@ -129,7 +137,7 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <PeopleCom v-model:show="showPeople" :transfer="transfer"/>
|
|
|
+ <PeopleCom v-model:show="showPeople" :transfer="transfer" @getPeople="getPeople"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -149,8 +157,13 @@ import {
|
|
|
import {useStore} from 'vuex'
|
|
|
import {useRouter, useRoute} from 'vue-router'
|
|
|
import PeopleCom from './people.vue'
|
|
|
-import {getSeatDutyPersonEdit, getSeatDutyUnitById, getSeatDutyUnitList} from "@/api/modules/seat";
|
|
|
-import {ElMessage} from "element-plus";
|
|
|
+import {
|
|
|
+ editSeatDutyUnitEdit,
|
|
|
+ getSeatDutyPersonEdit,
|
|
|
+ getSeatDutyUnitById,
|
|
|
+ getSeatDutyUnitList
|
|
|
+} from "@/api/modules/seat";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: '',
|
|
@@ -174,17 +187,17 @@ export default defineComponent({
|
|
|
tableData: [],
|
|
|
loading: false,
|
|
|
tableHead: [
|
|
|
- {value: "p1", label: "姓名", show: true},
|
|
|
- {value: "p1", label: "联系电话", show: true},
|
|
|
- {value: "p1", label: "更新时间", show: true},
|
|
|
+ {value: "name", label: "姓名", show: true},
|
|
|
+ {value: "linkPhone", label: "联系电话", show: true},
|
|
|
+ {value: "time", label: "更新时间", show: true},
|
|
|
],
|
|
|
},
|
|
|
editDutyInfo: {
|
|
|
- tableData: [],
|
|
|
+ tableData: <any>[],
|
|
|
tableHead: [
|
|
|
- {value: "p1", label: "姓名", show: true},
|
|
|
- {value: "p1", label: "联系电话", show: true},
|
|
|
- {value: "p1", label: "更新时间", show: true},
|
|
|
+ {value: "name", label: "姓名", show: true},
|
|
|
+ {value: "linkPhone", label: "联系电话", show: true},
|
|
|
+ {value: "time", label: "更新时间", show: true},
|
|
|
{value: "do", label: "操作", show: true},
|
|
|
],
|
|
|
deptForm: {}
|
|
@@ -192,10 +205,13 @@ export default defineComponent({
|
|
|
},
|
|
|
isEdit: false,
|
|
|
showPeople: false,
|
|
|
- transfer: {}
|
|
|
+ transfer: {},
|
|
|
+ loadingForm: false
|
|
|
})
|
|
|
+ const ref_form = ref()
|
|
|
// 获取字典
|
|
|
const initDictionary = () => {
|
|
|
+ store.dispatch('dictionary/LOAD_DEPT')
|
|
|
store.dispatch('dictionary/LOAD_DICT_LIST', 'duty_hall_leader')
|
|
|
store.dispatch('dictionary/LOAD_DICT_LIST', 'total_class')
|
|
|
store.dispatch('dictionary/LOAD_DICT_LIST', 'shift_leader')
|
|
@@ -246,17 +262,17 @@ export default defineComponent({
|
|
|
state.loadingSeat = false
|
|
|
})
|
|
|
}
|
|
|
- const onSeatClick = (item) => {
|
|
|
- state.currentSeatId = item.id
|
|
|
+ const onSeatClick = (seatId) => {
|
|
|
+ state.currentSeatId = seatId
|
|
|
// 重置数据
|
|
|
state.seatInfo.info = {}
|
|
|
state.seatInfo.dutyInfo.tableData = []
|
|
|
- state.seatInfo.editDutyInfo.tableData = []
|
|
|
- state.seatInfo.editDutyInfo.deptForm = {}
|
|
|
+ state.isEdit = false
|
|
|
state.loadingSeat = true
|
|
|
that.$api.getSeatDutyUnitById(state.currentSeatId).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- state.seatInfo.info = res.data
|
|
|
+ state.seatInfo.info = JSON.parse(JSON.stringify(res.data))
|
|
|
+ state.seatInfo.dutyInfo.tableData = JSON.parse(JSON.stringify(res.data.dutyUnitPersonList || []))
|
|
|
} else {
|
|
|
ElMessage.error(res.message)
|
|
|
}
|
|
@@ -275,10 +291,66 @@ export default defineComponent({
|
|
|
state.seatInfo.editDutyInfo.tableData = []
|
|
|
state.isEdit = false
|
|
|
}
|
|
|
+ const onReset = () => {
|
|
|
+ state.seatInfo.editDutyInfo.tableData = []
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.abbreviation = ''
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.introduction = ''
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.deptId = ''
|
|
|
+ }
|
|
|
+ const onSave = () => {
|
|
|
+ ref_form.value.submit().then(() => {
|
|
|
+ ElMessageBox.confirm("是否提交?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
+ state.loadingForm = true
|
|
|
+ that.$api.editSeatDutyUnitEdit(Object.assign(state.seatInfo.editDutyInfo.deptForm, {
|
|
|
+ dutyUnitPersonList: state.seatInfo.editDutyInfo.tableData.map(v => {
|
|
|
+ v.unitId = state.seatInfo.editDutyInfo.deptForm.id
|
|
|
+ return v
|
|
|
+ }),
|
|
|
+ name: store.state.dictionary.deptMap.get(state.seatInfo.editDutyInfo.deptForm.deptId).organizationName
|
|
|
+ })).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ onSeatClick(state.currentSeatId)
|
|
|
+ initSeat()
|
|
|
+ ElMessage.success(res.message)
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.message)
|
|
|
+ }
|
|
|
+ state.loadingForm = false
|
|
|
+ }).catch(() => {
|
|
|
+ state.loadingForm = false
|
|
|
+ })
|
|
|
+ }).catch(() => {})
|
|
|
+ }).catch((e) => {
|
|
|
+ ElMessage({
|
|
|
+ message: e[0].message,
|
|
|
+ grouping: true,
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ const onChangeDept = (val) => {
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.name = store.state.dictionary.deptMap.get(val)
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.abbreviation = ''
|
|
|
+ state.seatInfo.editDutyInfo.deptForm.introduction = ''
|
|
|
+ state.seatInfo.editDutyInfo.tableData = []
|
|
|
+ }
|
|
|
const addPeople = () => {
|
|
|
- state.transfer = JSON.parse(JSON.stringify(state.seatInfo.info))
|
|
|
+ state.transfer = {
|
|
|
+ deptId: state.seatInfo.editDutyInfo.deptForm.deptId,
|
|
|
+ selectUserId: state.seatInfo.editDutyInfo.tableData.map(v => v.accountId)
|
|
|
+ }
|
|
|
state.showPeople = true
|
|
|
}
|
|
|
+ const getPeople = (val: any) => {
|
|
|
+ state.seatInfo.editDutyInfo.tableData.push(...val)
|
|
|
+ }
|
|
|
+ const delPeople = (scope) => {
|
|
|
+ state.seatInfo.editDutyInfo.tableData.splice(scope.$index, 1)
|
|
|
+ }
|
|
|
watch(() => store.state.app.dutyInfo, () => {
|
|
|
initDuty()
|
|
|
})
|
|
@@ -289,11 +361,17 @@ export default defineComponent({
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|
|
|
+ ref_form,
|
|
|
onEdit,
|
|
|
onEditCancel,
|
|
|
addPeople,
|
|
|
setDuty,
|
|
|
- onSeatClick
|
|
|
+ onSeatClick,
|
|
|
+ onChangeDept,
|
|
|
+ getPeople,
|
|
|
+ delPeople,
|
|
|
+ onReset,
|
|
|
+ onSave
|
|
|
}
|
|
|
},
|
|
|
})
|