CzRger 3 months ago
parent
commit
69e3ebf620

+ 3 - 0
src/assets/svg/money.svg

@@ -0,0 +1,3 @@
+<svg width="19" height="24" viewBox="0 0 19 24" xmlns="http://www.w3.org/2000/svg">
+<path id="&#194;&#165;" d="M18.5 0.658203L14.1673 9.25997H16.5248V12.4458H12.5425L11.7142 14.0387V15.6635H16.5248V18.8494H11.7142V23.3414H7.3177V18.8494H2.47522V15.6635H7.3177V14.0387L6.48938 12.4458H2.47522V9.25997H4.8646L0.5 0.658203H5.31062L9.51593 9.83342L13.7212 0.658203H18.5Z"/>
+</svg>

+ 6 - 6
src/components/cus/CusButton.vue

@@ -8,32 +8,32 @@
     </template>
     <template v-else-if="type == 'export'">
       <div class="cus-button __hover">
-        <svg-icon icon-class="export" color="var(--cus-main-color)" size="12"/>{{title || '导出'}}
+        <SvgIcon name="export" color="var(--cus-main-color)" size="12"/>{{title || '导出'}}
       </div>
     </template>
     <template v-else-if="type == 'add'">
       <div class="cus-button __hover">
-        <svg-icon icon-class="add_2" color="var(--cus-main-color)" size="12"/>{{title || '新增'}}
+        <SvgIcon name="add_2" color="var(--cus-main-color)" size="12"/>{{title || '新增'}}
       </div>
     </template>
     <template v-else-if="type == 'import'">
       <div class="cus-button __hover">
-        <svg-icon icon-class="import" color="var(--cus-main-color)" size="12"/>{{title || '导入'}}
+        <SvgIcon name="import" color="var(--cus-main-color)" size="12"/>{{title || '导入'}}
       </div>
     </template>
     <template v-else-if="type == 'copy'">
       <div class="cus-button __hover">
-        <svg-icon icon-class="copy" color="var(--cus-main-color)" size="12"/>{{title || '复制'}}
+        <SvgIcon name="copy" color="var(--cus-main-color)" size="12"/>{{title || '复制'}}
       </div>
     </template>
     <template v-else-if="type == 'del'">
       <div class="cus-button __hover del">
-        <svg-icon :icon-class="icon || 'del'" color="#FF5454" size="12"/>{{title || '删除'}}
+        <SvgIcon :name="icon || 'del'" color="#FF5454" size="12"/>{{title || '删除'}}
       </div>
     </template>
     <template v-else>
       <div class="cus-button __hover">
-        <svg-icon v-if="icon" :icon-class="icon" color="var(--cus-main-color)" size="12"/>{{ title }}
+        <SvgIcon v-if="icon" :name="icon" color="var(--cus-main-color)" size="12"/>{{ title }}
       </div>
     </template>
   </div>

+ 12 - 12
src/components/cus/CusContent.vue

@@ -21,27 +21,27 @@
         </div>
         <div class="filters" v-if="noFilter === false">
           <div class="tools __hover" @click="showFieldColumn = true">
-            <svg-icon icon-class="cus-content_tools" size="18" color="#666666"/>
+            <SvgIcon name="cus-content_tools" size="18" color="#666666"/>
           </div>
 <!--          <el-dropdown :teleported="false">-->
 <!--            <div class="tools __hover">-->
-<!--              <svg-icon icon-class="cus-content_tools" size="18" color="#666666"/>-->
+<!--              <SvgIcon name="cus-content_tools" size="18" color="#666666"/>-->
 <!--            </div>-->
 <!--            <template #dropdown>-->
 <!--              <el-dropdown-menu>-->
 <!--                <el-dropdown-item @click="showFieldIn = true" v-if="$slots.fieldIn" style="width: 170px;">-->
 <!--                  <div class="tools-item">-->
-<!--                    <svg-icon icon-class="cus-content_field-in" size="18"/>高级筛选-->
+<!--                    <svg-icon name="cus-content_field-in" size="18"/>高级筛选-->
 <!--                  </div>-->
 <!--                </el-dropdown-item>-->
 <!--                <el-dropdown-item @click="showFieldColumn = true">-->
 <!--                  <div class="tools-item">-->
-<!--                    <svg-icon icon-class="cus-content_field-column" size="18"/>字段筛选-->
+<!--                    <svg-icon name="cus-content_field-column" size="18"/>字段筛选-->
 <!--                  </div>-->
 <!--                </el-dropdown-item>-->
 <!--                <el-dropdown-item>-->
 <!--                  <div class="tools-item" @click="showContentFixed = true">-->
