| | |
| | | uni.stopPullDownRefresh() |
| | | }, |
| | | methods: { |
| | | callTel(tel) { |
| | | if (tel) { |
| | | uni.makePhoneCall({ |
| | | phoneNumber: tel |
| | | }) |
| | | } |
| | | }, |
| | | buttonSearchFlow() { |
| | | this.refreshList() |
| | | }, |
| | |
| | | <view class="flex1" @click="show_select_status=true"> |
| | | 配送单状态:{{ query.statusStr || '全部' }} |
| | | <image src="../../../static/common/icon-arrow-down.png" class="icon-arrow-down"></image> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | <no-data v-if="!list||list.length===0" style="width: 100%;"></no-data> |
| | | <view v-for="(item,index) in list" :key="index" class="m-b-24"> |
| | | <view class="delivery-item bg-white br-4 p10"> |
| | | <view class="title">供应商:{{ item.supplierName }}</view> |
| | | <view class="title flex"> |
| | | <view>供应商:{{ item.supplierName }}</view> |
| | | <view class="w-fit m-l-a m-r-0 text-right" v-if="item.supplierTel" |
| | | @click="callTel(item.supplierTel)">{{ item.supplierTel }}</view> |
| | | |
| | | </view> |
| | | <view class="line-gray"></view> |
| | | <view class="form-item"> |
| | | <view class="form-item-label">订单单号</view> |
| | |
| | | |
| | | <view class="line-gray"></view> |
| | | <view class="flex buttons"> |
| | | <view class="button button-1 m-l-15 m-r-0" v-if="item.status==='ARRIVED'||item.status==='PENDING'" |
| | | @click="compelete(item)">质检完成</view> |
| | | <view class="button button-1 m-l-a m-r-15" |
| | | v-if="item.status==='ARRIVED'||item.status==='PENDING'" @click="compelete(item)">质检完成</view> |
| | | <view class="button button-0 m-l-a m-r-0" @click="toDetail(item)"> |
| | | {{(item.status==='ARRIVED'||item.status==='PENDING')?'前往质检':'查看详情'}} |
| | | </view> |