Commit 0610c731 by LJM

bug

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