|
@@ -12,13 +12,13 @@
|
|
<view v-if="!hasLogin" style="font-size: 40rpx;">
|
|
<view v-if="!hasLogin" style="font-size: 40rpx;">
|
|
请点击登录
|
|
请点击登录
|
|
</view>
|
|
</view>
|
|
- <view v-else style="color: gold;">
|
|
|
|
|
|
+ <view v-else style="color: #FFEB3B;">
|
|
<view>{{userInfo.name}}</view>
|
|
<view>{{userInfo.name}}</view>
|
|
<view>{{userInfo.mobile}}</view>
|
|
<view>{{userInfo.mobile}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view>
|
|
|
|
|
|
+ <view :style="{color: hasLogin?'#fff':''}">
|
|
<text v-if="hasLogin">退出</text>
|
|
<text v-if="hasLogin">退出</text>
|
|
<u-icon name="arrow-right"></u-icon>
|
|
<u-icon name="arrow-right"></u-icon>
|
|
</view>
|
|
</view>
|
|
@@ -42,7 +42,7 @@
|
|
|
|
|
|
<view style="padding: 20upx;">
|
|
<view style="padding: 20upx;">
|
|
<u-empty :src="`/static/nodata.png`" icon-size="180" :text="noDataText" img-width="120" v-if="list.length==0 && status!='loading'" mode="list"></u-empty>
|
|
<u-empty :src="`/static/nodata.png`" icon-size="180" :text="noDataText" img-width="120" v-if="list.length==0 && status!='loading'" mode="list"></u-empty>
|
|
- <u-loadmore v-if="list.length" :status="status" />
|
|
|
|
|
|
+ <u-loadmore v-if="list.length||status=='loading'" :status="status" />
|
|
</view>
|
|
</view>
|
|
<view v-if="!hasLogin" class="des">请登录后查看套餐记录</view>
|
|
<view v-if="!hasLogin" class="des">请登录后查看套餐记录</view>
|
|
</scroll-view>
|
|
</scroll-view>
|