index_all.vue 7.5 KB

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