Browse Source

静态页面

1002884655 4 years ago
parent
commit
5e2e531744
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/pages/WoDe/ShouYe/index.vue

+ 2
- 2
src/pages/WoDe/ShouYe/index.vue View File

@@ -16,7 +16,7 @@
16 16
               <div class="flex-item flex-h">
17 17
                 <div class="flex-item">
18 18
                   <div>
19
-                    <router-link tag="span" :to="{ name: 'DianPuRenZheng' }" v-if="CurrentShopInfo !== null"> {{CurrentShopInfo.name}} <em>({{CurrentShopInfo.aliLoginId !== null ? '已认证' : '未认证'}})</em></router-link>
19
+                    <router-link tag="span" :to="{ name: 'DianPuRenZheng' }" v-if="CurrentShopInfo !== null"> {{CurrentShopInfo.name}} <em>({{CurrentShopInfo.status - 0 === 0 ? '未认证' : CurrentShopInfo.status - 0 === 1 ? '已认证' : '认证失败'}})</em></router-link>
20 20
                   </div>
21 21
                 </div>
22 22
                 <router-link tag="span" :to="{ name: 'DingDanLiuShui' }">营业额</router-link>
@@ -90,7 +90,7 @@ export default {
90 90
             item.Tips = this.CurrentShopInfo.aliLoginId || '未授权'
91 91
           }
92 92
           if (item.Id - 0 === 5) {
93
-            item.Tips = this.CurrentShopInfo.aliLoginId !== null ? '已认证' : '未认证'
93
+            item.Tips = this.CurrentShopInfo.status - 0 === 0 ? '未认证' : this.CurrentShopInfo.status - 0 === 1 ? '已认证' : '认证失败'
94 94
           }
95 95
         })
96 96
       }