index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <template>
  2. <div class="__normal-page">
  3. <div class="__normal-content">
  4. <CusContent
  5. v-model:tableHead="tableHead"
  6. @handleReset="handleReset"
  7. @handleSearch="onSearch"
  8. >
  9. <template #fieldOut>
  10. <CusForm labelWidth="100px" @handleEnter="onSearch">
  11. <CusFormColumn
  12. label="席位编号:"
  13. v-model:param="queryForm.seatSerialNumber"/>
  14. <CusFormColumn
  15. label="单位:"
  16. link="select"
  17. v-model:param="queryForm.deptId"
  18. :options="$store.state.dictionary.deptList"/>
  19. <CusFormColumn
  20. label="值班员:"
  21. v-model:param="queryForm.dutyPerson"/>
  22. <CusFormColumn
  23. label="联系方式:"
  24. v-model:param="queryForm.linkPhone"/>
  25. <CusFormColumn
  26. label="签卡类型:"
  27. link="select"
  28. v-model:param="queryForm.type"
  29. :options="$store.state.dictionary.signTypeList"/>
  30. <CusFormColumn
  31. label="签卡状态:"
  32. link="select"
  33. v-model:param="queryForm.status"
  34. :options="$store.state.dictionary.signStatusList"/>
  35. <CusFormColumn
  36. label="签卡时间:"
  37. link="datetime"
  38. type="datetimerange"
  39. v-model:param="queryForm.signTime"/>
  40. <CusFormColumn
  41. label="考勤时间:"
  42. link="datetime"
  43. type="datetimerange"
  44. v-model:param="queryForm.kqTime"/>
  45. <CusSearchButtons
  46. @handleReset="handleReset"
  47. @handleSearch="onSearch"
  48. />
  49. </CusForm>
  50. </template>
  51. <template #buttons>
  52. <div class="__cus-button_submit __hover" @click="onExport">
  53. <SvgIcon name="export" size="16"/>导出
  54. </div>
  55. </template>
  56. <template #table>
  57. <CusTable
  58. v-loading="loading"
  59. ref="ref_cusTable"
  60. :tableData="queryResult.tableData"
  61. :tableHead="tableHead"
  62. :total="queryResult.total"
  63. :page="queryPage.pageNum"
  64. :pageSize="queryPage.pageSize"
  65. v-model:selected="selected"
  66. @handlePage="handlePage"
  67. >
  68. <template #type-column-value="{ scope }">
  69. {{$store.state.dictionary.signTypeMap.get(scope.row.type) || scope.row.type}}
  70. </template>
  71. <template #status-column-value="{ scope }">
  72. <span :style="`color: ${$store.state.dictionary.signStatusColor.get(scope.row.status)};`">{{$store.state.dictionary.signStatusMap.get(scope.row.status) || scope.row.status}}</span>
  73. </template>
  74. </CusTable>
  75. </template>
  76. </CusContent>
  77. </div>
  78. </div>
  79. </template>
  80. <script lang="ts">
  81. import {
  82. defineComponent,
  83. computed,
  84. onMounted,
  85. ref,
  86. reactive,
  87. watch,
  88. getCurrentInstance,
  89. ComponentInternalInstance,
  90. toRefs,
  91. nextTick
  92. } from 'vue'
  93. import {useStore} from 'vuex'
  94. import {useRouter, useRoute} from 'vue-router'
  95. import {ElMessage} from "element-plus";
  96. import {getSignList, signExport} from "@/api/modules/sign";
  97. import {downLoadBlob} from "@/utils/downLoadUrl";
  98. export default defineComponent({
  99. name: '',
  100. components: {},
  101. setup(props, {emit}) {
  102. const store = useStore();
  103. const router = useRouter();
  104. const route = useRoute();
  105. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  106. const state = reactive({
  107. // 加载中
  108. loading: false,
  109. // 查询分页参数
  110. queryPage: {
  111. pageNum: 1,
  112. pageSize: 10
  113. },
  114. // 查询结果
  115. queryResult: {
  116. total: 0,
  117. tableData: []
  118. },
  119. // 查询表单参数
  120. queryForm: <any>{},
  121. // 查询表单参数备份
  122. back_queryForm: {},
  123. // 表格表头
  124. tableHead: [
  125. {value: "unitName", label: "单位", show: true},
  126. {value: "seatSerialNumber", label: "席位编号", show: true},
  127. {value: "dutyPerson", label: "值班员", show: true},
  128. {value: "linkPhone", label: "联系方式", show: true, width: 120},
  129. {value: "type", label: "签卡类型", show: true},
  130. {value: "status", label: "签卡状态", show: true},
  131. {value: "time", label: "签卡时间", show: true, width: 180},
  132. {value: "signTime", label: "考勤时间", show: true, width: 180},
  133. ],
  134. selected: []
  135. });
  136. const ref_cusTable = ref()
  137. // 获取字典
  138. const initDictionary = () => {
  139. store.dispatch('dictionary/LOAD_DEPT')
  140. store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_type')
  141. store.dispatch('dictionary/LOAD_DICT_LIST', 'sign_status')
  142. }
  143. // 查询分页参数改变处理方法
  144. const handlePage = ({page, pageSize}: any) => {
  145. state.queryPage.pageNum = page
  146. state.queryPage.pageSize = pageSize
  147. handleSearch(page, pageSize)
  148. }
  149. // 列表刷新方法
  150. const refreshSearch = () => {
  151. state.queryPage.pageNum = 1
  152. handleSearch(state.queryPage.pageNum, state.queryPage.pageSize)
  153. }
  154. // 重置查询表单方法
  155. const handleReset = () => {
  156. state.queryForm = {}
  157. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  158. refreshSearch()
  159. }
  160. // 查询方法
  161. const handleSearch = (page = 1, pageSize = 10) => {
  162. // 添加分页参数
  163. const queryParams: any = {
  164. pageNum: page,
  165. pageSize: pageSize,
  166. }
  167. // 添加表单参数
  168. for (const [k, v] of Object.entries(state.back_queryForm)) {
  169. if (that.$util.isValue(v)) {
  170. if (k === 'signTime') {
  171. queryParams['beginTime'] = v[0]
  172. queryParams['endTime'] = v[1]
  173. } else if (k === 'kqTime') {
  174. queryParams['beginSignTime'] = v[0]
  175. queryParams['endSignTime'] = v[1]
  176. } else {
  177. queryParams[k] = v
  178. }
  179. }
  180. }
  181. state.loading = true
  182. that.$api.getSignList(queryParams).then((res: any) => {
  183. if (res.code === 200) {
  184. state.queryResult.tableData = res.rows
  185. state.queryResult.total = res.total
  186. } else {
  187. ElMessage.error(res.message)
  188. }
  189. state.loading = false
  190. }).catch(() => {
  191. state.loading = false
  192. })
  193. }
  194. // 点击查询按钮后
  195. const onSearch = () => {
  196. ref_cusTable.value.resetFilter()
  197. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  198. refreshSearch()
  199. }
  200. const onExport = () => {
  201. const queryParams: any = {
  202. }
  203. if (state.selected.length > 0) {
  204. queryParams['ids'] = state.selected.map(v => v.id)
  205. } else {
  206. // 添加表单参数
  207. for (const [k, v] of Object.entries(state.back_queryForm)) {
  208. if (that.$util.isValue(v)) {
  209. if (k === 'signTime') {
  210. queryParams['beginTime'] = v[0]
  211. queryParams['endTime'] = v[1]
  212. } else if (k === 'kqTime') {
  213. queryParams['beginSignTime'] = v[0]
  214. queryParams['endSignTime'] = v[1]
  215. } else {
  216. queryParams[k] = v
  217. }
  218. }
  219. }
  220. }
  221. that.$api.signExport(queryParams).then(res => {
  222. downLoadBlob(res, '签卡记录.xlsx')
  223. ElMessage.success('导出成功!')
  224. }).catch(() => {
  225. ElMessage.error('导出失败!')
  226. })
  227. }
  228. onMounted(() => {
  229. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  230. initDictionary()
  231. refreshSearch()
  232. })
  233. return {
  234. ref_cusTable,
  235. ...toRefs(state),
  236. handleSearch,
  237. handlePage,
  238. handleReset,
  239. onSearch,
  240. onExport,
  241. refreshSearch
  242. }
  243. },
  244. })
  245. </script>
  246. <style scoped lang="scss">
  247. </style>