From 6dd9823b8495252e6d0ba35e6114799321453cbe Mon Sep 17 00:00:00 2001 From: wjt <1797368093@qq.com> Date: 星期三, 26 六月 2024 13:49:33 +0800 Subject: [PATCH] 修改机构过长的问题 --- policy/reportRecord/reportRecord.vue | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/policy/reportRecord/reportRecord.vue b/policy/reportRecord/reportRecord.vue index 3b9eb91..b2567c3 100644 --- a/policy/reportRecord/reportRecord.vue +++ b/policy/reportRecord/reportRecord.vue @@ -13,9 +13,14 @@ </view> <view class="user-info"> <text>{{item.executeUser}}</text> - <view class="driver"></view> - <text>{{item.executeDeptName}}</text> + <!-- <view class="driver"></view> + <text>{{item.executeDeptName}}</text> --> </view> + <view class="user-info"> + <!-- <text>{{item.executeUser}}</text> + <view class="driver"></view> --> + <text>{{item.executeDeptName}}</text> + </view> <view class="set-line"> <text>鎵ф硶瀵硅薄锛�</text>{{item.companyName}} </view> @@ -53,7 +58,9 @@ queryParams: { pageNum: 1, pageSize: 10, - orderStatus: 4 + orderStatus: 4, + isAsc: "desc", + orderByColumn: "execute_time" }, searchContent: '' } @@ -68,7 +75,7 @@ return } this.queryParams.pageNum++ - this.orderList() + this.executeList() }, methods: { clean() { @@ -93,6 +100,7 @@ executeList(this.queryParams).then(val => { this.list = [...this.list, ...val.data.rows] this.total = val.data.total + console.log(this.total) }) } } -- Gitblit v1.9.1