|
|
@@ -64,10 +64,14 @@
|
|
|
<div v-if="qualificationCheck" class="urgent-notice">
|
|
|
<div class="notice-content">
|
|
|
<div class="notice-title">【重要通知】</div>
|
|
|
- <div class="notice-desc">
|
|
|
+ <div class="notice-desc" v-if="remainDays < 0">
|
|
|
您店铺的入驻资质已届满6个月有效期!<br/>
|
|
|
请立即更新并上传最新资质提交审核,避免影响店铺正常运营!
|
|
|
</div>
|
|
|
+ <div class="notice-desc" v-if="remainDays >= 0">
|
|
|
+ 您店铺的入驻资质即将届满6个月有效期!剩余{{remainDays}}天<br/>
|
|
|
+ 请立即更新并上传最新资质提交审核,避免影响店铺正常运营!
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-for="(item,index) in promptList">({{index+1}})、{{item}}</div>
|
|
|
@@ -93,6 +97,7 @@ PanelGroup,StoreOrderMoney,doctorChart
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ remainDays:0,
|
|
|
qualificationCheck:false,
|
|
|
data:null,
|
|
|
promptList:[],
|
|
|
@@ -124,7 +129,8 @@ PanelGroup,StoreOrderMoney,doctorChart
|
|
|
//请求店铺资质提醒接口满6个月
|
|
|
qualificationReminder().then(response => {
|
|
|
if(response.code === 200) {
|
|
|
- if(response.check) {
|
|
|
+ if(response.data != null) {
|
|
|
+ this.remainDays = response.data.remainDays;
|
|
|
this.qualificationCheck = true;
|
|
|
}
|
|
|
}
|
|
|
@@ -135,7 +141,8 @@ PanelGroup,StoreOrderMoney,doctorChart
|
|
|
//请求店铺资质提醒接口满6个月
|
|
|
qualificationReminder().then(response => {
|
|
|
if(response.code === 200) {
|
|
|
- if(response.check) {
|
|
|
+ if(response.data != null) {
|
|
|
+ this.remainDays = response.data.remainDays;
|
|
|
this.qualificationCheck = true;
|
|
|
this.dialogVisible = true;
|
|
|
}
|