Commit a8768177 by liangjianmin

feat(picking,stockRecheck): 添加自营标识展示

- 在拣货列表、我的拣货及库存复核页面新增自营标识标签
- 当has_ziying为1时显示金色"自营"标签,提升业务类型识别度
- 统一标签样式:金色背景、白色文字、圆角设计
- 优化视觉层次,便于快速区分自营与非自营订单
parent 948d3668
......@@ -98,6 +98,16 @@
overflow: hidden;
}
.ziying-tag {
display: inline-block;
padding: 6rpx 20rpx;
background: #c9a86c;
border-radius: 8rpx;
font-size: 16rpx;
color: #ffffff;
margin-bottom: 11rpx;
}
.btn-box {
justify-content: flex-end;
......
......@@ -98,6 +98,16 @@
overflow: hidden;
}
.ziying-tag {
display: inline-block;
padding: 6rpx 20rpx;
background: #c9a86c;
border-radius: 8rpx;
font-size: 16rpx;
color: #ffffff;
margin-bottom: 11rpx;
}
.btn-box {
justify-content: flex-end;
......
......@@ -129,6 +129,16 @@
overflow: hidden;
}
.ziying-tag {
display: inline-block;
padding: 6rpx 20rpx;
background: #c9a86c;
border-radius: 8rpx;
font-size: 16rpx;
color: #ffffff;
margin-bottom: 11rpx;
}
.btn-box {
justify-content: flex-end;
......
......@@ -55,6 +55,7 @@
<text class="label">销售员:</text>
<text class="tt">{{ item.sale_name }}</text>
</view>
<view class="ziying-tag" v-if="item.has_ziying == 1">自营</view>
<view class="btn-box row">
<view class="btn row rowCenter verCenter" @click="take(item.stock_out_id, item.stock_out_sn, item.warehouse_id)">领取</view>
</view>
......
......@@ -59,6 +59,7 @@
<text class="label">销售员:</text>
<text class="tt">{{ item.sale_name }}</text>
</view>
<view class="ziying-tag" v-if="item.has_ziying == 1">自营</view>
<view class="btn-box row verCenter">
<!-- 出库单状态为全部锁库,则显示【释放】、【选择】按钮 -->
<template v-if="item.stock_out_status == 3">
......
......@@ -67,6 +67,7 @@
<text class="label">总 数 量:</text>
<text class="tt">{{ item.total_qty }}</text>
</view>
<view class="ziying-tag" v-if="item.has_ziying == 1">自营</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>
......
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