From 3d07ccb8342a92b32bc8858ecf56d257d6b500c9 Mon Sep 17 00:00:00 2001
From: duyongjia <adu_555@163.com>
Date: 星期三, 27 十一月 2024 16:38:55 +0800
Subject: [PATCH] 前端增加任务取消按钮
---
代码管理/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue | 59 ++++++++++++++++++++++++++++++++++++++++++-----------------
1 files changed, 42 insertions(+), 17 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue"
index dd114ec..75fca33 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue"
@@ -56,32 +56,43 @@
field: "layer",
type: "string",
},
- {
- title: "璐т綅娣卞害",
- required: true,
- field: "depth",
- type: "string",
- },
+ // {
+ // title: "璐т綅娣卞害",
+ // required: true,
+ // field: "depth",
+ // type: "string",
+ // },
],
[
{
title: "璐т綅绫诲瀷",
required: true,
field: "locationType",
- type: "string",
+ type: "select",
+ dataKey: "locationTypeEnum",
+ data: [],
+ },
+ {
+ title: "绂佺敤鐘舵��",
+ required: true,
+ field: "enableStatus",
+ type: "select",
+ dataKey: "enableStatusEnum",
+ data: [],
},
{
title: "鍖哄煙涓婚敭",
required: true,
field: "areaId",
type: "string",
+ hidden: true,
},
- {
- title: "宸烽亾缂栧彿",
- required: true,
- field: "roadwayNo",
- type: "string",
- },
+ // {
+ // title: "宸烽亾缂栧彿",
+ // required: true,
+ // field: "roadwayNo",
+ // type: "string",
+ // },
],
]);
const searchFormFields = ref({
@@ -91,7 +102,20 @@
const searchFormOptions = ref([
[
{ title: "璐т綅缂栧彿", field: "locationCode" },
- { title: "宸烽亾缂栧彿", field: "roadwayNo" },
+ {
+ title: "璐т綅绫诲瀷",
+ field: "locationType",
+ type: "selectList",
+ dataKey: "locationTypeEnum",
+ data: [],
+ },
+ {
+ title: "璐т綅鐘舵��",
+ field: "locationStatus",
+ type: "selectList",
+ dataKey: "locationStatusEnum",
+ data: [],
+ },
],
]);
const columns = ref([
@@ -110,11 +134,12 @@
title: "鍖哄煙涓婚敭",
type: "string",
width: 90,
+ hidden: true,
align: "left",
bind: {
key: "areainfo",
- data: []
- }
+ data: [],
+ },
},
{
field: "locationCode",
@@ -175,7 +200,7 @@
type: "string",
width: 120,
align: "left",
- bind:{key: "locationTypeEnum", data: []}
+ bind: { key: "locationTypeEnum", data: [] },
},
{
field: "locationStatus",
--
Gitblit v1.9.3