From 7c20fd15b7fbc2bd5756b39d5ab655cc849ffcc3 Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期三, 16 七月 2025 22:39:23 +0800 Subject: [PATCH] 添加时间筛选 --- src/views/systemSetting/device/grid/components/main/index.vue | 40 ++++++++++++++++++++-------------------- 1 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/views/systemSetting/device/grid/components/main/index.vue b/src/views/systemSetting/device/grid/components/main/index.vue index 6bcbe6e..bcf583b 100644 --- a/src/views/systemSetting/device/grid/components/main/index.vue +++ b/src/views/systemSetting/device/grid/components/main/index.vue @@ -25,8 +25,14 @@ </header> <!-- 鏁版嵁灞曠ず --> <el-table + border + stripe ref="multipleTable" - :header-cell-style="{ 'font-weight': '650', 'line-height': '45px' }" + :header-cell-style="{ + background: '#F5F5F5', + 'font-weight': '650', + 'line-height': '45px', + }" :data="tableData" style="width: 100%" :row-class-name="tableRowClassName" @@ -173,22 +179,16 @@ // 鑾峰彇鍒楄〃 getList() { const that = this; - const { currentPage, pageSize, context } = this; + const { currentPage, pageSize, context } = this; this.getOrgGridList({ currentPage, pageSize, name: context, - }) - .then((res) => { - if (res.code === 200) { - res.data.records.forEach((item) => { - item.status === 1 ? (item.status = true) : (item.status = false); - }); - that.totalNum = res.data.total; - that.tableData = res.data.records; - this.renderFlag = true; - } - }); + }).then((res) => { + that.totalNum = res.total; + that.tableData = res.records; + this.renderFlag = true; + }); }, handleAdd() { this.handheldGrid = { @@ -264,10 +264,10 @@ } header { - background-color: white; + // background-color: white; display: flex; .headerContent { - padding: 10px; + padding: 10px 0; display: flex; justify-content: space-between; align-items: center; @@ -302,7 +302,7 @@ .el-button { padding: 12px 25px; - border-radius: 20px; + //border-radius: 20px; } } ::v-deep .el-form { @@ -323,7 +323,7 @@ .operation { display: flex; - + color: var(--operation-color); .line { padding: 0 5px; } @@ -337,10 +337,10 @@ line-height: 20px; padding: 10px 20px; margin-left: auto; - border-radius: 20px; + //border-radius: 20px; .el-button { padding: 12px 25px; - border-radius: 20px; + //border-radius: 20px; } } -</style> \ No newline at end of file +</style> -- Gitblit v1.8.0