You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.7 KiB
88 lines
1.7 KiB
<template>
|
|
<view class="my_order">
|
|
<list-cell icons="icon-order" linkUrl="/pages/views/order/orderList" :colors="colors">全部订单</list-cell>
|
|
<view class="order_btnbox">
|
|
<view v-for="(item, index) in orderText" :key="index" class="order_btns" @tap="jumpOrder(item,index)">
|
|
<view>
|
|
<text :class="'iconfont ' + item.icon" ></text>
|
|
</view>
|
|
<view style="color:#666">{{item.name}}</view>
|
|
<view class="pos2" v-if="item._num > 0"> {{item._num}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import listCell from "./list-cell";
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
components: {
|
|
listCell
|
|
},
|
|
props: {
|
|
orderText: {
|
|
type: Array
|
|
},
|
|
colors: {
|
|
type: String
|
|
}
|
|
},
|
|
methods: {
|
|
jumpOrder(item,index) {
|
|
if(item.url !== ''){
|
|
uni.navigateTo({
|
|
url: item.url
|
|
});
|
|
}else{
|
|
uni.navigateTo({
|
|
url: '/pages/views/order/orderList?tabIndex=' + (index + 1)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.pos2{
|
|
position: absolute;
|
|
right: 10upx;
|
|
top: 6upx;
|
|
background-color: #f94530;
|
|
color: #fff;
|
|
width: 40upx;
|
|
height: 40upx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
}
|
|
.my_order{
|
|
background-color: #fff;
|
|
margin-bottom: 20upx;
|
|
}
|
|
.order_btnbox {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.order_btns {
|
|
position: relative;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex: 1;
|
|
margin: 10upx 0 20upx;
|
|
padding: 20upx 0 10upx;
|
|
font-size: 24upx;
|
|
color: #75787d;
|
|
line-height: 40upx;
|
|
}
|
|
.order_btns text{
|
|
font-size: 36upx;
|
|
}
|
|
</style> |