|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<a-card :bordered="false">
|
|
|
- <a-form ref="searchFormRef" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
|
|
|
+ <a-form ref="searchref_detail" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="6">
|
|
|
<a-form-item label="姓名">
|
|
@@ -8,12 +8,6 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
- <a-form-item label="性别">
|
|
|
- <a-select v-model:value="searchFormState.accountType" placeholder="请选择性别"
|
|
|
- :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
<a-form-item label="身份证号">
|
|
|
<a-input v-model:value="searchFormState.name" placeholder="请输入身份证号" allow-clear/>
|
|
|
</a-form-item>
|
|
@@ -30,6 +24,12 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
+ <a-form-item label="性别">
|
|
|
+ <a-select v-model:value="searchFormState.accountType" placeholder="请选择性别"
|
|
|
+ :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="6">
|
|
|
<a-form-item label="车次/航班号">
|
|
|
<a-input v-model:value="searchFormState.name" placeholder="请输入车次/航班号" allow-clear/>
|
|
|
</a-form-item>
|
|
@@ -40,12 +40,6 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
- <a-form-item label="是否携带行李物品">
|
|
|
- <a-select v-model:value="searchFormState.accountType" placeholder="请选择是否携带行李物品"
|
|
|
- :options="isNoOptions" show-search allow-clear optionFilterProp="label"/>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
<a-form-item label="出发港口">
|
|
|
<a-select v-model:value="searchFormState.accountType" placeholder="请选择出发港口"
|
|
|
:options="departurePortOptions" show-search allow-clear optionFilterProp="label"/>
|
|
@@ -58,6 +52,12 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
+ <a-form-item label="查验状态">
|
|
|
+ <a-select v-model:value="searchFormState.accountType" 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>
|
|
@@ -77,31 +77,37 @@
|
|
|
<template v-if="column.dataIndex === 'sex'">
|
|
|
{{ $TOOL.dictTypeData('lvke_sex', record.sex) }}
|
|
|
</template>
|
|
|
+ <template v-if="column.dataIndex === 'cyzl'">
|
|
|
+ <a @click="ref_method.onOpen(record)">查看查验指令</a>
|
|
|
+ </template>
|
|
|
<template v-if="column.dataIndex === 'action'">
|
|
|
<a-space>
|
|
|
- <a @click="formRef.onOpen(record)">查看</a>
|
|
|
+ <a @click="ref_detail.onOpen(record)">查看</a>
|
|
|
</a-space>
|
|
|
</template>
|
|
|
</template>
|
|
|
</s-table>
|
|
|
</a-card>
|
|
|
- <Detail ref="formRef" @successful="onSearch()"/>
|
|
|
+ <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 demo2Api from '@/api/biz/demo2Api'
|
|
|
import downloadUtil from "@/utils/downloadUtil";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
const searchFormState = ref({})
|
|
|
const searchFormStateReal = ref({}) // 点击搜索后备份的查询参数
|
|
|
-const searchFormRef = ref()
|
|
|
+const searchref_detail = ref()
|
|
|
const tableRef = ref()
|
|
|
const filterParam = ref({})
|
|
|
-const formRef = ref()
|
|
|
+const ref_detail = ref()
|
|
|
+const ref_method = ref()
|
|
|
const toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
|
|
|
const columns = [
|
|
|
{
|
|
@@ -125,6 +131,10 @@ const columns = [
|
|
|
dataIndex: 'p1',
|
|
|
},
|
|
|
{
|
|
|
+ title: '年龄',
|
|
|
+ dataIndex: 'p1',
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '车次/航班号',
|
|
|
dataIndex: 'p2',
|
|
|
},
|
|
@@ -133,10 +143,6 @@ const columns = [
|
|
|
dataIndex: 'p3',
|
|
|
},
|
|
|
{
|
|
|
- title: '是否携带行李物品',
|
|
|
- dataIndex: 'p4',
|
|
|
- },
|
|
|
- {
|
|
|
title: '出发港口',
|
|
|
dataIndex: 'p5',
|
|
|
},
|
|
@@ -145,7 +151,11 @@ const columns = [
|
|
|
dataIndex: 'p6',
|
|
|
},
|
|
|
{
|
|
|
- title: '座位号',
|
|
|
+ title: '查验指令',
|
|
|
+ dataIndex: 'cyzl',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '查验状态',
|
|
|
dataIndex: 'p7',
|
|
|
},
|
|
|
{
|
|
@@ -184,7 +194,7 @@ const onSearch = (parameter) => {
|
|
|
}
|
|
|
// 重置
|
|
|
const reset = () => {
|
|
|
- searchFormRef.value.resetFields()
|
|
|
+ searchref_detail.value.resetFields()
|
|
|
onSearch(true)
|
|
|
}
|
|
|
// 删除
|
|
@@ -227,7 +237,7 @@ const onExport = () => {
|
|
|
const sexOptions = tool.dictList('lvke_sex')
|
|
|
// const cityOptions = tool.dictList('lvke_city')
|
|
|
const cityOptions = []
|
|
|
-const isNoOptions = tool.dictList('lvke_isNo')
|
|
|
const departurePortOptions = tool.dictList('lvke_departurePort')
|
|
|
const arrivingPortOptions = tool.dictList('lvke_arrivingPort')
|
|
|
+const checkStatusOptions = tool.dictList('lvke_checkStatus')
|
|
|
</script>
|