From 66cf8ac9a5392b7805cf5be4ae2b9a7cf579cabf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=A6=8D?= <1455167345@qq.com> Date: Wed, 3 Jul 2024 14:34:16 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=9E=E5=9C=B0=E8=B0=83=E6=95=B4=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../auditinfo/AuditProgress/index.vue | 3 +- .../bootstraps/auditinfo/MapList/index.vue | 22 +- src/views/demo/bootstraps/auditinfo/index.vue | 2 +- .../changearea/AuditProgress/index.vue | 144 +++++ .../bootstraps/changearea/MapList/amend.vue | 117 ++++ .../bootstraps/changearea/MapList/index.vue | 522 ++++++++++++++++++ .../demo/bootstraps/changearea/index.vue | 316 +++++++++++ src/views/demo/bootstraps/changearea/util.ts | 36 ++ 8 files changed, 1150 insertions(+), 12 deletions(-) create mode 100644 src/views/demo/bootstraps/changearea/AuditProgress/index.vue create mode 100644 src/views/demo/bootstraps/changearea/MapList/amend.vue create mode 100644 src/views/demo/bootstraps/changearea/MapList/index.vue create mode 100644 src/views/demo/bootstraps/changearea/index.vue create mode 100644 src/views/demo/bootstraps/changearea/util.ts diff --git a/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue b/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue index c14362e0..1f53b416 100644 --- a/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue +++ b/src/views/demo/bootstraps/auditinfo/AuditProgress/index.vue @@ -109,6 +109,7 @@ align-items: center; padding: 10px; justify-content: space-between; + border-bottom: 1px solid #ececec; .name-div { display: flex; align-items: center; @@ -138,7 +139,7 @@ } } } - .no-data{ + .no-data { padding: 20px 0; } diff --git a/src/views/demo/bootstraps/auditinfo/MapList/index.vue b/src/views/demo/bootstraps/auditinfo/MapList/index.vue index 90481636..ec56ba4d 100644 --- a/src/views/demo/bootstraps/auditinfo/MapList/index.vue +++ b/src/views/demo/bootstraps/auditinfo/MapList/index.vue @@ -52,7 +52,7 @@ >
@@ -60,7 +60,9 @@
{{ item.case_no }}
-
{{ item.address }}
+
+ {{ item.address }} +
{{ item.unitname }}
@@ -170,7 +172,7 @@ { label: '已建成', value: 1 }, { label: '持续变化', value: 2 }, ]); - + const dataList = ref([]); const total = ref(0); async function getTaskList() { @@ -275,12 +277,10 @@ margin-bottom: 5px; .item-info-id { width: 178px; - background: #bf2c64; - color: #fff; border-radius: 11px; display: flex; align-items: center; - justify-content: center; + // justify-content: center; height: 22px; } .item-info-layout { @@ -290,7 +290,7 @@ justify-content: space-between; } .item-info-address { - width: 120px; + // width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -339,12 +339,14 @@ } } .button-div { - flex: 1; - width: 100%; - height: 100%; + height: 30px; + width: 30px; display: flex; justify-content: space-evenly; font-size: 20px; + border: 1px solid #d9d9d9; + border-radius: 50%; + margin-left: 10px; .collect-button:hover { color: rgb(255, 205, 42); } diff --git a/src/views/demo/bootstraps/auditinfo/index.vue b/src/views/demo/bootstraps/auditinfo/index.vue index 8003eec2..4f85b1df 100644 --- a/src/views/demo/bootstraps/auditinfo/index.vue +++ b/src/views/demo/bootstraps/auditinfo/index.vue @@ -101,7 +101,7 @@ // 存储年份数据的数组 let list: any = []; // 获取当前年份 - year.value = Number(`${currentYear}`); + // year.value = Number(`${currentYear}`); list.push({ value: Number(`${currentYear}`), label: Number(`${currentYear}`), diff --git a/src/views/demo/bootstraps/changearea/AuditProgress/index.vue b/src/views/demo/bootstraps/changearea/AuditProgress/index.vue new file mode 100644 index 00000000..a4ea588b --- /dev/null +++ b/src/views/demo/bootstraps/changearea/AuditProgress/index.vue @@ -0,0 +1,144 @@ + + + + + diff --git a/src/views/demo/bootstraps/changearea/MapList/amend.vue b/src/views/demo/bootstraps/changearea/MapList/amend.vue new file mode 100644 index 00000000..6609edc3 --- /dev/null +++ b/src/views/demo/bootstraps/changearea/MapList/amend.vue @@ -0,0 +1,117 @@ + + diff --git a/src/views/demo/bootstraps/changearea/MapList/index.vue b/src/views/demo/bootstraps/changearea/MapList/index.vue new file mode 100644 index 00000000..35ff8c48 --- /dev/null +++ b/src/views/demo/bootstraps/changearea/MapList/index.vue @@ -0,0 +1,522 @@ + + + + + diff --git a/src/views/demo/bootstraps/changearea/index.vue b/src/views/demo/bootstraps/changearea/index.vue new file mode 100644 index 00000000..49486974 --- /dev/null +++ b/src/views/demo/bootstraps/changearea/index.vue @@ -0,0 +1,316 @@ + + + + + diff --git a/src/views/demo/bootstraps/changearea/util.ts b/src/views/demo/bootstraps/changearea/util.ts new file mode 100644 index 00000000..fc534be6 --- /dev/null +++ b/src/views/demo/bootstraps/changearea/util.ts @@ -0,0 +1,36 @@ +export const batchOptions = [ + {value: '第一批', label: '第一批'}, + {value: '第二批', label: '第二批'}, + {value: '第三批', label: '第三批'}, +] +export const yearOptions = [ + { value: '2024', label: 2024 }, + { value: '2023', label: 2023 }, + { value: '2022', label: 2022 }, + { value: '2021', label: 2021 }, + { value: '2020', label: 2020 }, +] +export const mapTypeOptions = [ + { label: '合法', value: 0 }, + { label: '违法', value: 1 }, + { label: '其他', value: 2 }, +] +export const illegalTypeOptions = [ + { label: '非农化', value: 0 }, + { label: '非粮化', value: 1 }, +] +export const measureOptions = [ + { label: '拆除复耕', value: 0}, + { label: '补办手续', value: 1}, +] +export const mapStatusOptions = [ + { label: '待接收', value: 0 }, + { label: '待判定', value: 1 }, + { label: '待整改', value: 2 }, + { label: '待审核', value: 3 }, + { label: '已完成', value: 4 }, +] +export const markTypeOptions = [ + { label: '建设中', value: 0 }, + { label: '已建成', value: 1 }, +] \ No newline at end of file