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.
18 lines
902 B
18 lines
902 B
<!--pages/index/index.wxml-->
|
|
<cu-custom bgColor="bg-white">
|
|
<view slot="content" style="color:black;font-size:36rpx">工作台</view>
|
|
</cu-custom>
|
|
|
|
<van-cell-group>
|
|
<van-cell is-link value="查看全部订单" link-type="navigateTo" url="/pages/mall/order-list/index">
|
|
<view class="flex" slot="title" style="align-items: center">
|
|
<text class="text-sg" style="margin-left:12rpx">收货管理</text>
|
|
</view>
|
|
</van-cell>
|
|
</van-cell-group>
|
|
<van-grid square clickable column-num="4">
|
|
<van-grid-item icon="cash-back-record" url="/pages/mall/order-list/index?index=1" text="待付款" />
|
|
<van-grid-item icon="clock-o" url="/pages/mall/order-list/index?index=2" text="待发货" />
|
|
<van-grid-item icon="logistics" url="/pages/mall/order-list/index?index=3" text="待收货" />
|
|
<van-grid-item icon="notes-o" url="/pages/mall/order-list/index?index=4" text="已完成" />
|
|
</van-grid>
|