From 37dd5f570a06bded3563ec8ffad86c7625f50585 Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期六, 31 八月 2024 01:34:39 +0800 Subject: [PATCH] update 供应商和质检 --- sub_pages/partner/delivery/delivery-supplier-detail.vue | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/sub_pages/partner/delivery/delivery-supplier-detail.vue b/sub_pages/partner/delivery/delivery-supplier-detail.vue index b6a4488..21180c3 100644 --- a/sub_pages/partner/delivery/delivery-supplier-detail.vue +++ b/sub_pages/partner/delivery/delivery-supplier-detail.vue @@ -19,6 +19,9 @@ }, onLoad(options) { this.query.supplierId = options.supplierId || '' + if(options.warehouseLocationCode){ + this.query.warehouseLocationCode = options.warehouseLocationCode || '' + } this.listApi = '/api/delivery/check/info/list' @@ -88,7 +91,7 @@ <!-- 列表页面 --> <view class="page-delivery"> <view class="p15" style="min-height: calc(100vh - 260rpx);"> - <view class="search-container m-t-12 flex"> + <view class="search-container m-t-12 flex" v-if="!query.supplierId"> <view class="flex1 input"> <u-input placeholder="请输入供应商名称" v-model="query.supplierName"> <template slot="suffix"> @@ -146,13 +149,17 @@ <view class="form-item-value">{{ item.statusStr || '-' }}</view> </view> + </view> + <view class="flex"> <view class="form-item flex1"> <view class="form-item-label">送达时间</view> <view class="form-item-value">{{ item.arriveTime || '-' }}</view> </view> + </view> + <view class="line-gray"></view> <view class="flex buttons"> <!-- v-if="item.status==='ARRIVED'||item.status==='PENDING'" --> -- Gitblit v1.9.3