123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <a-card :bordered="false">
- <a-form ref="searchFormRef" :model="searchFormState" class="ant-advanced-search-form">
- <a-row :gutter="24">
- <a-col :span="6">
- <a-form-item label="姓名" name="name">
- <a-input v-model:value="searchFormState.name" placeholder="请输入姓名" allow-clear/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="身份证号" name="idNo">
- <a-input v-model:value="searchFormState.idNo" placeholder="请输入身份证号" allow-clear/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="国籍" name="nationality">
- <a-select v-model:value="searchFormState.nationality" placeholder="请选择国籍"
- :options="cityOptions" show-search allow-clear optionFilterProp="label"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="居住地" name="address">
- <a-input v-model:value="searchFormState.address" placeholder="请输入居住地" allow-clear/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="性别" name="gender">
- <a-select v-model:value="searchFormState.gender" placeholder="请选择性别"
- :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="车次/航班号" name="travelNo">
- <a-input v-model:value="searchFormState.travelNo" placeholder="请输入车次/航班号" allow-clear/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="航/车次(班)日期" name="travelTime">
- <a-range-picker v-model:value="searchFormState.travelTime" show-time allow-clear/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="出发港口" name="fromPort">
- <a-select v-model:value="searchFormState.fromPort" placeholder="请选择出发港口"
- :options="departurePortOptions" show-search allow-clear optionFilterProp="label"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="到达港口" name="toPort">
- <a-select v-model:value="searchFormState.toPort" placeholder="请选择到达港口"
- :options="arrivingPortOptions" show-search allow-clear optionFilterProp="label"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="查验状态" name="checkStatus">
- <a-select v-model:value="searchFormState.checkStatus" placeholder="请选择查验状态"
- :options="checkStatusOptions" show-search allow-clear optionFilterProp="label"/>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-button type="primary" @click="onSearch()">查询</a-button>
- <a-button style="margin: 0 8px" @click="reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- <s-table
- ref="tableRef"
- :columns="columns"
- :data="loadData"
- bordered
- :row-key="(record) => record.id"
- :tool-config="toolConfig"
- v-model:filterParam="filterParam"
- :scroll="{ x: 2000 }"
- >
- <template #bodyCell="{ column, record }">
- <template v-if="column.dataIndex === 'gender'">
- {{ $TOOL.dictTypeData('lvke_sex', record.gender) }}
- </template>
- <template v-if="column.dataIndex === 'nationality'">
- {{ $TOOL.dictTypeData('lvke_city', record.nationality) }}
- </template>
- <template v-if="column.dataIndex === 'fromPort'">
- {{ $TOOL.dictTypeData('lvke_departurePort', record.fromPort) }}
- </template>
- <template v-if="column.dataIndex === 'toPort'">
- {{ $TOOL.dictTypeData('lvke_arrivingPort', record.toPort) }}
- </template>
- <template v-if="column.dataIndex === 'checkInstruction'">
- <a @click="ref_method.onOpen(record)">
- {{ $TOOL.dictTypeData('lvke_checkMethod', record.checkInstruction) }}
- </a>
- </template>
- <template v-if="column.dataIndex === 'checkStatus'">
- <template v-if="record.checkStatus != 0">
- <a @click="ref_detail.onOpen(record)">{{ $TOOL.dictTypeData('lvke_checkStatus', record.checkStatus) }}</a>
- </template>
- <template v-else>
- {{ $TOOL.dictTypeData('lvke_checkStatus', record.checkStatus) }}
- </template>
- </template>
- </template>
- </s-table>
- </a-card>
- <Detail ref="ref_detail"/>
- <Method ref="ref_method"/>
- </template>
- <script setup name="demo2">
- import tool from '@/utils/tool'
- import {cloneDeep} from 'lodash-es'
- import Detail from './detail.vue'
- import Method from './method.vue'
- import basicApi from '@/api/gsc/basic'
- const {proxy} = getCurrentInstance()
- const searchFormState = ref({})
- const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
- const searchFormRef = ref()
- const tableRef = ref()
- const filterParam = ref({})
- const ref_detail = ref()
- const ref_method = ref()
- const toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
- const columns = [
- {
- title: '姓名',
- dataIndex: 'name',
- },
- {
- title: '性别',
- dataIndex: 'gender',
- },
- {
- title: '身份证号',
- dataIndex: 'idNo',
- },
- {
- title: '国籍',
- dataIndex: 'nationality',
- },
- {
- title: '居住地',
- dataIndex: 'address',
- },
- {
- title: '年龄',
- dataIndex: 'age',
- },
- {
- title: '车次/航班号',
- dataIndex: 'travelNo',
- },
- {
- title: '航/车次(班)日期',
- dataIndex: 'travelTime',
- },
- {
- title: '出发港口',
- dataIndex: 'fromPort',
- },
- {
- title: '到达港口',
- dataIndex: 'toPort',
- },
- {
- title: '查验指令',
- dataIndex: 'checkInstruction',
- align: 'center',
- width: 100,
- fixed: 'right',
- },
- {
- title: '查验状态',
- dataIndex: 'checkStatus',
- align: 'center',
- width: 100,
- fixed: 'right',
- },
- ]
- const selectedRowKeys = ref([])
- // 列表选择配置
- const options = {
- // columns数字类型字段加入 needTotal: true 可以勾选自动算账
- alert: {
- show: true,
- clear: () => {
- selectedRowKeys.value = ref([])
- }
- },
- rowSelection: {
- onChange: (selectedRowKey, selectedRows) => {
- selectedRowKeys.value = selectedRowKey
- }
- }
- }
- const loadData = (parameter) => {
- if (searchFormStateReal.value.travelTime?.length > 0) {
- searchFormStateReal.value.travelTimeStart = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[0])
- searchFormStateReal.value.travelTimeEnd = proxy.$util.YMDHms(searchFormStateReal.value.travelTime[1])
- delete searchFormStateReal.value.travelTime
- }
- return basicApi.passengerInfoPage(Object.assign(parameter, searchFormStateReal.value, {queryType: 2})).then((data) => {
- return data
- })
- }
- // 搜索同时备份参数
- const onSearch = (parameter) => {
- searchFormStateReal.value = cloneDeep(searchFormState.value)
- tableRef.value.refresh(parameter)
- }
- // 重置
- const reset = () => {
- searchFormRef.value.resetFields()
- onSearch(true)
- }
- const sexOptions = tool.dictList('lvke_sex')
- const cityOptions = tool.dictList('lvke_city')
- const departurePortOptions = tool.dictList('lvke_departurePort')
- const arrivingPortOptions = tool.dictList('lvke_arrivingPort')
- const checkStatusOptions = tool.dictList('lvke_checkStatus')
- </script>
|