From 8cfa203273d53b6502e315c47095c2b399acd3b9 Mon Sep 17 00:00:00 2001 From: WenShiJun Date: Mon, 25 Mar 2024 11:39:42 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=9D=E9=99=A9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=8C=E8=BF=90=E8=90=A5=E7=AE=A1=E7=90=86=EF=BC=8C=E7=BB=B4?= =?UTF-8?q?=E4=BF=9D=E7=AE=A1=E7=90=86=EF=BC=8C=E5=8C=97=E6=96=97=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/constant.js | 6 + .../freight_trailer/index.vue | 8 +- src/views/mechanical_files/beidou/index.vue | 10 +- .../mechanical_files/inspect_annually/add.vue | 84 ++-- .../inspect_annually/index.vue | 85 ++-- src/views/mechanical_files/insure/add.vue | 428 +++++++++--------- src/views/mechanical_files/insure/index.vue | 4 +- .../mechanical_files/maintenance/index.vue | 10 +- .../mechanical_files/operations/index.vue | 12 +- .../mechanical_files/taxation_manage/add.vue | 1 + 10 files changed, 346 insertions(+), 302 deletions(-) diff --git a/src/assets/js/constant.js b/src/assets/js/constant.js index ffc65ac..04fd122 100644 --- a/src/assets/js/constant.js +++ b/src/assets/js/constant.js @@ -84,6 +84,12 @@ export const OPERATING_VEHICLE_TYPE_LIST = [ { ID: "2", NAME: "货运挂车" }, ]; +export const INSURANCEMENU = [ + // 运营车型 + { ID: "1", NAME: "太平洋保险公司" }, + { ID: "2", NAME: "中国人保" }, +]; + export const DUE_STATUS_LIST = [ // 到期状态 { ID: "1", NAME: "未到期" }, diff --git a/src/views/enterprise_management/basics_info_management/freight_trailer/index.vue b/src/views/enterprise_management/basics_info_management/freight_trailer/index.vue index 91649ff..e3fc71e 100644 --- a/src/views/enterprise_management/basics_info_management/freight_trailer/index.vue +++ b/src/views/enterprise_management/basics_info_management/freight_trailer/index.vue @@ -57,8 +57,8 @@ {{ serialNumber(pagination, $index) }} - - + + @@ -67,8 +67,8 @@ label="初登日期" width="200" /> - - + + - - + + - - - - - - - + + + + + + + - + - + - - - - + + + + @@ -257,6 +264,18 @@ const fnResetPaginationTransfer = () => { REMINDER_STATUS: searchForm.value.REMINDER_STATUS, }); }; +// 使用一个对象来跟踪每一行的展开状态 +const expandedRows = reactive({}); // 初始化一个空对象 + +// 定义一个函数来切换展开状态 +function toggleExpand(rowId) { + if (expandedRows[rowId] === undefined) { + expandedRows[rowId] = true; // 如果之前没有状态,默认设置为展开 + } else { + expandedRows[rowId] = !expandedRows[rowId]; // 切换状态 + } +} + const fnDelete = debounce( 1000, async (INSPECTANNUALLY_ID) => { diff --git a/src/views/mechanical_files/insure/add.vue b/src/views/mechanical_files/insure/add.vue index 24d26b4..60c170a 100644 --- a/src/views/mechanical_files/insure/add.vue +++ b/src/views/mechanical_files/insure/add.vue @@ -43,213 +43,223 @@ /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 投保信息 - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + 投保信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +
保存
@@ -266,8 +276,10 @@ import { setInsureEdit, getTrailerList, } from "@/request/mechanical_files.js"; -import { OPERATING_VEHICLE_TYPE_LIST } from "@/assets/js/constant.js"; -import { layoutFnGetInsuranceCompany } from "@/assets/js/data_dictionary.js"; +import { + INSURANCEMENU, + OPERATING_VEHICLE_TYPE_LIST, +} from "@/assets/js/constant.js"; import { setUploadImg } from "@/request/api.js"; import { ElMessage } from "element-plus"; import { useRoute, useRouter } from "vue-router"; @@ -280,8 +292,6 @@ import { const route = useRoute(); const router = useRouter(); const INSURE_ID = route.query.INSURE_ID; -const insuranceCompanyList = await layoutFnGetInsuranceCompany(); -console.log(insuranceCompanyList, "11111111111111111111111111111111111"); const formRef = ref(null); const form = ref({ VEHICLE_MODEL: "", diff --git a/src/views/mechanical_files/insure/index.vue b/src/views/mechanical_files/insure/index.vue index af30a33..c5129a5 100644 --- a/src/views/mechanical_files/insure/index.vue +++ b/src/views/mechanical_files/insure/index.vue @@ -137,8 +137,8 @@ diff --git a/src/views/mechanical_files/maintenance/index.vue b/src/views/mechanical_files/maintenance/index.vue index eca81c4..8a3a29c 100644 --- a/src/views/mechanical_files/maintenance/index.vue +++ b/src/views/mechanical_files/maintenance/index.vue @@ -108,15 +108,15 @@ diff --git a/src/views/mechanical_files/operations/index.vue b/src/views/mechanical_files/operations/index.vue index 9554ea0..8e25983 100644 --- a/src/views/mechanical_files/operations/index.vue +++ b/src/views/mechanical_files/operations/index.vue @@ -98,7 +98,7 @@ {{ serialNumber(pagination, $index) }} - +