Pārlūkot izejas kodu

feature_20250722_金牌店档案收集

zhujindu 4 mēneši atpakaļ
vecāks
revīzija
cd6a78171d
2 mainītis faili ar 30 papildinājumiem un 4 dzēšanām
  1. BIN
      src/assets/ownerBirthdayBG.png
  2. 30 4
      src/views/home/bottomBtn.vue

BIN
src/assets/ownerBirthdayBG.png


+ 30 - 4
src/views/home/bottomBtn.vue

@@ -2,9 +2,10 @@
   <div class="bottomBtn">
     <div style="color: #999; font-size: 12px; margin: 0 10px">
       <!--      昨日新增的数据统一在上午9点更新.-->
-      <span v-if="reportInfoData.newUser"
-        ><van-icon name="info-o" />&nbsp;新人入职后5个工作日不用提交日报.</span
-      >
+      <span v-if="reportInfoData.newUser">
+        <van-icon name="info-o" />
+        &nbsp;新人入职后5个工作日不用提交日报.
+      </span>
     </div>
     <div class="lineGrey"></div>
     <div v-if="approvalButton && !GZdata" class="contentborder">
@@ -90,6 +91,11 @@
       >
     </div>
     <!-- <p class="updataTime" v-if="type != 4 && tabVal != '-1'">更新时间:{{ updataTime }}</p> -->
+    <div class="ownerBirthdayRemind">
+      <div class="ownerBirthdayBox">
+        <div class="title">金牌店生日提醒</div>
+      </div>
+    </div>
   </div>
 </template>
 <script>
@@ -191,4 +197,24 @@ export default {
   },
 };
 </script>
-<style scoped lang="scss"></style>
+<style scoped lang="scss">
+.bottomBtn {
+  .ownerBirthdayRemind {
+    width: 100%;
+    height: 100%;
+    position: fixed;
+    top: 0;
+    z-index: 999999;
+    background: rgba(0, 0, 0, 0.5);
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    .ownerBirthdayBox {
+      width: 90%;
+      height: 300px;
+      background: url('../../assets/ownerBirthdayBG.png') no-repeat;
+      background-size: cover;
+    }
+  }
+}
+</style>