From 541d60628dcb863d8a2cf18207afb8d8b8c62d55 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期三, 10 一月 2024 11:59:10 +0800
Subject: [PATCH] 集成表格样式调整

---
 Source/UBCS-WEB/src/views/docking/loge.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/docking/loge.vue b/Source/UBCS-WEB/src/views/docking/loge.vue
index e04e012..cdba478 100644
--- a/Source/UBCS-WEB/src/views/docking/loge.vue
+++ b/Source/UBCS-WEB/src/views/docking/loge.vue
@@ -126,11 +126,12 @@
       data:[],
       option: {
         height:'auto',
-        calcHeight: 0,
+        calcHeight: 10,
         tip: false,
         searchShow: false,
         border: true,
         index: true,
+        indexFixed:false,
         selection: false,
         dialogClickModal: false,
         menuFixed:false,
@@ -315,13 +316,13 @@
     },
     onLoad(page, params={}) {
       this.loading = true;
-      var query={}
+      var queryCondition={}
       if (this.query) {
         for (var key in this.query) {
-          query['conditionMap["' + key + '"]'] = this.query[key];
+          queryCondition['conditionMap["' + key + '"]'] = this.query[key];
         }
       }
-      getLogoList(page.currentPage, page.pageSize, 'desc',Object.assign(params,this.params, query,this.query),).then(res => {
+      getLogoList(page.currentPage, page.pageSize,'createTime','desc',Object.assign(params,this.params, queryCondition,this.query),).then(res => {
         const data = res.data.data;
         this.page.total = data.total;
         this.data = data.records;

--
Gitblit v1.9.3