From 78dd96d3db3ff54deda77611b5dfea33e40914a3 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期三, 12 六月 2024 11:07:43 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
h5/pages/staff/task/index.vue | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/h5/pages/staff/task/index.vue b/h5/pages/staff/task/index.vue
index f9d7c2f..84cd0a7 100644
--- a/h5/pages/staff/task/index.vue
+++ b/h5/pages/staff/task/index.vue
@@ -118,6 +118,10 @@
</view>
</view>
</view>
+ <view v-if="dataList.length === 0" style="text-align: center;">
+ <image src="@/static/empty.png" style="width: 320rpx;margin: 120px auto 0" mode="widthFix" />
+ <view class="placeholder9 fs24">鏆傛棤鏁版嵁</view>
+ </view>
</view>
<!-- 绛涢�� -->
<u-popup
@@ -279,7 +283,9 @@
}).then(res => {
this.dataList = [...this.dataList, ...res.data.records]
this.dataList.forEach(i => {
- i.param1 = JSON.parse(i.param1)
+ if(i.param1){
+ i.param1 = JSON.parse(i.param1)
+ }
})
console.log('dataList', this.dataList)
})
--
Gitblit v1.9.3