12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view class="mall">
- <view class="mall-top"> <text class="mall-title">商城订单</text>
- <view class="all"> <text>全部</text>
- <image class="right" src='../../../static/mine/right.png' mode=""></image>
- </view>
- </view>
- <view class="order-form">
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/310.png' mode=""></image>
- <view class="characters">待付款</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/311.png' mode=""></image>
- <view class="characters">拼团中</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/312.png' mode=""></image>
- <view class="characters">代发货</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/313.png' mode=""></image>
- <view class="characters">待收货</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/314.png' mode=""></image>
- <view class="characters">退款/售后</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .mall{
- height: 100px;
- width: 100%;
- background-color: #fff;
- border-radius: 10px;
- padding-top: 14px;
- margin-top: 10px;
- .mall-top{
- display: flex;
- justify-content: space-between;
- margin: 0 10px;
- .mall-title{
- font-size: 14px;
- color: #222;
- font-weight: 600;
- }
- .all{
- color: #333;
- font-size: 12px;
- display: flex;
- align-items: center;
- .right{
- width: 10px;
- height: 10px;
- }
- }
- }
- .order-form{
- display: flex;
- justify-content: space-around;
- margin-top: 18px;
- .icon-center{
- width: 15%;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- }
- .form-icon{
- width: 24px;
- height: 22px;
- }
- .characters{
- color: #202020;
- font-size: 12px;
- margin-top: 10px;
- }
- }
- }
- </style>
|