| | |
| | | <view v-for="item in menuList" :key="item.label" class="menu-row" @click="handleMenuClick(item)"> |
| | | <text class="menu-label">{{ item.label }}</text> |
| | | <view class="right-icon"> |
| | | <text v-if="['门店入驻','门店信息'].includes(item.label)" :class="{ 'status-red': userInfo.shopAuditStatus === 1 || userInfo.shopAuditStatus === 2 }"> |
| | | {{userInfo.shopAuditStatus === 0 ? '审核中' : userInfo.shopAuditStatus === 1 ? '审核通过,请支付押金' : userInfo.shopAuditStatus === 2 ? '审核未通过' : userInfo.shopAuditStatus === 3 ? '门店已入驻' : '' }} |
| | | <text v-if="['门店入驻','门店信息'].includes(item.label)" :class="{ 'status-red': [1,2,5].includes(userInfo.shopAuditStatus), 'status-yellow': [4].includes(userInfo.shopAuditStatus) }"> |
| | | {{userInfo.shopAuditStatus === 0 ? '审核中' : userInfo.shopAuditStatus === 1 ? '审核通过,请支付押金' : userInfo.shopAuditStatus === 2 ? '审核未通过' : userInfo.shopAuditStatus === 3 ? '门店已入驻' : userInfo.shopAuditStatus === 4 ? '变更中' : userInfo.shopAuditStatus === 5 ? '变更未通过' : '' }} |
| | | </text> |
| | | <button v-if="item.label === '在线客服'" open-type="contact" type="default"> </button> |
| | | <u-icon name="arrow-right" size="18" color="#B5BBC5"></u-icon> |
| | |
| | | return |
| | | } |
| | | } |
| | | if (['门店入驻','门店信息'].includes(item.label) && [0,1,2,3].includes(this.userInfo.shopAuditStatus)) { |
| | | if (['门店入驻','门店信息'].includes(item.label) && [0,1,2,3,4].includes(this.userInfo.shopAuditStatus)) { |
| | | uni.navigateTo({ |
| | | url: '/pages/details-entry/details-entry' |
| | | }) |
| | |
| | | .status-red { |
| | | color: #FF0000; |
| | | } |
| | | .status-yellow { |
| | | color: #FFD700; |
| | | } |
| | | button { |
| | | position: relative; |
| | | top: 0; |