Commit 718a5ee7 by LJM

bug

parent 1f47f948
...@@ -95,11 +95,18 @@ ...@@ -95,11 +95,18 @@
font-size: 17rpx; font-size: 17rpx;
color: #1969f9; color: #1969f9;
} }
.desc {
font-size: 16rpx;
color: #484b59;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
} }
.btn { .btn {
position: absolute;
right: 17rpx;
bottom: 12rpx;
width: 68rpx; width: 68rpx;
height: 30rpx; height: 30rpx;
background: #1969f9; background: #1969f9;
...@@ -212,6 +219,16 @@ ...@@ -212,6 +219,16 @@
overflow: hidden; overflow: hidden;
max-width: 176rpx; max-width: 176rpx;
} }
.desc {
font-size: 16rpx;
color: #484b59;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
} }
} }
.form-input { .form-input {
...@@ -292,6 +309,16 @@ ...@@ -292,6 +309,16 @@
font-size: 17rpx; font-size: 17rpx;
color: #1969f9; color: #1969f9;
} }
.desc {
font-size: 16rpx;
color: #484b59;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
} }
} }
} }
......
...@@ -91,8 +91,16 @@ ...@@ -91,8 +91,16 @@
<text class="label">销 售 员:</text> <text class="label">销 售 员:</text>
<text class="text">{{ item.sale_name }}</text> <text class="text">{{ item.sale_name }}</text>
</view> </view>
<view class="input-box row">
<text class="label">上游备注:</text>
<text class="desc">{{ item.upstream_remark }}</text>
</view>
<view class="input-box row">
<text class="label">明细备注:</text>
<text class="desc">{{ item.remark }}</text>
</view>
<template v-if="item.lock_qty !== item.pick_qty"> <template v-if="item.lock_qty !== item.pick_qty">
<view class="btn row rowCenter verCenter" @click="showDrawer(1, item)">拣货</view> <view class="row" style="width: 100%;justify-content: flex-end;"><view class="btn row rowCenter verCenter" @click="showDrawer(1, item)">拣货</view></view>
</template> </template>
</view> </view>
</view> </view>
...@@ -183,10 +191,18 @@ ...@@ -183,10 +191,18 @@
<text class="label">入 仓 号:</text> <text class="label">入 仓 号:</text>
<text class="tt">{{ detail.inhouse }}</text> <text class="tt">{{ detail.inhouse }}</text>
</view> </view>
<view class="item row verCenter" style="flex: 0 0 100%;margin-bottom: 17rpx;"> <view class="item row verCenter" style="flex: 0 0 100%;">
<text class="label">其他批次属性:</text> <text class="label">其他批次属性:</text>
<text class="tt">{{ detail.other_batch_attr }}</text> <text class="tt">{{ detail.other_batch_attr }}</text>
</view> </view>
<view class="item row" style="flex: 0 0 100%;">
<text class="label">上游备注:</text>
<text class="desc" style="max-width: 429rpx;">{{ detail.upstream_remark }}</text>
</view>
<view class="item row" style="flex: 0 0 100%;margin-bottom: 17rpx;">
<text class="label">明细备注:</text>
<text class="desc" style="max-width: 429rpx;">{{ detail.remark }}</text>
</view>
</view> </view>
<view class="bor"></view> <view class="bor"></view>
<view class="field-item row"> <view class="field-item row">
...@@ -304,6 +320,14 @@ ...@@ -304,6 +320,14 @@
<text class="label">收货客户:</text> <text class="label">收货客户:</text>
<text class="text">{{ item.customer_name }}</text> <text class="text">{{ item.customer_name }}</text>
</view> </view>
<view class="input-box row" style="flex: 0 0 100%;">
<text class="label">上游备注:</text>
<text class="desc" style="max-width: 429rpx;">{{ detail.upstream_remark }}</text>
</view>
<view class="input-box row" style="flex: 0 0 100%;margin-bottom: 17rpx;">
<text class="label">明细备注:</text>
<text class="desc" style="max-width: 429rpx;">{{ detail.remark }}</text>
</view>
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
......
...@@ -163,14 +163,14 @@ export default { ...@@ -163,14 +163,14 @@ export default {
}); });
return false; return false;
} }
if (this.filter_id.length > 1) { if (this.filter_id.length > 5) {
uni.showToast({ uni.showToast({
title: '请勾选一条', title: '批量操作不能超过5条',
icon: 'error' icon: 'error'
}); });
return false; return false;
} }
this.request(API.makeStockOutFinish, 'POST', { stock_out_id: this.filter_id[0] }, true).then(res => { this.request(API.makeStockOutFinish, 'POST', { stock_out_id: this.filter_id.join(',') }, true).then(res => {
if (res.code === 0) { if (res.code === 0) {
uni.showToast({ uni.showToast({
title: '复核成功', title: '复核成功',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment