|
@@ -46,7 +46,7 @@
|
|
|
<text v-if="confirmedCount>0 && hasLogin"
|
|
|
class="uni-badge uni-badge-error uni-small uni-badge--small icon-num"
|
|
|
:class="[confirmedCount < 10 ? 'goleft':'']">
|
|
|
- {{confirmedCount == 99? '99+' : confirmedCount}}
|
|
|
+ {{confirmedCount >= 99? '99+' : confirmedCount}}
|
|
|
</text>
|
|
|
</view>
|
|
|
<text class="order-t">待确认</text>
|
|
@@ -57,7 +57,7 @@
|
|
|
<text v-if="paymentCount >0 && hasLogin"
|
|
|
class="uni-badge uni-badge-error uni-small uni-badge--small icon-num "
|
|
|
:class="[paymentCount < 10 ? 'goleft':'']">
|
|
|
- {{paymentCount == 99? '99+' : paymentCount}}
|
|
|
+ {{paymentCount >= 99? '99+' : paymentCount}}
|
|
|
</text>
|
|
|
</view>
|
|
|
<text class="order-t">待付款</text>
|
|
@@ -68,7 +68,7 @@
|
|
|
<text v-if="waitShipmentsCount >0 && hasLogin"
|
|
|
class="uni-badge uni-badge-error uni-small uni-badge--small icon-num"
|
|
|
:class="[waitShipmentsCount < 10 ? 'goleft':'']">
|
|
|
- {{waitShipmentsCount == 99? '99+' : waitShipmentsCount}}
|
|
|
+ {{waitShipmentsCount >= 99? '99+' : waitShipmentsCount}}
|
|
|
</text>
|
|
|
</view>
|
|
|
<text class="order-t">待发货</text>
|
|
@@ -79,7 +79,7 @@
|
|
|
<text v-if="shipmentsCount>0 && hasLogin"
|
|
|
class="uni-badge uni-badge-error uni-small uni-badge--small icon-num"
|
|
|
:class="[shipmentsCount < 10 ? 'goleft':'']">
|
|
|
- {{shipmentsCount == 99? '99+' : shipmentsCount}}
|
|
|
+ {{shipmentsCount >= 99? '99+' : shipmentsCount}}
|
|
|
</text>
|
|
|
</view>
|
|
|
<text class="order-t">已发货</text>
|
|
@@ -90,7 +90,7 @@
|
|
|
<text v-if="salesReturnCount >0 && hasLogin"
|
|
|
class="uni-badge uni-badge-error uni-small uni-badge--small icon-num"
|
|
|
:class="[salesReturnCount < 10 ? 'goleft':'']">
|
|
|
- {{salesReturnCount == 99? '99+' : salesReturnCount}}
|
|
|
+ {{salesReturnCount >= 99? '99+' : salesReturnCount}}
|
|
|
</text>
|
|
|
</view>
|
|
|
<text class="order-t">退货/款</text>
|
|
@@ -115,16 +115,19 @@
|
|
|
</view>
|
|
|
<view class="list-cell-item">
|
|
|
<view class="list-cell" v-for="(item, index) in firstList" :key="index" @click="navigator(item.path)" hover-class="cell-hover" :hover-stay-time="50">
|
|
|
+ <text class="cell-icon"><text class="iconfont" :class="item.icon"></text></text>
|
|
|
<text class="cell-tit">{{item.name}}</text>
|
|
|
<text class="cell-more iconfont icon-xiayibu"></text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="list-cell-item">
|
|
|
<view class="list-cell" hover-class="cell-hover" :hover-stay-time="50">
|
|
|
+ <text class="cell-icon"><text class="iconfont icon-lianxiwomen" :class="item.icon"></text></text>
|
|
|
<text class="cell-tit">联系我们</text>
|
|
|
<text class="cell-more" @click="toPhone">{{contactNumber}}</text>
|
|
|
</view>
|
|
|
<view class="list-cell last" @click="this.$api.navigateTo('/pages/user/about/about')" hover-class="cell-hover" :hover-stay-time="50">
|
|
|
+ <text class="cell-icon"><text class="iconfont icon-guanyuwomen" :class="item.icon"></text></text>
|
|
|
<text class="cell-tit">关于我们</text>
|
|
|
<text class="cell-more iconfont icon-xiayibu"></text>
|
|
|
</view>
|
|
@@ -181,11 +184,11 @@
|
|
|
shipmentsCount:0, //已发货角标
|
|
|
salesReturnCount:'',//退货/款角标
|
|
|
firstList:[
|
|
|
- {name:'运营人员管理',path:'/pages/user/operator/list'},
|
|
|
- {name:'账户余额明细',path:'/pages/user/account/account'},
|
|
|
- {name:'收货地址管理',path:'/pages/user/address/address'},
|
|
|
- {name:'机构资料',path:'/pages/login/information'},
|
|
|
- {name:'账户设置',path:'/pages/user/setting/setting'},
|
|
|
+ {name:'运营人员管理',path:'/pages/user/operator/list',icon:'icon-yunyingrenyuanguanli'},
|
|
|
+ {name:'账户余额明细',path:'/pages/user/account/account',icon:'icon-zhanghuyuemingxi'},
|
|
|
+ {name:'收货地址管理',path:'/pages/user/address/address',icon:'icon-shouhuodizhiguanli'},
|
|
|
+ {name:'机构资料',path:'/pages/login/information',icon:'icon-jigouziliao'},
|
|
|
+ {name:'账户设置',path:'/pages/user/setting/setting',icon:'icon-zhanghushezhi'},
|
|
|
]
|
|
|
}
|
|
|
},
|
|
@@ -613,14 +616,24 @@
|
|
|
position:relative;
|
|
|
background: $bg-color;
|
|
|
justify-content: center;
|
|
|
- // border-bottom: 1px solid #EBEBEB;
|
|
|
+ border-bottom: 1px solid #EBEBEB;
|
|
|
&.cell-hover{
|
|
|
background:#fafafa;
|
|
|
}
|
|
|
+ .cell-icon{
|
|
|
+ width: 60rpx;
|
|
|
+ height: 100rpx;
|
|
|
+ line-height: 100rpx;
|
|
|
+ text-align: center;
|
|
|
+ .iconfont{
|
|
|
+ font-size: $font-size-34;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
.cell-more{
|
|
|
align-self: baseline;
|
|
|
font-size:$font-size-28;
|
|
|
- color:$text-color;
|
|
|
+ color:#666666;
|
|
|
margin-left:10rpx;
|
|
|
.txt{
|
|
|
color: #FB4343;
|
|
@@ -630,7 +643,7 @@
|
|
|
.cell-tit{
|
|
|
flex: 1;
|
|
|
font-size: $font-size-28;
|
|
|
- color: $text-color;
|
|
|
+ color: #666666;
|
|
|
margin-right:10rpx;
|
|
|
}
|
|
|
.cell-tip{
|