diff --git a/src/enums/cacheEnums.js b/src/enums/cacheEnums.js index 264ff92..a67dd81 100644 --- a/src/enums/cacheEnums.js +++ b/src/enums/cacheEnums.js @@ -4,5 +4,5 @@ export const AGREEWELCOME_KEY="agreewelcome"; // clientId 默认写2 export const CLIENT_ID="2"; // #区分内外网 //1-内网,2-外网 -export const NETWORK_ENV=1; +export const NETWORK_ENV=2; 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 @@ + + + + + \ 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