Browse Source

提交消息弹窗

fan0987 4 weeks ago
parent
commit
31c96818a1
1 changed files with 18 additions and 0 deletions
  1. 18 0
      bidding-ui/src/views/HomeView.vue

+ 18 - 0
bidding-ui/src/views/HomeView.vue

@@ -27,6 +27,24 @@ export default {
     MoreList,
     BiddingList,
     BiddingNotices
+  },
+
+  created() {
+    this.openNotice()
+  },
+
+  methods: {
+    openNotice() {
+      const getNotice = sessionStorage.getItem('getNotice')
+      if (!getNotice) {
+        this.$alert('按城发投财务统一部署,我公司预计12月15日开始财务封账,届时无法收取、缴纳招标代理服务费和投标保证金,因此招标代理业务暂停,预计1月1后恢复,请各权属企业按此时限合理安排好招标工作,特此通知!!!', '通知', {
+          confirmButtonText: '确定',
+          callback: action => {
+            sessionStorage.setItem('getNotice', true)
+          }
+        })
+      }
+    }
   }
 }
 </script>