index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <a-card :bordered="false">
  3. <a-form ref="searchFormRef" :model="searchFormState" class="ant-advanced-search-form">
  4. <a-row :gutter="24">
  5. <a-col :span="6">
  6. <a-form-item label="姓名" name="name">
  7. <a-input v-model:value="searchFormState.name" placeholder="请输入姓名" allow-clear/>
  8. </a-form-item>
  9. </a-col>
  10. <a-col :span="6">
  11. <a-form-item label="性别" name="gender">
  12. <a-select v-model:value="searchFormState.gender" placeholder="请选择性别"
  13. :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
  14. </a-form-item>
  15. </a-col>
  16. <a-col :span="6">
  17. <a-form-item label="身份证号" name="idNo">
  18. <a-input v-model:value="searchFormState.idNo" placeholder="请输入身份证号" allow-clear/>
  19. </a-form-item>
  20. </a-col>
  21. <a-col :span="6">
  22. <a-form-item label="国籍" name="nationality">
  23. <a-select v-model:value="searchFormState.nationality" placeholder="请选择国籍"
  24. :options="cityOptions" show-search allow-clear optionFilterProp="label"/>
  25. </a-form-item>
  26. </a-col>
  27. <a-col :span="6">
  28. <a-form-item label="居住地" name="address">
  29. <a-input v-model:value="searchFormState.address" placeholder="请输入居住地" allow-clear/>
  30. </a-form-item>
  31. </a-col>
  32. <a-col :span="6">
  33. <a-form-item label="车次/航班号" name="travelNo">
  34. <a-input v-model:value="searchFormState.travelNo" placeholder="请输入车次/航班号" allow-clear/>
  35. </a-form-item>
  36. </a-col>
  37. <a-col :span="7">
  38. <a-form-item label="航/车次(班)日期" name="travelTime">
  39. <a-range-picker v-model:value="searchFormState.travelTime" show-time allow-clear/>
  40. </a-form-item>
  41. </a-col>
  42. <a-col :span="5">
  43. <a-form-item label="类型" name="checkType">
  44. <a-select v-model:value="searchFormState.checkType" placeholder="请选择类型"
  45. :options="checkTypeOptions" show-search allow-clear optionFilterProp="label"/>
  46. </a-form-item>
  47. </a-col>
  48. <a-col :span="7">
  49. <a-form-item label="入场时间" name="admissionTime">
  50. <a-range-picker v-model:value="searchFormState.admissionTime" show-time allow-clear/>
  51. </a-form-item>
  52. </a-col>
  53. <a-col :span="7">
  54. <a-form-item label="放行时间" name="passTime">
  55. <a-range-picker v-model:value="searchFormState.passTime" show-time allow-clear/>
  56. </a-form-item>
  57. </a-col>
  58. <a-col :span="6">
  59. <a-button type="primary" @click="onSearch()">查询</a-button>
  60. <a-button style="margin: 0 8px" @click="reset">重置</a-button>
  61. </a-col>
  62. </a-row>
  63. </a-form>
  64. <s-table
  65. ref="tableRef"
  66. :columns="columns"
  67. :data="loadData"
  68. bordered
  69. :row-key="(record) => record.id"
  70. :tool-config="toolConfig"
  71. v-model:filterParam="filterParam"
  72. :scroll="{ x: 2000 }"
  73. >
  74. <template #bodyCell="{ column, record }">
  75. <template v-if="column.dataIndex === 'gender'">
  76. {{ $TOOL.dictTypeData('lvke_sex', record.gender) }}
  77. </template>
  78. <template v-if="column.dataIndex === 'nationality'">
  79. {{ $TOOL.dictTypeData('lvke_city', record.nationality) }}
  80. </template>
  81. <template v-if="column.dataIndex === 'checkType'">
  82. {{ $TOOL.dictTypeData('lvke_checkType', record.checkType) }}
  83. </template>
  84. <template v-if="column.dataIndex === 'action'">
  85. <a-space>
  86. <a @click="ref_detail.onOpen(record)">查看</a>
  87. </a-space>
  88. </template>
  89. </template>
  90. </s-table>
  91. </a-card>
  92. <Detail ref="ref_detail"/>
  93. </template>
  94. <script setup name="demo2">
  95. import tool from '@/utils/tool'
  96. import {cloneDeep} from 'lodash-es'
  97. import Detail from './detail.vue'
  98. import basicApi from '@/api/gsc/basic'
  99. const {proxy} = getCurrentInstance()
  100. const searchFormState = ref({})
  101. const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
  102. const searchFormRef = ref()
  103. const tableRef = ref()
  104. const filterParam = ref({})
  105. const ref_detail = ref()
  106. const toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
  107. const columns = [
  108. {
  109. title: '姓名',
  110. dataIndex: 'name',
  111. },
  112. {
  113. title: '性别',
  114. dataIndex: 'gender',
  115. },
  116. {
  117. title: '身份证号',
  118. dataIndex: 'idNo',
  119. },
  120. {
  121. title: '国籍',
  122. dataIndex: 'nationality',
  123. },
  124. {
  125. title: '居住地',
  126. dataIndex: 'address',
  127. },
  128. {
  129. title: '车次/航班号',
  130. dataIndex: 'travelNo',
  131. },
  132. {
  133. title: '航/车次(班)日期',
  134. dataIndex: 'travelTime',
  135. },
  136. {
  137. title: '类型',
  138. dataIndex: 'checkType',
  139. },
  140. {
  141. title: '入场时间',
  142. dataIndex: 'admissionTime',
  143. },
  144. {
  145. title: '放行时间',
  146. dataIndex: 'passTime',
  147. },
  148. {
  149. title: '操作',
  150. dataIndex: 'action',
  151. align: 'center',
  152. width: 100,
  153. fixed: 'right',
  154. }
  155. ]
  156. const selectedRowKeys = ref([])
  157. // 列表选择配置
  158. const options = {
  159. // columns数字类型字段加入 needTotal: true 可以勾选自动算账
  160. alert: {
  161. show: true,
  162. clear: () => {
  163. selectedRowKeys.value = ref([])
  164. }
  165. },
  166. rowSelection: {
  167. onChange: (selectedRowKey, selectedRows) => {
  168. selectedRowKeys.value = selectedRowKey
  169. }
  170. }
  171. }
  172. const loadData = (parameter) => {
  173. if (searchFormStateReal.value.travelTime?.length > 0) {
  174. searchFormStateReal.value.travelTimeStart = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[0])
  175. searchFormStateReal.value.travelTimeEnd = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[1])
  176. delete searchFormStateReal.value.travelTime
  177. }
  178. if (searchFormStateReal.value.admissionTime?.length > 0) {
  179. searchFormStateReal.value.admissionTimeStart = proxy.$util.YMDHms(searchFormStateReal.value.admissionTime[0])
  180. searchFormStateReal.value.admissionTimeEnd = proxy.$util.YMDHms(searchFormStateReal.value.admissionTime[1])
  181. delete searchFormStateReal.value.admissionTime
  182. }
  183. if (searchFormStateReal.value.passTime?.length > 0) {
  184. searchFormStateReal.value.passTimeStart = proxy.$util.YMDHms(searchFormStateReal.value.passTime[0])
  185. searchFormStateReal.value.passTimeEnd = proxy.$util.YMDHms(searchFormStateReal.value.passTime[1])
  186. delete searchFormStateReal.value.passTime
  187. }
  188. return basicApi.passengerInfoPage(Object.assign(parameter, searchFormStateReal.value, {queryType: 3})).then((data) => {
  189. return data
  190. })
  191. }
  192. // 搜索同时备份参数
  193. const onSearch = (parameter) => {
  194. searchFormStateReal.value = cloneDeep(searchFormState.value)
  195. tableRef.value.refresh(parameter)
  196. }
  197. // 重置
  198. const reset = () => {
  199. searchFormRef.value.resetFields()
  200. onSearch(true)
  201. }
  202. const sexOptions = tool.dictList('lvke_sex')
  203. const cityOptions = tool.dictList('lvke_city')
  204. const isNoOptions = tool.dictList('lvke_isNo')
  205. const departurePortOptions = tool.dictList('lvke_departurePort')
  206. const arrivingPortOptions = tool.dictList('lvke_arrivingPort')
  207. const checkTypeOptions = tool.dictList('lvke_checkType')
  208. </script>