diff --git a/src/pages.json b/src/pages.json
index bed6007..e72175b 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -115,6 +115,12 @@
"navigationBarTitleText": ""
}
},
+ {
+ "path": "pages/notice/waitApproveDetail",
+ "style": {
+ "navigationBarTitleText": ""
+ }
+ },
{
"path": "pages/userinfo/userinfo",
"style": {
diff --git a/src/pages/business/CRM/marketInformation.vue b/src/pages/business/CRM/marketInformation.vue
index 29ea244..a28f4fc 100644
--- a/src/pages/business/CRM/marketInformation.vue
+++ b/src/pages/business/CRM/marketInformation.vue
@@ -82,7 +82,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
- empty: { tip: '~ 空空如也 ~' },
+ empty: {
+ tip: '~ 空空如也 ~',
+ icon: "../../static/images/mescroll-empty.png"
+ },
textLoading: '加载中...',
textNoMore: '已经到底了'
});
diff --git a/src/pages/business/CRM/visitorReport.vue b/src/pages/business/CRM/visitorReport.vue
index c70e475..8633251 100644
--- a/src/pages/business/CRM/visitorReport.vue
+++ b/src/pages/business/CRM/visitorReport.vue
@@ -89,7 +89,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
- empty: { tip: '~ 空空如也 ~' },
+ empty: {
+ tip: '~ 空空如也 ~',
+ icon: "../../static/images/mescroll-empty.png"
+ },
textLoading: '加载中...',
textNoMore: '已经到底了'
});
diff --git a/src/pages/notice/notice.vue b/src/pages/notice/notice.vue
index 6a8b84d..cbca20a 100644
--- a/src/pages/notice/notice.vue
+++ b/src/pages/notice/notice.vue
@@ -133,7 +133,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
- empty: { tip: '~ 空空如也 ~' },
+ empty: {
+ tip: '~ 空空如也 ~',
+ icon: "../../static/images/mescroll-empty.png"
+ },
textLoading: '加载中...',
textNoMore: '已经到底了'
});
diff --git a/src/pages/notice/waitApprove.vue b/src/pages/notice/waitApprove.vue
index f7e092f..59fa194 100644
--- a/src/pages/notice/waitApprove.vue
+++ b/src/pages/notice/waitApprove.vue
@@ -73,7 +73,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
- empty: { tip: '~ 空空如也 ~' },
+ empty: {
+ tip: '~ 空空如也 ~',
+ icon: "../../static/images/mescroll-empty.png"
+ },
textLoading: '加载中...',
textNoMore: '已经到底了'
});
@@ -143,8 +146,9 @@ const getFlowList = (pageIndex, pageSize) => {
// 跳转webview
const handleJump = (item)=>{
uni.navigateTo({
- url: '/pages/h5-webview/h5-webview?url=' + item.mobileLink+"&title="+item.subject
+ url: `/pages/notice/waitApproveDetail?detail=${encodeURIComponent(JSON.stringify(item))}`
});
+
}
diff --git a/src/pages/notice/waitApproveDetail.vue b/src/pages/notice/waitApproveDetail.vue
new file mode 100644
index 0000000..00bc999
--- /dev/null
+++ b/src/pages/notice/waitApproveDetail.vue
@@ -0,0 +1,189 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ detail.subject }}
+
+ 进度
+ 待处理
+ 已处理
+
+
+
+ 来自
+ {{ detail.appName }}
+
+
+
+ 状态
+
+
+ {{ formatLevel(detail.level) }}
+
+ {{ formatLevel(detail.level) }}
+
+
+
+
+ 创建人
+ {{ detail.createUser.userId }}
+
+
+
+ 创建时间
+ {{ parseTime(detail.createTime,'{y}-{m}-{d} {h}:{i}') }}
+
+
+
+ 跳转详情页
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/static/images/mescroll-empty.png b/src/static/images/mescroll-empty.png
new file mode 100644
index 0000000..ff333ab
Binary files /dev/null and b/src/static/images/mescroll-empty.png differ