From 7298d5354963a88643a543b51b90192dc9fc934c Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期四, 11 九月 2025 18:43:14 +0800
Subject: [PATCH] 最新版本541200007

---
 h5/pages/notice/notice.vue |   66 ++++++++++++++++----------------
 1 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/h5/pages/notice/notice.vue b/h5/pages/notice/notice.vue
index f12ec94..fcbd3ee 100644
--- a/h5/pages/notice/notice.vue
+++ b/h5/pages/notice/notice.vue
@@ -1,19 +1,16 @@
 <template>
-  <div class="container">
-    <!-- <video
-      src="https://vdept3.bdstatic.com/mda-nj7gwfue9kdnbtsh/sc/cae_h264/1665488517815949255/mda-nj7gwfue9kdnbtsh.mp4?v_from_s=hkapp-haokan-hbe&auth_key=1715141591-0-0-6dfdf4d4c3d94b60b9adeb53368a72f3&bcevod_channel=searchbox_feed&pd=1&cr=2&cd=0&pt=3&logid=0791905773&vid=13790089500387859718&klogid=0791905773&abtest="
-    ></video> -->
+  <view class="container">
     <scroll-view scroll-y class="content">
-      <div>
-        <div v-html="content"></div>
-      </div>
-      <div class="empty"></div>
+      <view>
+        <view v-html="content"></view>
+      </view>
+      <view class="empty"></view>
     </scroll-view>
-    <div class="button" @click="handleAgree" v-if="num === 6">纭浜嗚В</div>
-    <div class="button" @click="toapply" v-else>
-      宸茬煡鏅擄紝涓嬩竴姝�({{ num }}绉�)
-    </div>
-  </div>
+    <view class="button" :class="{ disable: num > 0 }" @click="toapply">
+      宸茬煡鏅擄紝涓嬩竴姝�
+      <text v-if="num > 0">({{ num }}绉�)</text>
+    </view>
+  </view>
 </template>
 
 <script>
@@ -25,26 +22,16 @@
     return {
       content: ``,
       answer: '',
-      num: 6
+      num: 5
     }
   },
   onLoad() {
     this.getInfo()
     if (!this.$store.state.openId) {
-      this.initToken()
+      // this.initToken()
     }
-
   },
   methods: {
-    handleAgree() {
-      this.num--
-      timer = setInterval(() => {
-        this.num--
-        if (this.num === 0) {
-          this.toapply()
-        }
-      }, 1000)
-    },
     initToken() {
       const appID = 'wxac2a80c2144c4ee0'
       // const AppSecret = '922c93596d134fedf5bd22a9354b3bfe'
@@ -63,6 +50,21 @@
           this.content = res.data.code
         }
       })
+      // 鍊掕鏃舵椂闂�
+      getSystemDictData({
+        dictCode: 'SYSTEM',
+        label: 'NOTICE_CUTNTDOWN'
+      }).then(res => {
+        if (res.code === 200) {
+          this.num = res.data.code
+          timer = setInterval(() => {
+            this.num--
+            if (this.num === 0) {
+              clearInterval(timer)
+            }
+          }, 1000)
+        }
+      })
       // 鏄惁闇�瑕佺瓟棰�
       getSystemDictData({
         dictCode: 'SYSTEM',
@@ -74,7 +76,7 @@
       })
     },
     toapply() {
-      clearInterval(timer)
+      if (this.num > 0) return
       if (this.answer === '0') {
         uni.navigateTo({
           url: '/pages/userinfo/userinfo'
@@ -97,16 +99,11 @@
   box-sizing: border-box;
   display: flex;
   flex-direction: column;
-  video {
-    width: 690rpx;
-    height: 388rpx;
-    margin-bottom: 10rpx;
-  }
   .content {
-    height: calc(100% - 170rpx);
+    height: calc(100% - 130rpx);
     .title {
       color: #333333;
-      font-weight: 500;
+      font-weight: 600;
       margin-bottom: 16rpx;
     }
     .text {
@@ -129,5 +126,8 @@
     bottom: 30rpx;
     left: 30rpx;
   }
+  .disable {
+    background-color: #cccccc;
+  }
 }
 </style>
\ No newline at end of file

--
Gitblit v1.9.3