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(() => { - +