Commit 0610c731 by LJM

bug

parent 490ad412
...@@ -102,21 +102,45 @@ ...@@ -102,21 +102,45 @@
color: #484b59; color: #484b59;
} }
} }
.btn2 { .wrap {
width: calc(100% - 128rpx); width: calc(100% - 128rpx);
.print_type {
width: 50%;
height: 75rpx;
background: #1969f9;
border-right: 1px solid #ffffff;
.t1 {
font-size: 23rpx;
color: #ffffff;
}
}
.print-type-box {
width: 50%;
height: 75rpx;
background: #1969f9;
picker {
width: 100%;
height: 100%;
}
.uni-input {
font-size: 23rpx;
color: #ffffff;
}
}
}
.btn2 {
width: 50%;
height: 75rpx; height: 75rpx;
background: #1969f9; background: #1969f9;
font-size: 23rpx; font-size: 23rpx;
color: #ffffff; color: #ffffff;
} }
.btn3 { .btn3 {
width: 180rpx; width: calc(100% - 128rpx);
height: 75rpx; height: 75rpx;
background: #ffffff; background: #1969f9;
font-size: 23rpx; font-size: 23rpx;
color: #ff3700; color: #ffffff;
border-left: 1px solid #f0f0f2;
font-weight: bold;
} }
} }
.list { .list {
...@@ -411,21 +435,27 @@ ...@@ -411,21 +435,27 @@
} }
.print { .print {
margin-bottom: 27rpx; margin-bottom: 27rpx;
.check-box-icon { width: 50%;
width: 20rpx; height: 38rpx;
height: 20rpx; .t1 {
background: url('https://img.ichunt.com/images/ichunt/202304/11/0bf30da3e8ce6c476c210173b5f13d51.png') no-repeat center; font-size: 20rpx;
background-size: contain; color: #1969f9;
display: block; font-weight: bold;
&.curr {
background: url('https://img.ichunt.com/images/ichunt/202304/11/71a74e52e94bcf2e89f8df9817d494c6.png') no-repeat center;
background-size: contain;
}
} }
.tt { .print-type-box {
font-size: 17rpx; picker {
color: #484b59; .uni-input {
margin-left: 10rpx; font-size: 17rpx;
color: #484b59;
}
.uni-arrow {
width: 14rpx;
height: 9rpx;
background: url('https://img.ichunt.com/images/ichunt/202304/10/e4c72319ad41ce1425f71cc6ec35f111.png') no-repeat center;
background-size: contain;
margin-left: 12rpx;
}
}
} }
} }
.btn { .btn {
......
...@@ -42,6 +42,10 @@ ...@@ -42,6 +42,10 @@
</view> </view>
<view class="list row bothSide" v-if="list.length > 0"> <view class="list row bothSide" v-if="list.length > 0">
<view class="box box-width" v-for="(item, index) in list" :key="index"> <view class="box box-width" v-for="(item, index) in list" :key="index">
<view class="text-item row verCenter" v-if="item.sku_id">
<text class="label">自营货品ID:</text>
<text class="t1">{{ item.sku_id }}</text>
</view>
<view class="text-item row verCenter"> <view class="text-item row verCenter">
<text class="label">入库批次号:</text> <text class="label">入库批次号:</text>
<text class="t1">{{ item.stock_in_batch_sn }}</text> <text class="t1">{{ item.stock_in_batch_sn }}</text>
...@@ -132,6 +136,10 @@ ...@@ -132,6 +136,10 @@
<text class="label">货品编码:</text> <text class="label">货品编码:</text>
<text class="tt" style="max-width: 100%;">{{ detail.goods_sn }}</text> <text class="tt" style="max-width: 100%;">{{ detail.goods_sn }}</text>
</view> </view>
<view class="item row verCenter" style="flex: 0 0 100%;" v-if="detail.sku_id > 0">
<text class="label">自营货品ID:</text>
<text class="tt" style="max-width: 100%;">{{ detail.sku_id }}</text>
</view>
<view class="item row verCenter" style="flex: 0 0 100%;"> <view class="item row verCenter" style="flex: 0 0 100%;">
<text class="label">货品名称:</text> <text class="label">货品名称:</text>
<text class="tt" style="max-width: 100%;">{{ detail.goods_name }}</text> <text class="tt" style="max-width: 100%;">{{ detail.goods_name }}</text>
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<text class="label">总 数 量:</text> <text class="label">总 数 量:</text>
<text class="tt">{{ item.total_qty }}</text> <text class="tt">{{ item.total_qty }}</text>
</view> </view>
<view class="btn-box row"><navigator :url="'/pages/stockRecheck/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn" class="btn1 row rowCenter verCenter" hover-class="none">选择</navigator></view> <view class="btn-box row"><navigator :url="'/pages/stockRecheck/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn + '&warehouse_id=' + item.warehouse_id" class="btn1 row rowCenter verCenter" hover-class="none">选择</navigator></view>
</view> </view>
</view> </view>
<!-- 无数据展示 --> <!-- 无数据展示 -->
......
...@@ -32,6 +32,10 @@ ...@@ -32,6 +32,10 @@
<text class="label">货品编码:</text> <text class="label">货品编码:</text>
<text class="text">{{ item.goods_sn }}</text> <text class="text">{{ item.goods_sn }}</text>
</view> </view>
<view class="input-box row verCenter" v-if="item.sku_id">
<text class="label">自营货品ID:</text>
<text class="text">{{ item.sku_id }}</text>
</view>
<view class="input-box row verCenter"> <view class="input-box row verCenter">
<text class="label">货品名称:</text> <text class="label">货品名称:</text>
<text class="text">{{ item.goods_name }}</text> <text class="text">{{ item.goods_name }}</text>
......
...@@ -268,6 +268,10 @@ const API = { ...@@ -268,6 +268,10 @@ const API = {
* */ * */
getPackList: API_BASE + '/api/stockRecheck/getPackList', getPackList: API_BASE + '/api/stockRecheck/getPackList',
/** /**
* 打印货品标签
* */
RePrintTag: API_BASE + '/api/stockRecheck/RePrintTag',
/**
* 箱配置信息 * 箱配置信息
* */ * */
getBoxConfigList: API_BASE + '/api/stockRecheck/getBoxConfigList', getBoxConfigList: API_BASE + '/api/stockRecheck/getBoxConfigList',
......
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