From 96a2b1c68aa545abbf8245b0b2859b342fa6e63d Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期四, 19 十二月 2024 10:18:19 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/dmvisit

---
 h5/pages/staff/task/index.vue |   19 +++++++++++++------
 1 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/h5/pages/staff/task/index.vue b/h5/pages/staff/task/index.vue
index 56ed2e0..b29b5df 100644
--- a/h5/pages/staff/task/index.vue
+++ b/h5/pages/staff/task/index.vue
@@ -293,6 +293,9 @@
     },
     modalReset() {
       this.modelParam = {}
+      this.search = {
+				queryType: 0
+			}
       this.pagination.page = 0
       this.dataList = []
       this.showFilter = false
@@ -319,13 +322,16 @@
           ...search
         }
       }).then(res => {
+				if(res.data && res.data.records){
+					res.data.records.forEach(i => {
+					  if (i.param1) {
+					    i.param1 = JSON.parse(i.param1)
+					  }
+					})
+				}
         this.dataList = [...this.dataList, ...res.data.records]
 				this.total = res.data.total
-        this.dataList.forEach(i => {
-          if (i.param1) {
-            i.param1 = JSON.parse(i.param1)
-          }
-        })
+        
       })
     },
     getHeadList() {
@@ -354,7 +360,7 @@
       }
       if (objType === 2) {
         uni.navigateTo({
-          url: `/pages/staff/vehicle/sendACarDetail?id=${objId}&appr=1&info=${info}`
+          url: `/pages/staff/vehicle/sendACarDetail?id=${objId}&info=${info}`
         })
       } else if (objType === 1) {
         uni.navigateTo({
@@ -535,6 +541,7 @@
 				  font-size: 26rpx;
 				  font-weight: 400;
 					color: #999999;
+					width: 120rpx;
 				}
         .loading {
           color: $uni-color-primary;

--
Gitblit v1.9.3