|
@@ -15,7 +15,7 @@
|
|
|
<uni-icons type="link" size="30" style="margin: 10rpx; transform: rotate(135deg);"></uni-icons>
|
|
|
<view class='segment'></view>
|
|
|
</view>
|
|
|
- <view>
|
|
|
+<!-- <view>
|
|
|
<text class='title'>扫码绑定载具</text>
|
|
|
<view class="vehicleList uni-row">
|
|
|
<view class="vehicleNo uni-row" v-for="(item,index) in vehicleList">
|
|
@@ -33,7 +33,7 @@
|
|
|
<view class='segment'></view>
|
|
|
<uni-icons type="paperclip" size="30" style="margin: 10rpx;"></uni-icons>
|
|
|
<view class='segment'></view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<view>
|
|
|
<text class='title' style="margin-bottom: 50rpx;">基础信息</text>
|
|
|
<view class="uni-row info">
|
|
@@ -134,7 +134,12 @@
|
|
|
obj.productionPlanDetailId = store.planDetails.id;
|
|
|
getLotList(obj).then(res => {
|
|
|
console.log(res)
|
|
|
- batchNoList.value = res.rows;
|
|
|
+ if(res.rows.length > 0){
|
|
|
+ batchNoList.value = [res.rows[0]];
|
|
|
+ }else{
|
|
|
+ batchNoList.value = res.rows;
|
|
|
+ }
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
|