index.vue 7.4 KB

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