index.vue
10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<template>
<div className="approve-page px-4 bg-white">
<a-tabs :default-active-key="role === ROLE.FINANCE ? '7' : '1'" v-model:activeKey="currentKey">
<a-tab-pane key="1" tab="字段待审核" v-if="role !== ROLE.FINANCE">
<FieldPanel />
</a-tab-pane>
<a-tab-pane key="3" tab="利润分析待审核" v-if="role==ROLE.ADMIN || role==ROLE.BUSINESS" >
<ProfitPanel />
</a-tab-pane>
<a-tab-pane key="5" tab="项目报告书待审核" v-if="role==ROLE.ADMIN || role==ROLE.BUSINESS">
<ReportPanel />
</a-tab-pane>
<a-tab-pane
key="7"
tab="应收款待审核"
v-if="
role == ROLE.FINANCE ||
role == ROLE.ADMIN
||
role == ROLE.BUSINESS ||
role == ROLE.TRACKER
"
>
<ReceivePanel />
</a-tab-pane>
<a-tab-pane
key="9"
tab="应付款待审核"
v-if="
role == ROLE.FINANCE ||
role == ROLE.ADMIN ||
role == ROLE.BUSINESS ||
role == ROLE.TRACKER
"
>
<PayPanel />
</a-tab-pane>
<a-tab-pane
key="11"
tab="利润分析表字段审核"
v-if="role == ROLE.FINANCE || role == ROLE.ADMIN"
>
<ProfitFieldPanel />
</a-tab-pane>
<a-tab-pane key="13" tab="明细表字段审核" v-if="role == ROLE.FINANCE || role == ROLE.ADMIN">
<ProduceFieldPanel />
</a-tab-pane>
<a-tab-pane
key="15-16"
tab="考勤工资字段待审核"
v-if="role === ROLE.FINANCE || role === ROLE.ADMIN"
>
<a-space direction="vertical" style="width: 100%">
<a-row :gutter="16" align="middle">
<a-col :span="4">
<a-select v-model:value="fieldType" style="width: 100%">
<a-select-option value="attendance">考勤字段审核</a-select-option>
<a-select-option value="salary">工资字段审核</a-select-option>
</a-select>
</a-col>
<a-col :span="4">
<a-date-picker
v-model:value="selectedDate"
picker="month"
placeholder="请选择年月"
format="YYYY-MM"
style="width: 100%"
/>
</a-col>
<a-col :span="4">
<a-button type="primary" @click="handleSearch">
查询
</a-button>
<a-button style="margin-left: 8px" @click="handleReset">
重置
</a-button>
</a-col>
</a-row>
<template v-if="fieldType === 'attendance'">
<AttendancePanel :selectedDate="selectedDate" :key="attendanceKey" />
</template>
<template v-else-if="fieldType === 'salary'">
<SalaryPanel :selectedDate="selectedDate" :key="salaryKey" />
</template>
</a-space>
</a-tab-pane>
<a-tab-pane
key="19"
tab="员工档案字段待审核"
v-if="role === ROLE.FINANCE || role === ROLE.ADMIN"
>
<EmployeeFieldPanel />
</a-tab-pane>
<a-tab-pane key="2" tab="字段已审核" v-if="role !== ROLE.FINANCE">
<FieldPanel isApproved />
</a-tab-pane>
<a-tab-pane key="4" tab="利润分析已审核" v-if="role==ROLE.ADMIN || role==ROLE.BUSINESS">
<ProfitPanel isApproved />
</a-tab-pane>
<a-tab-pane key="6" tab="项目报告书已审核" v-if="role==ROLE.ADMIN || role==ROLE.BUSINESS">
<ReportPanel isApproved />
</a-tab-pane>
<a-tab-pane
key="8"
tab="应收款已审核"
v-if="
role == ROLE.FINANCE ||
role == ROLE.ADMIN
||
role == ROLE.BUSINESS ||
role == ROLE.TRACKER
"
>
<ReceivePanel isApproved />
</a-tab-pane>
<a-tab-pane
key="10"
tab="应付款已审核"
v-if="
role == ROLE.FINANCE ||
role == ROLE.ADMIN ||
role == ROLE.BUSINESS ||
role == ROLE.TRACKER
"
>
<PayPanel isApproved />
</a-tab-pane>
<a-tab-pane
key="12"
tab="利润分析表字段已审核"
v-if="role == ROLE.FINANCE || role == ROLE.ADMIN"
>
<ProfitFieldPanel isApproved />
</a-tab-pane>
<a-tab-pane key="14" tab="明细表字段审核" v-if="role == ROLE.FINANCE || role == ROLE.ADMIN">
<ProduceFieldPanel isApproved />
</a-tab-pane>
<a-tab-pane
key="17-18"
tab="考勤工资字段已审核"
v-if="role === ROLE.FINANCE || role === ROLE.ADMIN"
>
<a-space direction="vertical" style="width: 100%">
<a-row :gutter="16" align="middle">
<a-col :span="4">
<a-select v-model:value="approvedFieldType" style="width: 100%">
<a-select-option value="attendance">考勤字段已审核</a-select-option>
<a-select-option value="salary">工资字段已审核</a-select-option>
</a-select>
</a-col>
<a-col :span="4">
<a-date-picker
v-model:value="approvedSelectedDate"
picker="month"
placeholder="请选择年月"
format="YYYY-MM"
style="width: 100%"
/>
</a-col>
<a-col :span="4">
<a-button type="primary" @click="handleApprovedSearch">
查询
</a-button>
<a-button style="margin-left: 8px" @click="handleApprovedReset">
重置
</a-button>
</a-col>
</a-row>
<template v-if="approvedFieldType === 'attendance'">
<AttendanceApprovedPanel :selectedDate="approvedSelectedDate" :key="attendanceApprovedKey" />
</template>
<template v-else-if="approvedFieldType === 'salary'">
<SalaryApprovedPanel :selectedDate="approvedSelectedDate" :key="salaryApprovedKey" />
</template>
</a-space>
</a-tab-pane>
<a-tab-pane
key="20"
tab="员工档案字段已审核"
v-if="role === ROLE.FINANCE || role === ROLE.ADMIN"
>
<EmployeeFieldApprovedPanel />
</a-tab-pane>
</a-tabs>
</div>
</template>
<script lang="ts">
import { computed, defineComponent, onMounted, ref, watchEffect } from 'vue';
import { Tabs } from 'ant-design-vue';
import { ROLE } from '../order/type.d';
import ReportPanel from './ReportPanel.vue';
import ProfitPanel from './ProfitPanel.vue';
import FieldPanel from './FieldPanel.vue';
import ReceivePanel from './ReceivePanel.vue';
import PayPanel from './PayPanel.vue';
import ProfitFieldPanel from './ProfitFieldPanel.vue';
import ProduceFieldPanel from './ProduceFieldPanel.vue';
import AttendancePanel from './AttendancePanel.vue';
import SalaryPanel from './SalaryPanel.vue';
import AttendanceApprovedPanel from './AttendanceApprovedPanel.vue';
import SalaryApprovedPanel from './SalaryApprovedPanel.vue';
import EmployeeFieldPanel from './EmployeeFieldPanel.vue';
import EmployeeFieldApprovedPanel from './EmployeeFieldApprovedPanel.vue';
import { useOrderStoreWithOut } from '/@/store/modules/order';
import { useUserStoreWithOut } from '/@/store/modules/user';
import dayjs from 'dayjs';
const orderStore = useOrderStoreWithOut();
const userStore = useUserStoreWithOut();
const user = userStore.getUserInfo;
const role = computed(() => {
return user?.roleSmallVO?.code;
});
export default defineComponent({
components: {
[Tabs.name]: Tabs,
[Tabs.TabPane.name]: Tabs.TabPane,
ReportPanel,
FieldPanel,
ProfitPanel,
ReceivePanel,
PayPanel,
ProfitFieldPanel,
ProduceFieldPanel,
AttendancePanel,
SalaryPanel,
AttendanceApprovedPanel,
SalaryApprovedPanel,
EmployeeFieldPanel,
EmployeeFieldApprovedPanel,
},
setup() {
const checkedKeys = ref<Array<string | number>>([]);
const currentKey = ref('1');
const fieldType = ref('attendance'); // 默认显示考勤字段审核
const selectedDate = ref(null);
const attendanceKey = ref(0);
const salaryKey = ref(0);
const approvedFieldType = ref('attendance'); // 默认显示考勤字段已审核
const approvedSelectedDate = ref(null);
const attendanceApprovedKey = ref(0);
const salaryApprovedKey = ref(0);
onMounted(async () => {
await orderStore.getDict();
});
watchEffect(() => {
if (role.value == ROLE.FINANCE) {
currentKey.value = '7';
}
});
const handleSearch = () => {
// 通过更新key来强制子组件重新渲染,从而触发数据重新加载
if (fieldType.value === 'attendance') {
attendanceKey.value += 1;
} else if (fieldType.value === 'salary') {
salaryKey.value += 1;
}
};
const handleReset = () => {
selectedDate.value = null;
// 通过更新key来强制子组件重新渲染
if (fieldType.value === 'attendance') {
attendanceKey.value += 1;
} else if (fieldType.value === 'salary') {
salaryKey.value += 1;
}
};
const handleApprovedSearch = () => {
// 通过更新key来强制子组件重新渲染,从而触发数据重新加载
if (approvedFieldType.value === 'attendance') {
attendanceApprovedKey.value += 1;
} else if (approvedFieldType.value === 'salary') {
salaryApprovedKey.value += 1;
}
};
const handleApprovedReset = () => {
approvedSelectedDate.value = null;
// 通过更新key来强制子组件重新渲染
if (approvedFieldType.value === 'attendance') {
attendanceApprovedKey.value += 1;
} else if (approvedFieldType.value === 'salary') {
salaryApprovedKey.value += 1;
}
};
return {
checkedKeys,
currentKey,
fieldType,
role,
ROLE,
selectedDate,
attendanceKey,
salaryKey,
approvedFieldType,
approvedSelectedDate,
attendanceApprovedKey,
salaryApprovedKey,
handleSearch,
handleReset,
handleApprovedSearch,
handleApprovedReset,
};
},
});
</script>
<style>
.approve-page .vben-basic-table .ant-table-wrapper {
margin-bottom: 0;
}
.approve-page .vben-basic-table-form-container {
padding-right: 0;
padding-left: 0;
}
.approve-page .vben-basic-table-form-container .ant-form {
margin-bottom: 0;
padding-top: 0;
}
</style>