Browse Source

no message

feature/v1.1
xpz2018 5 years ago
parent
commit
73e447dd06
2 changed files with 11 additions and 2 deletions
  1. 3
      pages/process/index/index.js
  2. 10
      pages/process/index/index.wxml

3
pages/process/index/index.js

@ -59,6 +59,9 @@ Component({
}
},
orderList: function (e) {
wx.navigateTo({ url: '/pages/process/order-list/index' })
},
checkList: function (e) {
// if(!app.userInfo.isSaasPerssion){
// Dialog.alert({ title: '温馨提示', message: '您还不是纸通宝SAAS的授权客户,无法使用,如有疑问请联系相关客服人员。' }).then(() => {
// })

10
pages/process/index/index.wxml

@ -43,9 +43,15 @@
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx">
<view class="text-black text-sg text-bold" style="padding: 0rpx 28rpx 12rpx 28rpx">收货订单</view>
<view class="flex flex-justify" style="padding: 0rpx 28rpx 8rpx 28rpx">
<view class="text-black text-sg text-bold">收货订单</view>
<view class="flex flex-center" style="padding:4rpx 0rpx 4rpx 4rpx" bindtap="orderList">
<view class="text-gray text-sm" style="margin-right:8rpx">查看全部订单</view>
<van-icon name="arrow" color="#aaa"/>
</view>
</view>
<van-grid column-num="4" border="{{fasle}}">
<van-grid-item wx:for="{{ tabList }}" wx:key="index" data-status="{{item.status}}" bind:click="orderList" text="{{item.name}}">
<van-grid-item wx:for="{{ tabList }}" wx:key="index" data-status="{{item.status}}" bind:click="checkList" text="{{item.name}}">
<van-icon slot="icon" name="{{ item.icon }}" size="68rpx" info="{{item.badge}}" />
</van-grid-item>
</van-grid>

Loading…
Cancel
Save