-<!--                    <svg-icon icon-class="cus-content_field-fixed" size="18"/>冻结窗格-->
+<!--                    <svg-icon name="cus-content_field-fixed" size="18"/>冻结窗格-->
 <!--                  </div>-->
 <!--                </el-dropdown-item>-->
 <!--              </el-dropdown-menu>-->
@@ -66,7 +66,7 @@
     >
       <template #header>
         <span>高级筛选设置</span>
-        <svg-icon class="__hover" icon-class="close_2" size="16" @click="showFieldIn = false"/>
+        <SvgIcon class="__hover" name="close_2" size="16" @click="showFieldIn = false"/>
       </template>
       <div class="field-in-slot">
         <slot name="fieldIn"/>
@@ -88,7 +88,7 @@
     >
       <template #header>
         <span>字段筛选设置</span>
-        <svg-icon class="__hover" icon-class="close_2" size="16" @click="showFieldColumn = false"/>
+        <SvgIcon class="__hover" name="close_2" size="16" @click="showFieldColumn = false"/>
       </template>
       <div class="field-column">
         <div class="fc-block fc-all">
@@ -97,7 +97,7 @@
             <div class="fcbc-filter">
               <el-input v-model="columnAllInputFilter" placeholder="请输入关键词..." clearable>
                 <template #suffix>
-                  <svg-icon icon-class="search"/>
+                  <SvgIcon name="search"/>
                 </template>
               </el-input>
             </div>
@@ -123,16 +123,16 @@
             <div class="fcbc-filter">
               <el-input v-model="columnSelectInputFilter" placeholder="请输入关键词..." clearable>
                 <template #suffix>
-                  <svg-icon icon-class="search"/>
+                  <SvgIcon name="search"/>
                 </template>
               </el-input>
             </div>
             <div class="fcbc-list">
               <template v-for="(item, index) in tableHeadTempDeep.filter(v => v.show && v.allLabel.includes(columnSelectInputFilter))" :key="item.allLabel">
                 <div class="table-head-select-item">
-                  <svg-icon icon-class="cus-content_field-column-select" size="12" color="#e4e4e4"/>
+                  <SvgIcon name="cus-content_field-column-select" size="12" color="#e4e4e4"/>
                   <CusEllipsis class="label" :value="item.allLabel"/>
-                  <svg-icon class="__hover" icon-class="close_2" size="12" color="#e4e4e4" @click="item.show = false"/>
+                  <SvgIcon class="__hover" name="close_2" size="12" color="#e4e4e4" @click="item.show = false"/>
                 </div>
               </template>
             </div>
@@ -160,7 +160,7 @@
     >
       <template #header>
         <span>表格冻结</span>
-        <svg-icon class="__hover" icon-class="close_2" size="16" @click="showContentFixed = false"/>
+        <SvgIcon class="__hover" name="close_2" size="16" @click="showContentFixed = false"/>
       </template>
       <div class="content-fixed">
         <div class="cf-item">

+ 2 - 2
src/components/cus/CusDialog.vue

@@ -27,7 +27,7 @@
           <slot name="head"/>
         </div>
         <div class="__cdh-close __hover" @click="CDClose()">
-          <svg-icon icon-class="close" size="16" color="#303133"/>
+          <SvgIcon name="close_3" size="16" color="#ffffff"/>
         </div>
       </div>
     </template>
