From 8be8a98402534334bc921d8001ef568aa447eb5f Mon Sep 17 00:00:00 2001 From: zhj Date: Thu, 13 Feb 2025 00:36:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E5=9C=B0=E5=8C=BA?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/biz.ts | 9 ++ src/views/biz/areas/index.vue | 291 ++++++++++++++++++++++++++++++++++ src/views/biz/bid/index.vue | 16 +- 3 files changed, 314 insertions(+), 2 deletions(-) create mode 100644 src/views/biz/areas/index.vue diff --git a/src/router/modules/biz.ts b/src/router/modules/biz.ts index 956da8f..1781c83 100644 --- a/src/router/modules/biz.ts +++ b/src/router/modules/biz.ts @@ -93,6 +93,15 @@ export default { title: "系统设置" } }, + { + path: "/biz/areas", + name: "areas", + component: () => import("@/views/biz/areas/index.vue"), + meta: { + icon: "ph:map-pin-area-bold", + title: "地区" + } + }, { path: "/biz/subscribe", name: "subscribe", diff --git a/src/views/biz/areas/index.vue b/src/views/biz/areas/index.vue new file mode 100644 index 0000000..7216816 --- /dev/null +++ b/src/views/biz/areas/index.vue @@ -0,0 +1,291 @@ + + + + + diff --git a/src/views/biz/bid/index.vue b/src/views/biz/bid/index.vue index 00080ad..cae803d 100644 --- a/src/views/biz/bid/index.vue +++ b/src/views/biz/bid/index.vue @@ -158,13 +158,25 @@ const columns: TableColumnList = [ } }, { - label: "中标者", + label: "中标", prop: "isWinner", width: "90", + align: "center", formatter: row => { return row.isWinner === 1 ? "是" : "否"; } }, + { + label: "供货周期", + prop: "supplyCycle", + width: "90", + align: "center" + }, + { + label: "供货地", + prop: "productSourcing", + width: "90" + }, { label: "投标时间", prop: "createTime", @@ -301,7 +313,7 @@ onMounted(() => { - +