| | |
| | | <view class="content-item mt-10"> |
| | | <text class="title">订单</text> |
| | | <view class="flex align-center mt-10"> |
| | | <view class="flex flex-v align-center list-item"> |
| | | <view class="flex flex-v align-center list-item" @click="linkTo('./selectCustomer')"> |
| | | <image class="content-icon" src="../../static/images/order1.png"></image> |
| | | <text class="font-12 mt-10 font-dark">新建订单</text> |
| | | </view> |
| | | <view class="flex flex-v align-center list-item"> |
| | | <view class="flex flex-v align-center list-item" @click="linkTo('./orderList')"> |
| | | <image class="content-icon" src="../../static/images/order2.png"></image> |
| | | <text class="font-12 mt-10 font-dark">代付款</text> |
| | | </view> |
| | |
| | | methods:{ |
| | | appear(){ |
| | | |
| | | }, |
| | | linkTo(val){ |
| | | uni.navigateTo({ |
| | | url:val |
| | | }) |
| | | } |
| | | } |
| | | } |