CzRger 4 months ago
parent
commit
0de2902792

+ 1 - 1
snowy-admin-web/src/views/gsc/basic/detail.vue

@@ -136,7 +136,7 @@ const onOpen = (record, view = false) => {
 }
 // 关闭抽屉
 const onClose = () => {
-	// formRef.value?.resetFields()
+	// ref_detail.value?.resetFields()
 	formData.value = {}
 	open.value = false
 }

+ 6 - 6
snowy-admin-web/src/views/gsc/basic/index.vue

@@ -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="姓名">
@@ -79,13 +79,13 @@
         </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"/>
 </template>
 
 <script setup name="demo2">
@@ -98,10 +98,10 @@ 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 toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
 const columns = [
   {
@@ -184,7 +184,7 @@ const onSearch = (parameter) => {
 }
 // 重置
 const reset = () => {
-  searchFormRef.value.resetFields()
+  searchref_detail.value.resetFields()
   onSearch(true)
 }
 // 删除

+ 1 - 1
snowy-admin-web/src/views/gsc/check/detail.vue

@@ -136,7 +136,7 @@ const onOpen = (record, view = false) => {
 }
 // 关闭抽屉
 const onClose = () => {
-	// formRef.value?.resetFields()
+	// ref_detail.value?.resetFields()
 	formData.value = {}
 	open.value = false
 }

+ 34 - 24
snowy-admin-web/src/views/gsc/check/index_all.vue

@@ -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>

+ 89 - 0
snowy-admin-web/src/views/gsc/check/method.vue

@@ -0,0 +1,89 @@
+<template>
+	<a-modal
+		v-model:open="open"
+		title="查验指令详情"
+		centered
+		width="60%"
+	>
+		<div class="goods-detail">
+      <div class="__cus-title_1">查验指令</div>
+      <a-form :model="formData">
+        <a-row :gutter="16">
+          <a-col :span="12">
+            <a-form-item label="指令编号">
+              <a-input v-model:value="formData.reWarehouseNumber" :disabled="true"/>
+            </a-form-item>
+          </a-col>
+          <a-col :span="12">
+            <a-form-item label="发布时间">
+              <a-select v-model:value="formData.reWarehouseNumber" :disabled="true"
+                        :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
+            </a-form-item>
+          </a-col>
+          <a-col :span="12">
+            <a-form-item label="查验地点">
+              <a-select v-model:value="formData.reWarehouseNumber" :disabled="true"
+                        :options="cityOptions" show-search allow-clear optionFilterProp="label"/>
+            </a-form-item>
+          </a-col>
+        </a-row>
+      </a-form>
+      <div class="__cus-title_1">查验要求</div>
+      <a-form :model="formData">
+        <a-row :gutter="16">
+          <a-col :span="12">
+            <a-form-item label="查验方式">
+              <a-select v-model:value="formData.reWarehouseNumber" :disabled="true"
+                        :options="checkMethodOptions" show-search allow-clear optionFilterProp="label"/>
+            </a-form-item>
+          </a-col>
+          <a-col :span="12">
+            <a-form-item label="查验目的">
+              <a-input v-model:value="formData.reWarehouseNumber" :disabled="true"/>
+            </a-form-item>
+          </a-col>
+        </a-row>
+      </a-form>
+		</div>
+		<template #footer></template>
+	</a-modal>
+</template>
+
+<script setup name="enterpriseDetail">
+import tool from '@/utils/tool'
+import {cloneDeep} from 'lodash-es'
+import qyOutWarehouseApi from "@/api/yqyc/qyOutWarehouseApi";
+// 抽屉状态
+const open = ref(false)
+const emit = defineEmits({successful: null})
+// 表单数据
+const formData = ref({})
+
+// 打开抽屉
+const onOpen = (record, view = false) => {
+	open.value = true
+	// if (record) {
+	// 	qyOutWarehouseApi.qyOutWarehousePage({warehouseNumber: record.warehouseNumber}).then(res => {
+	// 		formData.value = Object.assign({}, res)
+	// 	})
+	// }
+}
+// 关闭抽屉
+const onClose = () => {
+	// ref_detail.value?.resetFields()
+	formData.value = {}
+	open.value = false
+}
+const checkMethodOptions = tool.dictList('lvke_checkMethod')
+// 抛出函数
+defineExpose({
+	onOpen
+})
+</script>
+<style lang="less" scoped>
+.goods-detail {
+	max-height: 800px;
+	overflow-y: auto;
+	overflow-x: hidden;
+}
+</style>

+ 1 - 1
snowy-admin-web/src/views/gsc/pass-statistic/detail.vue

@@ -136,7 +136,7 @@ const onOpen = (record, view = false) => {
 }
 // 关闭抽屉
 const onClose = () => {
-	// formRef.value?.resetFields()
+	// ref_detail.value?.resetFields()
 	formData.value = {}
 	open.value = false
 }

+ 6 - 6
snowy-admin-web/src/views/gsc/pass-statistic/index.vue

@@ -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="姓名">
@@ -79,13 +79,13 @@
         </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" @successful="onSearch()"/>
 </template>
 
 <script setup name="demo2">
@@ -98,10 +98,10 @@ 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 toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
 const columns = [
   {
@@ -184,7 +184,7 @@ const onSearch = (parameter) => {
 }
 // 重置
 const reset = () => {
-  searchFormRef.value.resetFields()
+  searchref_detail.value.resetFields()
   onSearch(true)
 }
 // 删除

+ 1 - 1
snowy-admin-web/src/views/gsc/pass/detail.vue

@@ -136,7 +136,7 @@ const onOpen = (record, view = false) => {
 }
 // 关闭抽屉
 const onClose = () => {
-	// formRef.value?.resetFields()
+	// ref_detail.value?.resetFields()
 	formData.value = {}
 	open.value = false
 }

+ 6 - 6
snowy-admin-web/src/views/gsc/pass/index.vue

@@ -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="姓名">
@@ -79,13 +79,13 @@
         </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"/>
 </template>
 
 <script setup name="demo2">
@@ -98,10 +98,10 @@ 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 toolConfig = {refresh: true, height: true, columnSetting: true, striped: false}
 const columns = [
   {
@@ -184,7 +184,7 @@ const onSearch = (parameter) => {
 }
 // 重置
 const reset = () => {
-  searchFormRef.value.resetFields()
+  searchref_detail.value.resetFields()
   onSearch(true)
 }
 // 删除