@@ -76,7 +76,7 @@ export default defineComponent({
     width: {default: '50%'},
     full: {default: false},
     submitText: {default: '确定'},
-    closeText: {default: '取消'},
+    closeText: {default: '关闭'},
     showClose: {default: true},
     showSubmit: {default: true},
     footAlign: {default: 'center'},

+ 4 - 2
src/components/cus/CusFormColumn.vue

@@ -1,12 +1,13 @@
 /<template>
   <el-col class="cus-form-column" :class="{
+    'is-view': formView,
     span1: filterSpan == 1,
     span2: filterSpan == 2,
     span3: filterSpan == 3,
     span4: filterSpan == 4,
     span5: filterSpan == 5,
   }" :span="span" :offset="offset" ref="ref_cusFormColumn">
-    <el-form-item :label="label" :label-width="labelWidth" :class="{
+    <el-form-item :label="label + ':'" :label-width="labelWidth" :class="{
       ['link_' + link + ($attrs.type ? '_' + $attrs.type : '')]: true,
       required: required !== false,
       'no-label': (labelWidth == 0 || labelWidth === '0px') && !$util.isValue(label) && !$slots.label,
@@ -275,7 +276,8 @@ export default defineComponent({
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
     const state = reactive({
       errorMessage: null,
-      uuid: ''
+      uuid: '',
+      formView: inject('form-view', false),
     })
     const ref_cusFormColumn: any = ref(null)
     const isValue = (val: any) => {

+ 1 - 1
src/components/cus/CusSearchButtons.vue

@@ -4,7 +4,7 @@
     <div class="reset __hover" @click="$emit('handleReset')">重 置</div>
     <div class="expand __hover" v-if="expandValue !== null" @click="$emit('update:expandValue', !expandValue)">
       {{expandValue ? '收起' : '展开'}}
-      <svg-icon icon-class="arrow_2" size="14" :rotate="expandValue ? 270 : 90"/>
+      <SvgIcon name="arrow_2" size="14" :rotate="expandValue ? 270 : 90"/>
     </div>
   </div>
 </template>

+ 21 - 1
src/components/cus/CusTab.vue

@@ -36,7 +36,7 @@ export default defineComponent({
     labelKey: {default: 'name'},
     valueKey: {default: 'value'},
     type: {default: 'type1', validator(val: string) {
-      return ['type1', 'type2'].includes(val)
+      return ['type1', 'type2', 'type3'].includes(val)
     }},
   },
   setup(props, {emit}) {
@@ -108,6 +108,26 @@ export default defineComponent({
         }
       }
     }
+    &.cus-tab-type3 {
+      .cus-tab-item {
+        height: 32px;
+        border: 1px solid #6EAEFF;
+        border-left-width: 0;
+        font-weight: 400;
+        font-size: 14px;
+        color: #FFFFFF;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        padding: 0 22px;
+        &:first-child {
+          border-left-width: 1px;
+        }
+        &.active {
+          background-color: #266EFF;;
+        }
+      }
+    }
     .cus-tab-slot {
       margin-left: auto;
     }

+ 17 - 3
src/components/cus/CusTable.vue

@@ -1,6 +1,14 @@
 <template>
-  <div class="cus-table" :class="{'cus-table-normal': !otherStyle, 'cus-table-full': full !== false}" ref="ref_cusTable">
-    <div class="cus-table-main" ref="ref_tableMain" :class="{'cus-table-main-no-foot': noFoot !== false}">
+  <div class="cus-table" :class="{
+    'cus-table-normal': !otherStyle,
+    'cus-table-full': full !== false,
+    'cus-table-auto-height': maxHeight > 0,
+  }" :style="{
+    maxHeight: maxHeight > 0 ? `${maxHeight}px` : '',
+  }" ref="ref_cusTable">
+    <div class="cus-table-main" ref="ref_tableMain" :class="{
+      'cus-table-main-no-foot': noFoot !== false,
+    }">
       <el-table
         v-if="dragRefresh"
         v-bind="$attrs"
@@ -14,7 +22,7 @@
       >
         <el-table-column v-if="dragable" :width="50" align="center" fixed="left" prop="drag">
           <template #default="scope">
-            <svg-icon class="__hover drag-icon" icon-class="move" color="#000000"/>
+            <SvgIcon class="__hover drag-icon" name="move" color="#000000"/>
           </template>
         </el-table-column>
         <el-table-column v-if="selected" type="selection" :width="selectWidth" align="center" :selectable="selectable"/>
@@ -238,6 +246,7 @@ export default defineComponent({
       default: false
     },
     dragable: {},
+    maxHeight: {default: 0}
   },
   setup(props, { emit }) {
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
@@ -551,6 +560,11 @@ export default defineComponent({
       margin-top: $cus-page-mt;
     }
   }
+  &.cus-table-auto-height {
+    .cus-table-main {
+      position: unset;
+    }
+  }
 }
 
 :deep(.single-column) {

+ 3 - 0
src/components/cus/CusTableColumn.vue

@@ -38,6 +38,9 @@
 </template>
 
 <script setup lang="ts">
+defineOptions({
+  name: 'CusTableColumn',
+});
 import {getCurrentInstance, reactive} from "vue";
 
 const {proxy} = getCurrentInstance()

+ 85 - 16
src/style/cus.scss

@@ -106,16 +106,15 @@
         padding: 0;
         margin: 0;
         ._cus-dialog-head {
-          height: 50px;
+          height: 56px;
           width: 100%;
-          background-color: var(--cus-main-color);
+          background: #1350A5;
           display: flex;
           align-items: center;
           border-radius: $borderRadius $borderRadius 0 0 ;
-          font-size: 18px;
-          font-family: PingFang SC-Medium, PingFang SC;
           font-weight: 500;
-          color: #ffffff;
+          font-size: 18px;
+          color: #FFFFFF;
           padding: 0 20px 0 16px;
           box-sizing: border-box;
           .__cdh-title {}
@@ -126,6 +125,7 @@
         }
       }
       .el-dialog__body {
+        background-color: #062A5C;
         padding: 0;
         height: calc(100% - 50px);
         width: 100%;
@@ -145,31 +145,27 @@
             display: flex;
             align-items: center;
             box-sizing: border-box;
+            gap: 10px;
             >div {
-              margin-right: 10px;
-              height: 28px;
+              height: 32px;
               border-radius: 4px;
-              padding: 0 14px;
+              padding: 0 26px;
               line-height: 1;
-              font-size: 14px;
-              font-family: Microsoft YaHei;
               font-weight: 400;
+              font-size: 14px;
+              color: #FFFFFF;
               display: flex;
               align-items: center;
               justify-content: center;
               box-sizing: border-box;
-              &:last-child {
-                margin-right: 0;
-              }
             }
             .__cus-dialog-foot_submit {
               background: var(--cus-main-color);
               color: #FFFFFF;
             }
             .__cus-dialog-foot_cancel {
-              background: #F8F8F8;
-              border: 1px solid #E4E4E4;
-              color: var(--cus-text-color-3);
+              background: var(--cus-main-color);
+              color: #FFFFFF;
             }
           }
           &.isFull {
@@ -365,4 +361,77 @@
       }
     }
   }
+}
+
+.cus-form-column.is-view {
+  .el-form-item {
+    .el-form-item__label {
+      font-weight: 400 !important;
+      font-size: 14px !important;
+      color: #FFFFFF !important;
+      height: 36px;
+    }
+    .el-form-item__content {
+      .el-input__wrapper {
+        background-color: transparent !important;
+        box-shadow: none !important;
+        padding-top: 0 !important;
+        padding-bottom: 0 !important;
+        border-bottom: 1px solid rgba(110,174,255,0.2);
+        border-radius: 0;
+        .el-input__inner {
+          font-weight: 400 !important;
+          font-size: 14px !important;
+          -webkit-text-fill-color: rgba(255,255,255,0.6) !important;
+          height: 36px;
+        }
+      }
+    }
+  }
+}
+
+.cus-table {
+  .el-table {
+    background-color: transparent !important;
+  }
+  .el-table__header-wrapper, .el-table__fixed-right, .el-table__fixed {
+    .el-table__header {
+      tr {
+        >th {
+          border-right: none;
+          border-bottom: none;
+          background-color: #122D53 !important;
+          height: 54px !important;
+          border-color: #05224A !important;
+          .cell {
+            font-weight: 500 !important;
+            font-size: 14px !important;
+            color: #FFFFFF !important;
+          }
+        }
+      }
+    }
+  }
+  .el-table__body-wrapper, .el-table__fixed-body-wrapper {
+    .el-scrollbar {
+      .el-table__body {
+        .el-table__row {
+          background-color: transparent !important;
+          >td {
+            border-right: none;
+            background-color: transparent !important;
+            border-bottom-color: rgba(255, 255, 255, 0.12) !important;
+            .cell {
+              height: 54px;
+              display: flex;
+              align-items: center;
+              justify-content: center;
+              color: #a5aebe !important;
+              white-space: break-spaces !important;
+            }
+          }
+        }
+      }
+    }
+  }
 }

