From b33b27d255548f37d600aa3d6032898d05da36b1 Mon Sep 17 00:00:00 2001
From: kun <1422840143@qq.com>
Date: Tue, 12 Mar 2024 14:48:00 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../goverment/huizhou/unDealList/index.vue | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/src/views/goverment/huizhou/unDealList/index.vue b/src/views/goverment/huizhou/unDealList/index.vue
index 4e6baf9..5daaff1 100644
--- a/src/views/goverment/huizhou/unDealList/index.vue
+++ b/src/views/goverment/huizhou/unDealList/index.vue
@@ -13,7 +13,7 @@
:isShowSearch="false"
>
- {{ row.state === 1 ? "已审核" : "待审核" }}
+ {{ row.state === 3 ? "已逾期" : "待处理" }}
@@ -60,9 +60,10 @@ const handleDealItem = (obj: any) => {
// 表格配置项
const columns: ColumnProps[] = [
- { type: "index", label: "序号", width: 80 },
- { prop: "type", label: "待处理事项" },
+ { type: "index", label: "序号", width: 100 },
+ { prop: "type", label: "待办事项", width: 220 },
{ prop: "projectName", label: "项目名称" },
+ { prop: "state", label: "状态", width: 120 },
{ prop: "operation", label: "操作", width: 120 }
];
@@ -89,9 +90,9 @@ const getTableList = async (params: any) => {
let newParams = JSON.parse(JSON.stringify(params));
const res: any = await noFinishApi({});
if (res && res.data && res.data.length > 0) {
- return { result: { records: res.data, current: "1", pages: "1", size: "10", total: res.data.length + "" } };
+ return { result: { records: res.data, current: "1", pages: "1", size: "100", total: res.data.length + "" } };
} else {
- return { result: { records: [], current: "1", pages: "1", size: "10", total: "0" } };
+ return { result: { records: [], current: "1", pages: "1", size: "100", total: "0" } };
}
};
onMounted(async () => {
@@ -109,4 +110,10 @@ onMounted(async () => {
height: 700px;
overflow: auto;
}
+:deep() {
+ .theme-transform,
+ .el-pagination {
+ display: none;
+ }
+}