index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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="姓名">
  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="性别">
  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="身份证号">
  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="国籍">
  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="居住地">
  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="车次/航班号">
  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="航/车次(班)日期">
  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="是否携带行李物品">
  44. <a-select v-model:value="searchFormState.baggage" placeholder="请选择是否携带行李物品"
  45. :options="isNoOptions" show-search allow-clear optionFilterProp="label"/>
  46. </a-form-item>
  47. </a-col>
  48. <a-col :span="6">
  49. <a-form-item label="出发港口">
  50. <a-select v-model:value="searchFormState.fromPort" placeholder="请选择出发港口"
  51. :options="departurePortOptions" show-search allow-clear optionFilterProp="label"/>
  52. </a-form-item>
  53. </a-col>
  54. <a-col :span="6">
  55. <a-form-item label="到达港口">
  56. <a-select v-model:value="searchFormState.toPort" placeholder="请选择到达港口"
  57. :options="arrivingPortOptions" 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 === 'baggage'">
  84. {{ $TOOL.dictTypeData('lvke_isNo', record.baggage) }}
  85. </template>
  86. <template v-if="column.dataIndex === 'fromPort'">
  87. {{ $TOOL.dictTypeData('lvke_departurePort', record.fromPort) }}
  88. </template>
  89. <template v-if="column.dataIndex === 'toPort'">
  90. {{ $TOOL.dictTypeData('lvke_arrivingPort', record.toPort) }}
  91. </template>
  92. <template v-if="column.dataIndex === 'action'">
  93. <a-space>
  94. <a @click="ref_detail.onOpen(record)">查看</a>
  95. </a-space>
  96. </template>
  97. </template>
  98. </s-table>
  99. </a-card>
  100. <Detail ref="ref_detail"/>
  101. </template>
  102. <script setup name="demo2">
  103. import tool from '@/utils/tool'
  104. import {cloneDeep} from 'lodash-es'
  105. import Detail from './detail.vue'
  106. import basicApi from '@/api/gsc/basic'
  107. const {proxy} = getCurrentInstance()
  108. const searchFormState = ref({})
  109. const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
  110. const searchFormRef = ref()
  111. const tableRef = ref()
  112. const filterParam = ref({})
  113. const ref_detail = ref()
  114. const toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
  115. const columns = [
  116. {
  117. title: '姓名',
  118. dataIndex: 'name',
  119. },
  120. {
  121. title: '性别',
  122. dataIndex: 'gender',
  123. },
  124. {
  125. title: '身份证号',
  126. dataIndex: 'idNo',
  127. },
  128. {
  129. title: '国籍',
  130. dataIndex: 'nationality',
  131. },
  132. {
  133. title: '居住地',
  134. dataIndex: 'address',
  135. },
  136. {
  137. title: '车次/航班号',
  138. dataIndex: 'travelNo',
  139. },
  140. {
  141. title: '航/车次(班)日期',
  142. dataIndex: 'travelTime',
  143. },
  144. {
  145. title: '是否携带行李物品',
  146. dataIndex: 'baggage',
  147. },
  148. {
  149. title: '出发港口',
  150. dataIndex: 'fromPort',
  151. },
  152. {
  153. title: '到达港口',
  154. dataIndex: 'toPort',
  155. },
  156. {
  157. title: '座位号',
  158. dataIndex: 'seatNo',
  159. },
  160. {
  161. title: '操作',
  162. dataIndex: 'action',
  163. align: 'center',
  164. width: 100,
  165. fixed: 'right',
  166. }
  167. ]
  168. const selectedRowKeys = ref([])
  169. // 列表选择配置
  170. const options = {
  171. // columns数字类型字段加入 needTotal: true 可以勾选自动算账
  172. alert: {
  173. show: true,
  174. clear: () => {
  175. selectedRowKeys.value = ref([])
  176. }
  177. },
  178. rowSelection: {
  179. onChange: (selectedRowKey, selectedRows) => {
  180. selectedRowKeys.value = selectedRowKey
  181. }
  182. }
  183. }
  184. const loadData = (parameter) => {
  185. if (searchFormStateReal.value.travelTime?.length > 0) {
  186. searchFormStateReal.value.travelTimeStart = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[0])
  187. searchFormStateReal.value.travelTimeEnd = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[1])
  188. delete searchFormStateReal.value.travelTime
  189. }
  190. return basicApi.passengerInfoPage(Object.assign(parameter, searchFormStateReal.value, {queryType: 1})).then((data) => {
  191. return data
  192. })
  193. }
  194. // 搜索同时备份参数
  195. const onSearch = (parameter) => {
  196. searchFormStateReal.value = cloneDeep(searchFormState.value)
  197. tableRef.value.refresh(parameter)
  198. }
  199. // 重置
  200. const reset = () => {
  201. searchFormRef.value.resetFields()
  202. onSearch(true)
  203. }
  204. const sexOptions = tool.dictList('lvke_sex')
  205. const cityOptions = tool.dictList('lvke_city')
  206. const isNoOptions = tool.dictList('lvke_isNo')
  207. const departurePortOptions = tool.dictList('lvke_departurePort')
  208. const arrivingPortOptions = tool.dictList('lvke_arrivingPort')
  209. </script>