+ 1 - 1
src/style/webkit-scrollbar.scss

@@ -1,4 +1,4 @@
 ::-webkit-scrollbar { width: 4px; height: 6px; }
 ::-webkit-scrollbar-track { width: 4px; background-color: transparent;-webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; }
-::-webkit-scrollbar-thumb { background-color: rgba(1, 15, 58, 0.2); background-clip: padding-box; min-height: 28px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; }
+::-webkit-scrollbar-thumb { background-color: #2E4462; background-clip: padding-box; min-height: 28px; -webkit-border-radius: 2em; -moz-border-radius: 2em; border-radius: 2em; }
 ::-webkit-scrollbar-thumb:hover { background-color: rgba(1, 15, 58, 0.3); }

+ 16 - 2
src/views/screen/kouan-run-monitor/bus-index.vue

@@ -54,7 +54,7 @@
               <div class="__block-content">
                 <div class="list">
                   <template v-for="item in state.checkParams.data">
-                    <div class="list-item">
+                    <div class="list-item __hover" @click="onView(item)">
                       <div class="img">
                         <img src="./img/run-status-normal.png"/>
                       </div>
@@ -315,6 +315,7 @@
         </div>
       </div>
     </div>
+    <detailCom v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
   </div>
 </template>
 
@@ -323,6 +324,7 @@ import {computed, getCurrentInstance, reactive} from "vue";
 import headCom from './components/head.vue'
 import cardNumber from '@/views/screen/components/card-number/index.vue'
 import pieChart from './components/pie.vue'
+import detailCom from './detail.vue'
 
 const {proxy} = getCurrentInstance()
 const state: any = reactive({
@@ -369,6 +371,10 @@ const state: any = reactive({
     pageSize: 4,
     total: 100,
     data: [{},{},{},{}]
+  },
+  detail: {
+    show: false,
+    transfer: {}
   }
 })
 const businessTotalCpt = computed(() => {
@@ -384,6 +390,12 @@ const onVideoPage = (val) => {
 const onCheckPage = (val) => {
   state.checkParams.pageNum = val
 }
+const onView = (row) => {
+  state.detail.transfer = {
+    mode: 'view'
+  }
+  state.detail.show = true
+}
 </script>
 
 <style lang="scss" scoped>
@@ -555,10 +567,12 @@ const onCheckPage = (val) => {
                   flex-direction: column;
                   align-items: flex-end;
                   justify-content: flex-end;
-                  font-family: YouSheBiaoTiHei;
                   font-weight: 400;
                   font-size: 30px;
                   color: #21EDFF;
+                  >div {
+                    font-family: YouSheBiaoTiHei;
+                  }
                   >img {
                     width: 50px;
                     height: 12px;

+ 548 - 0
src/views/screen/kouan-run-monitor/detail.vue

@@ -0,0 +1,548 @@
+<template>
+  <CusDialog
+    :show="show"
+    :title="titleCpt"
+    @onClose="$emit('update:show', false)"
+    width="1300px"
+    height="auto"
+    :loading="state.loading"
+    :closeConfirm="noViewCpt"
+    :show-submit="noViewCpt"
+  >
+    <div class="__normal-form">
+      <CusTab
+        :tabs="[
+          { name: '物品申报', value: 1 },
+          { name: '购票信息', value: 2 },
+          { name: '采集信息', value: 3 },
+          { name: '海关放行指令', value: 4 },
+          { name: '离岛信息', value: 5 },
+        ]"
+        type="type3"
+        v-model:param="state.tab"
+      />
+      <CusForm ref="ref_form" label-width="120px" :form-view="!noViewCpt">
+        <template v-if="state.tab == 1">
+          <div class="block block-1">
+            <div class="form">
+              <div class="left">
+                <div class="block-title">
+                  <div>王三石</div>
+                  <div>120120120120120120</div>
+                </div>
+                <CusFormColumn
+                  :span="24"
+                  label="航次(班)"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="24"
+                  label="出岛口岸"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="24"
+                  label="航次(班)日期"
+                  v-model:param="state.form.p1"
+                />
+              </div>
+              <div class="right">
+                <img src="./img/shui.png"/>
+                <div class="infos">
+                  <div>需补税费:</div>
+                  <div>
+                    <SvgIcon name="money" color="#ffffff"/>
+                    <div class="money">5498.32</div>
+                    <div>元</div>
+                  </div>
+                  <div>
+                    <div>申报时间:</div>2024-12-12 11:12:23
+                  </div>
+                  <div>
+                    <div>海关回执时间:</div>2024-12-12 11:12:23
+                  </div>
+                </div>
+              </div>
+            </div>
+            <div class="len">有价物品:{{state.query.result.data.length}}件</div>
+            <CusTable
+              class="auto-table"
+              :table-data="state.query.result.data"
+              :table-head="state.query.tableHead"
+              :no-foot="true"
+              :max-height="400"
+            >
+            </CusTable>
+          </div>
+        </template>
+        <template v-else-if="state.tab == 2">
+          <div class="block block-2">
+            <div class="block-title">
+              <div>王三石</div>
+              <div>120120120120120120</div>
+            </div>
+            <el-row>
+              <CusFormColumn
+                :span="8"
+                label="车牌号"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="购票时间"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="船次信息"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="开航时间"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="抵航时间"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="开航港口"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="抵达港口"
+                v-model:param="state.form.p1"
+              />
+            </el-row>
+          </div>
+        </template>
+        <template v-else-if="state.tab == 3">
+          <div class="block block-3">
+            <div class="left">
+              <div class="block-title">
+                <div>王三石</div>
+                <div>120120120120120120</div>
+              </div>
+              <el-row>
+                <CusFormColumn
+                  :span="24"
+                  label="航次(班)"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="24"
+                  label="采集时间"
+                  v-model:param="state.form.p1"
+                />
+              </el-row>
+            </div>
+            <div class="right">
+              <div class="img"></div>
+              <div class="img"></div>
+            </div>
+          </div>
+        </template>
+        <template v-else-if="state.tab == 4">
+          <div class="block block-4">
+            <div class="block-title">
+              <div>琼A12345</div>
+            </div>
+            <el-row>
+              <CusFormColumn
+                :span="8"
+                label="时间"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="场站编号"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="通道编号"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="运输批次"
+                v-model:param="state.form.p1"
+              />
+              <CusFormColumn
+                :span="8"
+                label="处理结果"
+                v-model:param="state.form.p1"
+              />
+            </el-row>
+            <div class="status-foot">
+              <SvgIcon name="tips" size="24" color="rgba(255, 0, 46, 1)"/>
+              LED显示:需查验!
+            </div>
+            <div class="status-img">
+              <img src="./img/flag.png">
+            </div>
+          </div>
+        </template>
+        <template v-else-if="state.tab == 5">
+          <div class="block block-5">
+            <div class="left">
+              <div class="block-title">
+                <div>琼A12345</div>
+              </div>
+              <el-row>
+                <CusFormColumn
+                  :span="12"
+                  label="进港时间"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="12"
+                  label="离岛时间"
+                  v-model:param="state.form.p1"
+                />
+              </el-row>
+            </div>
+            <div class="right">
+              <div class="port">
+                <div>清澜港</div>
+                <img src="./img/bottom.png"/>
+              </div>
+              <div class="link">
+                <div>HN204</div>
+              </div>
+              <div class="port">
+                <div>清澜港</div>
+                <img src="./img/bottom.png"/>
+              </div>
+            </div>
+          </div>
+          <div class="block block-5">
+            <div class="left">
+              <div class="block-title">
+                <div>王三石</div>
+                <div>120120120120120</div>
+              </div>
+              <el-row>
+                <CusFormColumn
+                  :span="12"
+                  label="承运车车牌号"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="12"
+                  label="关联单证"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="12"
+                  label="承运船舶名称"
+                  v-model:param="state.form.p1"
+                />
+                <CusFormColumn
+                  :span="12"
+                  label="场所代码"
+                  v-model:param="state.form.p1"
+                />
+              </el-row>
+            </div>
+            <div class="right">
+              <div class="port">
+                <div>清澜港</div>
+                <img src="./img/bottom.png"/>
+                <div>2024-08-28 12:00:34</div>
+              </div>
+              <div class="link">
+                <div>HN204</div>
+              </div>
+              <div class="port">
+                <div>清澜港</div>
+                <img src="./img/bottom.png"/>
+                <div>2024-08-28 12:00:34</div>
+              </div>
+            </div>
+          </div>
+        </template>
+      </CusForm>
+    </div>
+  </CusDialog>
+</template>
+
+<script setup lang="ts">
+import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
+import {ElMessage, ElMessageBox} from "element-plus";
+
+const emit = defineEmits(['update:show', 'refresh'])
+const {proxy} = getCurrentInstance()
+const props = defineProps({
+  show: {default: false},
+  transfer: {}
+})
+const state: any = reactive({
+  tab: 1,
+  loading: false,
+  form: {},
+  query: {
+    loading: false,
+    tableHead: [
+      {value: "p1", label: "物品名称", show: true},
+      {value: "p1", label: "数量", show: true},
+      {value: "p1", label: "需补缴税费(元)", show: true},
+    ],
+    result: {
+      data: [{p1: '单肩包单肩包'},{p1: '单肩包单肩包单肩包单肩包单肩包单肩包单肩包单肩包单肩包单肩包单肩包单肩包'},{},{}]
+    }
+  },
+})
+const ref_form = ref()
+const titleCpt = computed(() => {
+  let t = '详情'
+  switch (props.transfer.mode) {
+    case 'view': t = '查看' + t
+      break
+  }
+  return t
+})
+const noViewCpt = computed(() => props.transfer?.mode !== 'view')
+watch(() => props.show, (n) => {
+  if (n) {
+    state.tab = 1
+    initDictionary()
+    state.form = {}
+    if (props.transfer.mode !== 'add') {
+      initData()
+    }
+    nextTick(() => {
+      ref_form.value.reset()
+    })
+  }
+})
+const initData = () => {
+  state.form = {
+    p1: '海口16号',
+  }
+}
+const initDictionary = () => {
+}
+</script>
+
+<style lang="scss" scoped>
+.__normal-form {
+  padding: 16px 24px 0 24px;
+  .block {
+    width: 100%;
+    background: rgba(0,0,0,0.2);
+    border-radius: 8px 8px 8px 8px;
+    margin-top: 16px;
+    padding: 24px;
+    overflow: hidden;
+    .block-title {
+      width: 100%;
+      height: 40px;
+      background: rgba(38,110,255,0.1);
+      border-radius: 4px 4px 4px 4px;
+      display: flex;
+      align-items: center;
+      padding-left: 16px;
+      gap: 12px;
+      font-weight: 400;
+      font-size: 16px;
+      color: #FFFFFF;
+      margin-bottom: 24px;
+      >:nth-child(1) {
+        font-weight: 500;
+        font-size: 18px;
+        color: #FFFFFF;
+      }
+      &:before {
+        content: '';
+        background-image: url("./img/title-icon.png");
+        background-size: 100% 100%;
+        width: 29px;
+        height: 15px;
+      }
+    }
+  }
+  .block-1 {
+    .form {
+      display: flex;
+      gap: 24px;
+      .left {
+        flex: 1;
+      }
+      .right {
+        width: 479px;
+        height: 204px;
+        background: linear-gradient( 180deg, rgba(0, 163, 255, 0.5) 0%, rgba(0, 71, 255, 0.5) 100%), radial-gradient( 10% 46% at 78% 86%, rgba(101, 152, 255, 0.1) 0%, rgba(12, 98, 216, 0.1) 24%, rgba(0,71,255,0) 100%), rgba(0,0,0,0.9);
+        box-shadow: inset 0px 0px 10px 0px #0085FF;
+        border-radius: 0px 0px 0px 0px;
+        border: 1px solid;
+        border-image: linear-gradient(180deg, rgba(0, 163, 255, 0), rgba(0, 102, 255, 0.3), rgba(0, 102, 255, 1)) 1 1;
+        display: flex;
+        align-items: center;
+        >img {
+          margin-left: 32px;
+          margin-right: 32px;
+          width: 99px;
+          height: 99px;
+        }
+        .infos {
+          >:nth-child(1) {
+            font-weight: 500;
+            font-size: 24px;
+            color: #FFFFFF;
+            line-height: 28px;
+          }
+          >:nth-child(2) {
+            display: flex;
+            gap: 4px;
+            margin-left: 20px;
+            .money {
+              font-family: DIN, DIN;
+              font-weight: bold;
+              font-size: 42px;
+              color: rgba(255, 165, 61, 1);
+              padding-top: 10px;
+            }
+            >:nth-child(3) {
+              font-weight: 400;
+              font-size: 20px;
+              color: #FFFFFF;
+            }
+            >:nth-child(1), >:nth-child(3) {
+              margin-top: 34px;
+            }
+          }
+          >:nth-child(3), >:nth-child(4) {
+            margin-top: 6px;
+            font-weight: 400;
+            font-size: 16px;
+            color: #FFFFFF;
+            display: flex;
+            align-items: center;
+            >:nth-child(1) {
+              width: 120px;
+            }
+          }
+        }
+      }
+    }
+    .len {
+      font-weight: 400;
+      font-size: 16px;
+      color: #00C27C;
+      line-height: 19px;
+      margin-bottom: 16px;
+    }
+  }
+  .block-3 {
+    display: flex;
+    gap: 24px;
+    .left {
+      flex: 1;
+    }
+    .right {
+      display: flex;
+      gap: 24px;
+      .img {
+        width: 270px;
+        height: 152px;
+        border-radius: 2px 2px 2px 2px;
+        border: 1px solid #6EAEFF;
+        >img {
+          width: 100%;
+          height: 100%;
+        }
+      }
+    }
+  }
+  .block-4 {
+    position: relative;
+    .status-foot {
+      position: absolute;
+      width: calc(100% - 24px * 2);
+      height: 46px;
+      background: linear-gradient( 90deg, rgba(255,0,46,0) 0%, rgba(255, 0, 46, 0.44) 51%, rgba(255,0,46,0) 100%), rgba(255,0,46,0.1);
+      border: 1px solid #992C5B;
+      border-left: none;
+      border-right: none;
+      bottom: 0;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      font-weight: 500;
+      font-size: 22px;
+      color: #FFFFFF;
+      .svg-icon {
+        margin-right: 10px;
+      }
+    }
+    .status-img {
+      position: absolute;
+      top: 40px;
+      right: 0;
+    }
+  }
+  .block-5 {
+    display: flex;
+    gap: 24px;
+    .left {
+      flex: 1;
+    }
+    .right {
+      width: 590px;
+      height: 152px;
+      background: linear-gradient( 180deg, rgba(0, 163, 255, 0.5) 0%, rgba(0, 71, 255, 0.5) 100%), radial-gradient( 10% 46% at 78% 86%, rgba(101, 152, 255, 0.1) 0%, rgba(12, 98, 216, 0.1) 24%, rgba(0,71,255,0) 100%), rgba(0,0,0,0.9);
+      box-shadow: inset 0px 0px 10px 0px #0085FF;
+      border-radius: 0px 0px 0px 0px;
+      border: 1px solid;
+      border-image: linear-gradient(180deg, rgba(0, 163, 255, 0), rgba(0, 102, 255, 0.3), rgba(0, 102, 255, 1)) 1 1;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      gap: 30px;
+      .port {
+        display: flex;
+        flex-direction: column;
+        justify-content: center;
+        text-align: center;
+        gap: 5px;
+        >img {
+          width: 160px;
+        }
+        >:nth-child(1) {
+          font-weight: 500;
+          font-size: 24px;
+          color: #FFFFFF;
+          line-height: 28px;
+        }
+        >:nth-child(3) {
+          font-weight: 400;
+          font-size: 16px;
+          color: #FFFFFF;
+          line-height: 19px;
+        }
+      }
+      .link {
+        font-weight: 400;
+        font-size: 16px;
+        color: #FFFFFF;
+        line-height: 19px;
+        display: flex;
+        flex-direction: column;
+        text-align: center;
+        &:after {
+          content: '';
+          background-image: url("./img/link.png");
+          background-size: 100% 100%;
+          width: 104px;
+          height: 9px;
+        }
+      }
+    }
+  }
+}
+</style>

+ 16 - 2
src/views/screen/kouan-run-monitor/goods-index.vue

@@ -54,7 +54,7 @@
               <div class="__block-content">
                 <div class="list">
                   <template v-for="item in state.checkParams.data">
-                    <div class="list-item">
+                    <div class="list-item __hover" @click="onView(item)">
                       <div class="img">
                         <img src="./img/run-status-normal.png"/>
                       </div>
@@ -321,6 +321,7 @@
         </div>
       </div>
     </div>
+    <detailCom v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
   </div>
 </template>
 
@@ -329,6 +330,7 @@ import {computed, getCurrentInstance, reactive} from "vue";
 import headCom from './components/head.vue'
 import cardNumber from '@/views/screen/components/card-number/index.vue'
 import pieChart from './components/pie.vue'
+import detailCom from './detail.vue'
 
 const {proxy} = getCurrentInstance()
 const state: any = reactive({
@@ -375,6 +377,10 @@ const state: any = reactive({
     pageSize: 4,
     total: 100,
     data: [{},{},{},{}]
+  },
+  detail: {
+    show: false,
+    transfer: {}
   }
 })
 const businessTotalCpt = computed(() => {
@@ -390,6 +396,12 @@ const onVideoPage = (val) => {
 const onCheckPage = (val) => {
   state.checkParams.pageNum = val
 }
+const onView = (row) => {
+  state.detail.transfer = {
+    mode: 'view'
+  }
+  state.detail.show = true
+}
 </script>
 
 <style lang="scss" scoped>
@@ -561,10 +573,12 @@ const onCheckPage = (val) => {
                   flex-direction: column;
                   align-items: flex-end;
                   justify-content: flex-end;
-                  font-family: YouSheBiaoTiHei;
                   font-weight: 400;
                   font-size: 30px;
                   color: #21EDFF;
+                  >div {
+                    font-family: YouSheBiaoTiHei;
+                  }
                   >img {
                     width: 50px;
                     height: 12px;

+ 16 - 2
src/views/screen/kouan-run-monitor/guest-index.vue

@@ -54,7 +54,7 @@
               <div class="__block-content">
                 <div class="list">
                   <template v-for="item in state.checkParams.data">
-                    <div class="list-item">
+                    <div class="list-item __hover" @click="onView(item)">
                       <div class="img">
                         <img src="./img/run-status-normal.png"/>
                       </div>
@@ -320,6 +320,7 @@
         </div>
       </div>
     </div>
+    <detailCom v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
   </div>
 </template>
 
@@ -328,6 +329,7 @@ import {computed, getCurrentInstance, reactive} from "vue";
 import headCom from './components/head.vue'
 import cardNumber from '@/views/screen/components/card-number/index.vue'
 import pieChart from './components/pie.vue'
+import detailCom from './detail.vue'
 
 const {proxy} = getCurrentInstance()
 const state: any = reactive({
@@ -374,6 +376,10 @@ const state: any = reactive({
     pageSize: 4,
     total: 100,
     data: [{},{},{},{}]
+  },
+  detail: {
+    show: false,
+    transfer: {}
   }
 })
 const businessTotalCpt = computed(() => {
@@ -389,6 +395,12 @@ const onVideoPage = (val) => {
 const onCheckPage = (val) => {
   state.checkParams.pageNum = val
 }
+const onView = (row) => {
+  state.detail.transfer = {
+    mode: 'view'
+  }
+  state.detail.show = true
+}
 </script>
 
 <style lang="scss" scoped>
@@ -509,10 +521,12 @@ const onCheckPage = (val) => {
               flex-direction: column;
               align-items: flex-end;
               justify-content: flex-end;
-              font-family: YouSheBiaoTiHei;
               font-weight: 400;
               font-size: 30px;
               color: #21EDFF;
+              >div {
+                font-family: YouSheBiaoTiHei;
+              }
               >img {
                 width: 50px;
                 height: 12px;

BIN
src/views/screen/kouan-run-monitor/img/bottom.png


BIN
src/views/screen/kouan-run-monitor/img/flag.png


BIN
src/views/screen/kouan-run-monitor/img/shui.png


BIN
src/views/screen/kouan-run-monitor/img/title-icon.png