|
|
@@ -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" /> 新人入职后5个工作日不用提交日报.</span
|
|
|
- >
|
|
|
+ <span v-if="reportInfoData.newUser">
|
|
|
+ <van-icon name="info-o" />
|
|
|
+ 新人入职后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>
|