|
@@ -100,9 +100,12 @@
|
|
|
</div>
|
|
|
<div class="dept-duty-table">
|
|
|
<CusTable
|
|
|
- :tableData="seatInfo.editDutyInfo.tableData"
|
|
|
+ :tableData="editDutyInfoTableDataCpt"
|
|
|
:tableHead="seatInfo.editDutyInfo.tableHead"
|
|
|
- noPage
|
|
|
+ :total="seatInfo.editDutyInfo.tableData.length"
|
|
|
+ :page="seatInfo.editDutyInfo.pageNum"
|
|
|
+ :pageSize="seatInfo.editDutyInfo.pageSize"
|
|
|
+ @handlePage="handlePageEditDutyInfo"
|
|
|
>
|
|
|
<template #do-column-value="{ scope }">
|
|
|
<div class="__cus-table_do">
|
|
@@ -136,9 +139,12 @@
|
|
|
<div class="dept-duty-table">
|
|
|
<CusTable
|
|
|
v-loading="seatInfo.dutyInfo.loading"
|
|
|
- :tableData="seatInfo.dutyInfo.tableData"
|
|
|
+ :tableData="dutyInfoTableDataCpt"
|
|
|
:tableHead="seatInfo.dutyInfo.tableHead"
|
|
|
- noPage
|
|
|
+ :total="seatInfo.dutyInfo.tableData.length"
|
|
|
+ :page="seatInfo.dutyInfo.pageNum"
|
|
|
+ :pageSize="seatInfo.dutyInfo.pageSize"
|
|
|
+ @handlePage="handlePageDutyInfo"
|
|
|
>
|
|
|
</CusTable>
|
|
|
</div>
|
|
@@ -188,6 +194,8 @@ export default defineComponent({
|
|
|
dutyInfo: {
|
|
|
tableData: [],
|
|
|
loading: false,
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
tableHead: [
|
|
|
{value: "name", label: "姓名", show: true},
|
|
|
{value: "linkPhone", label: "联系电话", show: true},
|
|
@@ -202,6 +210,8 @@ export default defineComponent({
|
|
|
{value: "time", label: "更新时间", show: true, width: 180},
|
|
|
{value: "do", label: "操作", show: true},
|
|
|
],
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
deptForm: {}
|
|
|
},
|
|
|
},
|
|
@@ -372,6 +382,20 @@ export default defineComponent({
|
|
|
watch(() => store.state.app.dutyInfo, () => {
|
|
|
initDuty()
|
|
|
})
|
|
|
+ const dutyInfoTableDataCpt = computed(() => {
|
|
|
+ return state.seatInfo.dutyInfo.tableData.slice((state.seatInfo.dutyInfo.pageNum - 1) * state.seatInfo.dutyInfo.pageSize, state.seatInfo.dutyInfo.pageNum * state.seatInfo.dutyInfo.pageSize)
|
|
|
+ })
|
|
|
+ const handlePageDutyInfo = ({page, pageSize}: any) => {
|
|
|
+ state.seatInfo.dutyInfo.pageNum = page
|
|
|
+ state.seatInfo.dutyInfo.pageSize = pageSize
|
|
|
+ }
|
|
|
+ const editDutyInfoTableDataCpt = computed(() => {
|
|
|
+ return state.seatInfo.editDutyInfo.tableData.slice((state.seatInfo.editDutyInfo.pageNum - 1) * state.seatInfo.editDutyInfo.pageSize, state.seatInfo.editDutyInfo.pageNum * state.seatInfo.editDutyInfo.pageSize)
|
|
|
+ })
|
|
|
+ const handlePageEditDutyInfo = ({page, pageSize}: any) => {
|
|
|
+ state.seatInfo.editDutyInfo.pageNum = page
|
|
|
+ state.seatInfo.editDutyInfo.pageSize = pageSize
|
|
|
+ }
|
|
|
onMounted(() => {
|
|
|
initDictionary()
|
|
|
initDuty()
|
|
@@ -389,7 +413,11 @@ export default defineComponent({
|
|
|
getPeople,
|
|
|
delPeople,
|
|
|
onReset,
|
|
|
- onSave
|
|
|
+ onSave,
|
|
|
+ dutyInfoTableDataCpt,
|
|
|
+ handlePageDutyInfo,
|
|
|
+ editDutyInfoTableDataCpt,
|
|
|
+ handlePageEditDutyInfo
|
|
|
}
|
|
|
},
|
|
|
})
|