diff --git a/src/api/request2.js b/src/api/request2.js
index 1b5cf8fa..55b471b9 100644
--- a/src/api/request2.js
+++ b/src/api/request2.js
@@ -4236,3 +4236,32 @@ export function getBusinessType() {
data:{}
});
}
+
+/**
+ * 获取生产计划信息通过生产线和日期
+ * @param {*}
+ */
+
+export function getPlaneInfoByproductLine(productionLine,planDate) {
+ return request({
+ url: baseApi + "/wms/production-main/getPlanProductionByProductionLineAndPlanDate?productionLine="+productionLine+"&planDate="+planDate,
+ method: "get",
+ data:{}
+ });
+}
+
+/**
+ * 按
+ * @param {*}
+ */
+
+export function planReceiptSubmit(params) {
+ return request({
+ url: baseApi + "/wms/production-main/getPlanProductionByProductionLineAndPlanDate",
+ method: "post",
+ data:params
+ });
+}
+
+
+
diff --git a/src/common/basic.js b/src/common/basic.js
index c9793c7b..93bc8860 100644
--- a/src/common/basic.js
+++ b/src/common/basic.js
@@ -3,7 +3,9 @@ export {
maxPageSize
}
-import { calc } from '@/common/calc'
+import {
+ calc
+} from '@/common/calc'
let jobStatusList = [];
let itemStatusList = [];
@@ -17,8 +19,8 @@ let unplannedReceiptReasonList = [];
let unplannedIissueReason = [];
let scrapReasonList = [];
let inspectFailedReasonList = [];
-let switchList=[]
-let businessList=[]
+let switchList = []
+let businessList = []
//获取字典信息
@@ -35,8 +37,8 @@ export function clearCacheData() {
unplannedIissueReason = [];
scrapReasonList = [];
inspectFailedReasonList = [];
- switchList=[]
- businessList=[]
+ switchList = []
+ businessList = []
}
@@ -345,14 +347,14 @@ export function getSwitchInfoByCode(code) {
if (switchList.length == 0) {
switchList = uni.getStorageSync("switch")
}
-
+
for (let item of switchList) {
if (item.code == code) {
resultInfo = item
break;
}
}
- isCheck =resultInfo.effectiveSetValue=="TRUE"?true:false
+ isCheck = resultInfo.effectiveSetValue == "TRUE" ? true : false
return isCheck;
}
@@ -362,7 +364,7 @@ export function getBusinessTypeName(code) {
if (businessList.length == 0) {
businessList = uni.getStorageSync("businessType")
}
-
+
for (let item of businessList) {
if (item.code == code) {
resultInfo = item
@@ -854,7 +856,7 @@ export function getCurrDateTimes() {
var time = (new Date()).getTime();
return time;
}
-
+//2024717
export function getBatch() {
var date = new Date();
var year = date.getFullYear(); //年
@@ -863,6 +865,19 @@ export function getBatch() {
var batch = year.toString() + month.toString() + day.toString()
return batch;
}
+//20270717
+export function getBatch8() {
+ var date = new Date();
+ //获取日期部分
+ var year = date.getFullYear(); //年
+ var month = date.getMonth() + 1; //月
+ var day = date.getDate(); //日
+
+ month = month < 10 ? "0" + month : month;
+ day = day < 10 ? "0" + day : day;
+ return year + month + day;
+}
+
export function getCurrDate() {
var date = new Date();
@@ -995,7 +1010,7 @@ export function getDataSource(subList) {
item.subList.push(newDetail);
items.push(item)
} else {
- item.qty = calc.add(item.qty,detail.qty)
+ item.qty = calc.add(item.qty, detail.qty)
let newDetail = createDetailInfo(detail); //
item.subList.push(newDetail);
}
@@ -1048,12 +1063,12 @@ export function navigateBack(backIndex) {
* 深度克隆对象
* @param {*} target
*/
-export function deepCopyData(target) {
+export function deepCopyData(target) {
// 克隆原始类型和null
if (!(target !== null && (typeof target === 'object' || typeof target === 'function'))) {
return target;
}
-
+
let cloneTarget = Array.isArray(target) ? [] : {};
// 克隆对象和数组
for (const key in target) {
@@ -1061,4 +1076,4 @@ export function deepCopyData(target) {
}
return cloneTarget;
-}
+}
\ No newline at end of file
diff --git a/src/common/style/new_style.css b/src/common/style/new_style.css
index 86421cce..549b080d 100644
--- a/src/common/style/new_style.css
+++ b/src/common/style/new_style.css
@@ -1,2788 +1,2805 @@
-/*WMY 20220818 cssv1.0*/
-/*公共*/
-uni-page-head .uni-page-head {
- z-index: 98 !important;
- background-color: #fff !important;
-}
-
-uni-page-head .uni-page-head__title {
- font-weight: normal;
-}
-
-.whole {
- width: 100%;
-}
-
-.fl {
- float: left;
-}
-
-.fr {
- float: right;
-}
-
-.tc {
- text-align: center;
-}
-
-.text_bold {
- font-weight: bold;
-}
-
-.text_black {
- color: #101010;
-}
-
-.text_packingCode {
- color: #101010;
- word-break: break-all;
-}
-
-.text_lightblue {
- color: #6A6E7A;
-}
-
-.text_darkblue {
- color: #434556;
-}
-
-.text_blue {
- color: #5A7CF3;
-}
-
-.font_xs {
- font-size: 0.775rem;
-}
-
-.font_sm {
- font-size: 0.825rem;
-}
-
-.font_xl {
- font-size: 1.125rem;
-}
-
-.font_default {
- font-size: 1rem;
-}
-
-.margin_top {
- margin-top: 20rpx;
-}
-
-.margin_bottom {
- margin-bottom: 20rpx;
-}
-
-.margin_xs_top {
- margin-top: 10rpx;
-}
-
-.margin_xs_bottom {
- margin-bottom: 10rpx;
-}
-
-.margin_right {
- margin-right: 20rpx;
-}
-
-.margin {
- margin: 20rpx;
-}
-
-.padding_10 {
- padding: 10rpx;
-}
-
-.padding_15 {
- padding: 15rpx;
-}
-
-.padding_20 {
- padding: 20rpx;
-}
-
-.padding {
- padding: 20rpx;
-}
-
-.padding_bottom {
- padding-bottom: 20rpx;
-}
-
-.nopad {
- padding: 0 !important;
-}
-
-.nopad_bot {
- padding-bottom: 0 !important;
-}
-
-/*
-物料状态
-未知,可用,隔离,新增,规划,禁用
-*/
-
-.item_active {
- background-color: #5FCB94;
- color: #FFFFFF;
-}
-
-.item_hold {
- background-color: #FF4206;
- color: #FFFFFF;
-}
-
-.item_new {
- background-color: #E6A23C;
- color: #FFFFFF;
-}
-
-.item_plan {
- background-color: #2677F9;
- color: #FFFFFF;
-}
-
-.item_disable {
- background-color: #666;
- color: #FFFFFF;
-}
-
-/* 器具状态 */
-.container_empty {
- background-color: #FF4206;
- color: #FFFFFF;
-}
-
-.container_useing {
- background-color: #5FCB94;
- color: #FFFFFF;
-}
-
-
-.container_repair {
- background-color: #666;
- color: #FFFFFF;
-}
-
-.container_scrap {
- background-color: #E6A23C;
- color: #FFFFFF;
-}
-
-
-
-.scan_float {
- position: fixed;
- z-index: 10;
- right: 20rpx;
- bottom: 20%;
- width: 110rpx;
- height: 110rpx;
- background-color: #5A7CF3;
- border-radius: 50%;
- text-align: center;
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
- opacity: 0.8;
-}
-
-.scan_float image {
- width: 40rpx;
- height: 40rpx;
- margin-top: 10rpx;
-}
-
-.scan_float view {
- color: #fff;
- font-size: .725rem;
- margin-top: -8rpx;
-}
-
-.top_card {
- background-color: #5A7CF3;
- overflow: hidden;
- /* padding: 20rpx 0; */
-}
-
-.top_card .device-detail {
- /* margin-top: 0 !important; */
-}
-
-.top_card .mini-type-style {
- color: #fff !important;
- font-weight: normal;
- height: 46rpx;
-}
-
-.cen_card {
- padding: 0 0rpx;
- width: 100%;
- box-sizing: border-box;
- float: left;
-}
-
-.cell_box {
- width: 100%;
-}
-
-.cell_box .cell_info {
- position: relative;
- /* width: 25%; */
- padding: 0 20rpx;
- /* margin: 0 0 20rpx; */
- text-align: center;
-}
-
-.cell_box .cell_long {
- /* width: 33%; */
-}
-
-.cell_box .cell_info view {
- font-size: 0.9375rem;
- margin-bottom: 10rpx;
- color: #7B8195;
-}
-
-.cell_box .cell_info .text_black {
- font-size: 0.875rem;
- color: #101010;
-}
-
-.cell_box .cell_info .text_lightblue {
- color: #949CB6;
- font-size: 0.8rem;
-}
-
-.cell_box .cell_info::after {
- position: absolute;
- content: "";
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 1px;
- height: 20px;
- background-color: #ddd;
-}
-
-.cell_box .cell_info:last-child::after {
- width: 0;
-}
-
-.cen_card .label_box {
- margin-bottom: 20rpx;
-}
-
-.cen_card .label_box .label_info {
- background-color: #eee;
- color: #434556;
- font-size: 0.875rem;
- padding: 8rpx;
- border-radius: 8rpx;
- margin-right: 10rpx;
- vertical-align: middle;
-}
-
-.cen_card .label_box .label_info image {
- /* float: left; */
- vertical-align: middle;
-}
-
-.cen_card .label_box .label_info text {
- /* line-height: 1.25; */
- /* float: left; */
- vertical-align: middle;
-}
-
-.photo_btn {
- background-color: #ececec;
- color: #5A7CF3;
- font-size: 0.875rem;
- padding: 8rpx 10rpx;
- border-radius: 8rpx;
-}
-
-.photo_btn text {
- line-height: 1.5;
-}
-
-.cen_card .cell_box .text_black {
- font-size: 0.875rem;
-}
-
-.cen_card .cell_box .cell_info .text_lightblue {
- font-size: 0.925rem;
-}
-
-.bot_card {
- background-color: #f8f8f8;
- padding: 16rpx;
- overflow: hidden;
-}
-
-.bot_card_item {
- width: 50%;
- text-align: left;
- height: 60rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-
-/* .item_long{
- width: 32% !important;
-}
-*/
-.item_short {
- width: 20%;
-}
-
-.bot_card_item uni-text {
- font-size: .725rem;
- margin-left: 4rpx;
- color: #333333;
- background-color: transparent;
-}
-
-.bot_card_item .icon_state {
- float: left;
- margin-top: 22rpx;
-}
-
-.summary_wrap {
- padding: 20rpx;
- padding-top: 0;
-}
-
-.summary_state .state_point {
- font-size: 0.825rem;
-}
-
-.summary_item uni-text {
- font-size: 0.825rem;
-}
-
-.bot_card_item uni-text.state_point {
- background-color: transparent;
-}
-
-.bot_card_item label {
- vertical-align: middle;
-}
-
-.icon_normal {
- width: 58rpx;
- height: 58rpx;
- vertical-align: middle
-}
-
-.bot_card_item .icon_normal {
- float: left;
- width: 46rpx;
- height: 46rpx;
-}
-
-.icon_bg {
- display: inline-block;
- width: 46rpx;
- height: 46rpx;
- border-radius: 4rpx;
-}
-
-.icon_bg_xm {
- background-color: #45B5F3;
-}
-
-.icon_bg_kw {
- background-color: #5A7CF3;
-}
-
-.icon_bg_pc {
- background-color: #BF94EB;
-}
-
-.icon_state {
- display: inline-block;
- width: 20rpx;
- height: 20rpx;
- border-radius: 50%;
-}
-
-.state_point {
- background: none;
-}
-
-.title_tab {
- display: flex;
- justify-content: center;
- height: 100rpx;
-}
-
-.bottom {
- padding: 0 !important;
-}
-
-.uni-popup .uni-scroll-view {
- overflow: visible !important;
-}
-
-.uni-popup .uni-scroll-view-content {
- overflow-y: scroll;
- max-height: 94vh;
- background-color: #fff;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
-}
-
-.uni-popup .scroll-Y {
- padding-bottom: 0;
-}
-
-.popup_box {
- position: relative;
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
- background: #fff url(@/static/icons_ui/popup_bot_bg.png) no-repeat left top;
- background-size: 100%;
- max-height: 93vh;
-}
-
-.popup_box .pop_title {
- font-size: 0.9rem;
- font-weight: bold;
- color: #fff;
- padding: 20rpx 20rpx;
- font-size: 35rpx;
-}
-
-.popup_box .pop_title text {
- font-size: 0.9rem;
- font-weight: normal;
-}
-
-.popup_box .uni-steps {
- width: 98%;
-}
-
-.popup_box .top_bg {
- width: 100%;
- height: inherit;
-}
-
-.popup_box .pop_tab {
- padding: 20rpx;
- box-sizing: border-box;
- width: 100%;
-}
-
-.popup_box .pop_tab .tab_tit {
- font-size: .825rem;
- text-align: center;
- color: #333;
- background-color: #fff;
- /* width: 30%; */
- box-sizing: border-box;
- padding: 10rpx 16rpx;
- border-top-left-radius: 8rpx;
- border-top-right-radius: 8rpx;
- margin-right: 6rpx;
-}
-
-.popup_box .pop_tab .tab_tit_active {
- color: #5A7CF3;
- font-weight: bold;
- /* font-size: 0.875rem; */
-}
-
-.popup_box .pop_tab .tab_info {
- position: relative;
- background-color: #fff;
- border-radius: 8rpx;
- box-shadow: 0 6rpx 20rpx rgba(90, 124, 143, 0.1);
- min-height: 100rpx;
-}
-
-.popup_box .pop_tab .tab_info textarea {
- height: 320rpx;
-}
-
-.popup_box .pop_tab .tab_info .uni-textarea-placeholder {
- font-size: 0.825rem;
-}
-
-.popup_box .scan_scroll {
- max-height: 41vh;
- width: 100%;
- overflow-x: hidden;
- overflow-y: scroll;
-}
-
-.popup_box .scan_scroll .uni-scroll-view-content {
- /* width: 104%; */
- overflow-x: hidden;
- background-color: transparent;
-}
-
-.popup_box .pop_tab .next_info {
- box-shadow: 0 0 20rpx rgba(90, 124, 143, 0.1);
-}
-
-.popup_box .pop_tab .tab_notitle {
- border-radius: 8rpx;
-}
-
-.popup_box .pop_tab .tab_info button {
- position: absolute;
- bottom: 10rpx;
- right: 20rpx;
- background: #3C9CFF;
- color: #fff;
- border: 0;
- border-radius: 8rpx;
- width: 130rpx;
- float: right;
- font-size: .725rem;
-}
-
-.popup_box .pop_tab .tab_info textarea {
- padding-top: 20rpx;
-}
-
-.list_wrap {
- margin: 20rpx;
-}
-
-.ljh_box {
- padding: 20rpx;
- z-index: 10;
- width: 100%;
- float: left;
- box-sizing: border-box;
-}
-
-.ljh_left {
- margin-top: 10rpx;
-}
-
-/* .ljh_right{
- float: right;
-} */
-.ljh_right uni-text {
- line-height: 1.5;
-}
-
-.ljh_right .tnum .num_edit {
- background-color: #FFF9DB;
- width: 150rpx;
-}
-
-.ljh_right .tnum {
- font-size: 1.25rem;
- color: #EC5B28;
- font-weight: bold;
- margin-right: 4rpx;
-}
-
-.ljh_right .tunit {
- font-size: 0.875rem;
- color: #F5AB91;
-}
-
-.ljh_box .tit_ljh {
- line-height: 1.5;
- font-size: 0.875rem;
- color: #101010;
- font-weight: bold;
- word-break: break-all;
-}
-
-.ljh_box .tit_ljh .mini-type-style {
- float: left;
- margin-top: 10rpx;
- padding: 0 8rpx;
- font-size: 0.725rem;
-}
-
-.ljh_box .tit_ljh .state-style,
-.top_card .state-style {
- font-size: .625rem;
- padding: 4rpx 6rpx;
- margin-right: 8rpx;
- vertical-align: middle;
- font-weight: normal;
- border-radius: 4rpx;
- color: #fff;
-}
-
-.ljh_box .tit_ljh .state-style {
- /* padding: 6rpx; */
-}
-
-.ljh_box .tit_ljh text {
- float: left;
-}
-
-.ljh_box .desc_ljh {
- line-height: 1.5;
-}
-
-.label_normal {
- margin-top: 20rpx;
-}
-
-.label_normal .label_col image {
- float: left;
- vertical-align: middle;
-}
-
-.label_normal .label_col text {
- font-size: 0.825rem;
- line-height: 1.25;
- float: left;
- color: #434556;
-}
-
-.lo_cellbox {
- margin-top: 20rpx;
-}
-
-.lo_cellbox .cell_info {
- margin-bottom: 0;
-}
-
-/*提交按钮*/
-.new_btn_bot {
- position: fixed;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- width: 100%;
- background-color: #fff;
- padding: 20rpx;
- z-index: 10;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
-}
-
-.bot_pos {
- position: initial;
-}
-
-.new_btn_bot .new_save_btn {
- background-color: #E7ECFF;
- color: #5A7CF3;
- font-size: .875rem;
-}
-
-.new_btn_bot .new_clear_btn {
- background-color: #FFDADD;
- color: #f00;
- font-size: .875rem;
- margin-right: 20rpx;
-}
-
-.new_btn_bot .new_cancel_btn {
- background-color: #eee;
- color: #333;
- font-size: .875rem;
- margin-right: 20rpx;
-}
-
-.new_btn_bot .btn_double {
- width: 50%;
-}
-
-.new_btn_bot uni-button:after {
- border: 0;
-}
-
-.choose_main {
- position: relative;
- z-index: 2;
-}
-
-.choose_layout {
- position: relative;
- width: 100%;
- height: 130rpx;
- background-color: #fff;
-
-}
-
-.choose_icon_layout {
- position: absolute;
- right: 160rpx;
- top: 10rpx;
- bottom: 0rpx;
- /* width: 100rpx;
- height:100rpx; */
-}
-
-.choose_icon {
- margin-top: 5rpx;
- margin-bottom: 10rpx;
- width: 100rpx;
- height: 100rpx;
-}
-
-.choose_marked {
- position: absolute;
- width: 100%;
- /* height: 100%; */
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-top: 6rpx solid #5FCB94;
- background-image: linear-gradient(rgba(95, 203, 148, 0.5), rgba(95, 203, 148, 0));
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
-}
-
-.choose_marked_faild {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- border-top: 6rpx solid #FF0000;
- background-image: linear-gradient(rgba(255, 100, 97, 0.3), rgba(255, 100, 97, 0));
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
-}
-
-.nodeliver_tag {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
- border-top: 6rpx solid #F54D4D;
- background-image: linear-gradient(rgba(245, 77, 77, 0.1), rgba(245, 77, 77, 0));
-
-}
-
-.choose_marked image {
- float: right;
- margin-right: 28%;
- margin-top: 20rpx;
- width: 120rpx;
- height: 120rpx;
-}
-
-.choose_marked_faild image {
- float: right;
- margin-right: 28%;
- margin-top: 20rpx;
- width: 120rpx;
- height: 120rpx;
-}
-
-.pop_list {
- background-color: #fff;
- /* padding: 20rpx; */
- padding-top: 0;
- margin-top: 20rpx;
-}
-
-.uni-scroll-view-content .creattp_list {
- padding: 6rpx 20rpx 0;
- box-sizing: border-box;
- width: 96%;
-}
-
-.list_info .uni-scroll-view-content {
- max-height: 10vh;
-}
-
-.pop_list .detail-content {
- margin-bottom: 20rpx;
- border-radius: 16rpx;
- overflow: hidden;
- box-shadow: 0 0 14rpx rgba(0, 0, 0, 0.1);
-}
-
-.pop_btn {
- padding: 20rpx;
- padding-top: 0;
-}
-
-.pop_btn button {
- width: 49%;
- height: 90rpx;
- line-height: 90rpx;
- font-size: 0.875rem;
- margin: 0;
- color: #333;
-}
-
-.pop_btn button::after {
- border: 0;
-}
-
-.pop_btn .cancel {
- background-color: #eee;
-}
-
-.pop_btn .save {
- background-color: #5A7CF3;
- color: #fff;
-}
-
-.popinpop {
- margin: 10px 1%;
- border-radius: 8px;
- background-color: #fff;
- color: #666666;
- line-height: 1.5;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
- width: 98%;
-
-}
-
-.scan_btn:after {
- border: 8rpx;
-}
-
-.popup_box .pop_tab .tab_info .clean_scan_btn {
- background-color: #eee;
- color: #333;
- margin-right: 140rpx;
- border-radius: 8rpx;
-}
-
-.popup_box .pop_tab .tab_info .clean_scan_btn::after {
- border: 0;
-}
-
-/*检验任务-topline*/
-.card_task {
- padding: 20rpx;
- padding-bottom: 0;
-}
-
-.task_num {
- border-bottom: 1px solid #eee;
- padding-bottom: 10rpx;
- margin-bottom: 10rpx;
- overflow: hidden;
-}
-
-.top_card .task_num {
- border: 0;
-}
-
-.task_num image {
- vertical-align: middle;
- margin-right: 10rpx;
-}
-
-.task_num text {
- color: #333;
- vertical-align: middle;
-}
-
-.label_order image {
- /* vertical-align: text-bottom; */
- vertical-align: middle;
-}
-
-.label_order text {
- font-size: .825rem;
- vertical-align: middle;
-}
-
-.tit_jxs {
- font-size: 1rem !important;
- margin-bottom: 10rpx;
-}
-
-.tit_jxs .state-style {
- vertical-align: middle;
- margin-top: 6rpx;
-}
-
-/* 为按序发货添加 */
-/* .state-style{
- background-color: #ececec;
-} */
-.receipt_bot {
- justify-content: space-between;
- border-top: 1px solid #eee;
- padding-top: 10rpx;
-}
-
-/*收货列表*/
-.require_wrap {
- background-color: #fff;
- padding: 20rpx;
-}
-
-.require_wrap uni-button:after {
- border: 0;
-}
-
-.require_wrap .require_cell {
- background: #f5f5f5;
- font-size: .825rem;
- padding: 10rpx 20rpx;
- margin-right: 20rpx;
- border-radius: 50rpx;
- line-height: 1.5;
- margin-left: 0;
- border: 1px solid #f5f5f5;
-}
-
-.require_wrap .require_active {
- border: 1px solid #5A7CF3;
- background-color: #EFF6FF;
- color: #5A7CF3;
-}
-
-.require_wrap .require_active text {
- display: inline-block;
- width: 20rpx;
- height: 20rpx;
- background-color: #5A7CF3;
- border-radius: 50%;
- float: left;
- margin: 12rpx 10rpx 12rpx 0;
-}
-
-.list_inspect .uni-input-input {
- color: #f00;
-}
-
-.list_form {
- padding: 20rpx;
- padding-top: 0;
-}
-
-.list_form .uni-table-tr {
- background-color: #f8f8f8;
- color: red;
-}
-
-.list_form .uni-table-th {
- padding: 10rpx !important;
- border-bottom: 1px solid #ececec;
- font-weight: normal !important;
- font-size: 0.775rem;
- color: red;
-}
-
-.list_form .uni-easyinput {
- background-color: #FFF9DB;
-}
-
-.list_form .uni-easyinput__content {
- min-height: 50rpx !important;
- text-align: center;
-}
-
-.count_shadow {
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
-}
-
-.count_list {
- font-size: 0.8rem;
- color: #0F5EFF;
- padding: 10rpx 0;
-}
-
-.count_list text:first-child {
- margin-left: 0;
-}
-
-.count_list text {
- margin: 10rpx;
-}
-
-.popuni_list::after {
- height: 0 !important;
-}
-
-.uni-list .list_cell {
- margin-bottom: 20rpx;
- height: 100rpx;
- align-items: center;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
-}
-
-.uni-list .list_cell:last-child {
- margin-bottom: 0;
-}
-
-.uni-list .list_cell .is-input-border {
- border: 0;
-}
-
-.uni-list .list_cell .title {
- padding-left: 20rpx;
- font-size: 0.875rem;
-}
-
-.uni-list .list_cell .info {
- padding-right: 20rpx;
- color: #333;
- font-size: 0.875rem;
-}
-
-.popuni_list .list_cell {
- background-color: #fff;
- border-radius: 8rpx;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
-}
-
-.popuni_list .list_cell .uni-data-tree-input {
- padding-left: 0;
-}
-
-.popuni_list .list_cell .input-value-border {
- border: 0;
- padding: 0;
-}
-
-.popuni_list .list_cell .selected-list {
- padding-left: 0;
-}
-
-/* .uni-list .list_cell .necessary_tag{
- padding-right: 0;
- color: #f00;
-} */
-.uni-list .list_cell .uni-easyinput {
- padding-right: 20rpx;
- text-align: right;
- box-sizing: border-box;
- border: 0;
-}
-
-.uni-list .list_cell .uni-input-input {
- font-size: 0.875rem;
-}
-
-.list_card {
- margin-top: 20rpx;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
-}
-
-.list_card:first-child {
- margin-top: 10rpx;
-}
-
-.inspect_form .uni-label {
- font-size: 0.875rem;
-}
-
-.pda-list-cell-db .is-input-border,
-.pda-list-cell-db .input-value-border {
- border: 0 !important;
-}
-
-.list_locode {
- padding: 20rpx;
- padding-top: 0;
-}
-
-.inspect_card {
- background-color: #fff;
- margin: 20rpx;
- border-radius: 16rpx;
-}
-
-.inspect_card .ljh_box text {
- line-height: 1.75;
-}
-
-.inspect_list_locode {
- border-bottom: 1px solid #eee;
- padding-bottom: 20rpx;
-}
-
-.inspect_list_locode image {
- vertical-align: middle;
-}
-
-.default_nodata {
- position: relative;
- left: 50%;
- transform: translateX(-50%);
- margin-top: 100rpx;
- width: 390rpx;
- height: 300rpx;
-
-}
-
-
-.default_goscan {
- width: 100%;
-}
-
-.default_goscan .img_goscan {
- position: relative;
- width: 500rpx;
- height: 500rpx;
- left: 50%;
- transform: translateX(-50%);
-}
-
-.default_goscan button {
- width: 60%;
- height: 100rpx;
- background-color: #5A7CF3;
- color: #fff;
- border-radius: 50rpx;
- text-align: center;
- line-height: 100rpx;
-}
-
-.default_goscan button image {
- width: 30rpx;
- height: 30rpx;
- margin-right: 20rpx;
- vertical-align: middle;
- margin-top: -8rpx;
-
-}
-
-.new_bot_box {
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- background-color: transparent;
- z-index: 10;
-}
-
-.new_bot_box .uni-collapse {
- background-color: transparent !important;
-}
-
-.new_bot_box .uni-collapse-item__title.uni-collapse-item-border {
- width: 96%;
- margin: 0 2%;
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
- overflow: hidden;
- text-align: center;
-}
-
-.new_bot_box .uni-collapse-item__title-text {
- padding-left: 40rpx;
-}
-
-.new_bot_box .uni-collapse-item__title.uni-collapse-item-border,
-.new_bot_box .uni-collapse-item__title-box {
- background-color: #7B8195 !important;
- color: #fff !important;
-}
-
-.new_bot_box .uni-collapse-item__title-box {
- height: 80rpx !important;
- line-height: 80rpx !important;
-}
-
-.new_bot_box .content {
- background-color: #fff !important;
-}
-
-.new_bot_box .content .uni-easyinput {
- box-sizing: border-box;
-}
-
-.new_bot_box .content .uni-data-picker,
-.new_bot_box .input-value,
-.new_bot_box .uni-input-input,
-.new_bot_box .selected-item,
-.new_bot_box .placeholder,
-.new_bot_box .uni-easyinput__content-input {
- font-size: 0.875rem !important;
-}
-
-.new_bot_box .content .tit_bot_box {
- padding: 20rpx 20rpx 10rpx;
- font-size: 0.875rem;
-}
-
-.new_bot_box .uni-collapse-item__wrap-content.uni-collapse-item--border {
- border: 0;
-}
-
-.new_bot_box .border .uni-easyinput {
- border: 1px solid #e5e5e5;
- border-radius: 10rpx;
-}
-
-.hold_form .uni-table-th-content {
- font-weight: normal;
- font-size: 0.775rem;
-}
-
-.top_wrap {
- padding: 20rpx;
- background-color: #fff;
-}
-
-.top_wrap .top_card {
- border-radius: 8px;
- color: #fff;
- line-height: 100rpx;
-}
-
-.top_wrap .top_card .top_lines_info {
- padding: 0 20rpx;
-}
-
-.top_wrap .top_card .top_lines_info text {
- font-size: 0.9rem;
- margin-left: 10rpx;
-}
-
-/* 按序收货 */
-.recept_form {
- padding: 20rpx;
-}
-
-.recept_form .form_title {
- padding: 20rpx 20rpx 0;
-}
-
-.recept_form .form_title image {
- float: left;
- margin-top: 10rpx;
- margin-right: 10rpx;
-}
-
-.recept_form .form_title text {
- font-size: 1rem;
- vertical-align: middle;
-}
-
-.recept_form .table--border {
- border: 0 !important;
-}
-
-.recept_form th {
- background-color: #F3F6FF;
- color: #434556 !important;
-}
-
-.recept_form th.table--border,
-.recept_form td.table--border {
- border: 0;
-}
-
-.recept_form .recept_form_info {
- background-color: #fff;
- border-radius: 16rpx;
- padding-bottom: 16rpx;
-}
-
-.recept_form .uni-table-td {
- font-size: 0.8rem;
-}
-
-/* 天津发货详情 */
-.deliver_card {
- flex: 1;
- line-height: 30px;
- margin: 20rpx 20rpx 0;
- border-radius: 16rpx;
- overflow: hidden;
- background-color: transparent;
- position: relative;
- border-bottom-color: #f5f5f5;
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-.deliver_card .card_info {
- background-color: #fff;
-}
-
-.deliver_card .deliverState {
- background-color: #fff;
- padding: 20rpx 10rpx;
- background-color: transparent;
- border-left: 10rpx solid transparent;
-}
-
-.deliver_card .deliverState .content-text image {
- vertical-align: text-bottom;
- margin-right: 6rpx;
-}
-
-.deliver_card .deliverState .content-text text {
- margin-right: 10rpx;
-}
-
-.deliver_card .deliverState1 {
- background-color: #fff;
- border-left: 10rpx solid #F6CB61;
-}
-
-.deliver_card .deliverState3 {
- background-color: #fff;
- border-left: 10rpx solid #5FCB94;
-}
-
-.deliver_card .deliverState4 {
- background-color: #fff;
- border-left: 10rpx solid #EC5B28;
-}
-
-.deliver_card .card_state {
- border: 1px solid transparent;
- padding: 0 20rpx;
- font-size: 0.8rem;
- position: absolute;
- right: 20rpx;
- top: 50%;
- transform: translateY(-50%);
- border-radius: 80rpx;
-}
-
-.deliver_card .tjpending {
- border-color: #F6CB61;
- color: #F6CB61;
-}
-
-.deliver_card .tjsent {
- border-color: #5FCB94;
- color: #5FCB94;
-}
-
-.deliver_card .tjnosend {
- border-color: #EC5B28;
- color: #EC5B28;
-}
-
-.login_wrap {
- width: 100%;
- position: relative;
- top: -20rpx;
- background-color: #fff;
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
-}
-
-.login_title {
- position: absolute;
- top: 120rpx;
- left: 30rpx;
- color: #fff;
- font-size: 1.125rem;
- font-weight: bold;
- letter-spacing: 4rpx;
- line-height: 1.5;
-}
-
-.login_title text {
- font-size: 1.125rem;
- letter-spacing: 0;
-}
-
-/* 登录 */
-.mybox .is-input-border {
- border: 0 !important;
-}
-
-/* 消息列表 */
-.msg_body {
- background-color: #fff;
-}
-
-.msg_list {
- padding-top: 20rpx;
-}
-
-.msg_list .uni-list-chat__header {
- width: 60rpx !important;
- height: 60rpx !important;
- background-color: #3d7eff;
- border-color: transparent !important;
- border-radius: 6rpx !important;
-}
-
-.msg_list .uni-list--border-top,
-.msg_list .uni-list--border-bottom,
-.msg_list .uni-list--border:after,
-.msg_body .uni-list:after {
- height: 0 !important;
-}
-
-.msg_list .uni-list-chat__header-image {
- width: 50rpx !important;
- height: 50rpx !important;
-}
-
-.msg_list .uni-badge--dot {
- left: inherit !important;
- right: 20rpx;
- top: 40rpx !important;
-}
-
-.msg_list .uni-list-chat__content-title {
- font-size: .9rem !important;
-}
-
-.msg_list .hasread .uni-list-chat__header {
- background-color: #ccc;
-}
-
-/* index */
-.index_top {
- background-color: #5A7CF3;
- width: 100%;
-}
-
-.index_top .uni-searchbar {
- padding-right: 0 !important;
-}
-
-.index_top .index_btn {
- background-color: transparent;
- font-size: 0.825rem;
- padding: 0 0.9rem;
-
-}
-
-.index_top uni-button:after {
- border: 0 !important;
-}
-
-.index_top .uni-searchbar__box {
- background-color: rgba(255, 255, 255, 0.3) !important;
- border-color: transparent !important;
- justify-content: inherit !important;
-}
-
-.index_top .uni-searchbar__text-input,
-.uni-searchbar__box-icon-search,
-.index_top .uniui-search {
- color: #fff !important;
-}
-
-.index_top .uni-searchbar__text-placeholder,
-.index_top .uni-input-placeholder {
- color: #eee !important;
-}
-
-.index_top .uni-input-input {
- color: #fff;
-}
-
-.common_title {
- font-size: .825rem;
- font-weight: bold;
-}
-
-.common_icons {
- width: 100%;
- padding: 20rpx;
- box-sizing: border-box;
-}
-
-.common_icons .common_info {
- position: relative;
- top: -120rpx;
- background-color: #fff;
- width: 100%;
- box-sizing: border-box;
- padding: 20rpx;
- border-radius: 16rpx;
-
- /* box-shadow: 0 0 10rpx rgba(0,0,0,0.1); */
-}
-
-.common_icons .common_info .common_cell {
- margin-right: 20rpx;
- text-align: center;
-}
-
-.common_icons .common_info .common_cell .cell_icon {
- background-color: #EEF2FE;
- border-radius: 50%;
- width: 110rpx;
- height: 110rpx;
- margin: 20rpx 20rpx 0;
-}
-
-.common_icons .common_info .common_cell .cell_icon image {
- float: left;
- width: 50rpx;
- height: 50rpx;
- margin: 35rpx;
-}
-
-.common_icons .common_info .cell_last {
- margin-right: 0;
-}
-
-uni-tabbar .uni-tabbar-border {
- height: 0;
-}
-
-.index_menu {
- width: 100%;
- float: left;
- margin-top: -100rpx;
- /* height: calc(100% - 200px); */
-}
-
-.index_menu .menu_content {
- width: 26%;
- text-align: center;
- float: left;
- height: 100%;
- overflow-y: scroll;
-}
-
-.index_menu .index_title .title_left {
- width: 100%;
- border-left: 2px solid transparent;
- line-height: 80rpx;
- font-size: 0.825rem;
- text-align: center;
-}
-
-.index_menu .menu_content .index_title {
- width: 100%;
- float: left;
- line-height: 100rpx;
- font-size: 0.825rem;
-}
-
-.index_menu .menu_content .tit_active {
- box-sizing: border-box;
- background-color: #fff;
- border-left: 2px solid #5A7CF3;
- font-weight: bold;
- float: left;
-}
-
-.index_menuinfo {
- width: 74%;
- float: left;
- box-sizing: border-box;
- padding: 20rpx;
- position: relative;
- overflow-y: scroll;
- background-color: #fff;
- /* height: 100%; */
-
-}
-
-.menu_ab {
- position: absolute;
- top: 420rpx;
- left: 0;
- width: 100%;
- z-index: 10;
- /* height: calc(100% - 185px); */
-
-}
-
-.index_menuinfo .icon_block {
- position: relative;
- text-align: center;
- width: 33%;
- float: left;
- /* margin-top: -10rpx; */
-}
-
-.index_menuinfo .icon_block image {
- float: left;
- width: 80%;
- height: 80rpx;
- margin: 3% 10% 0;
-}
-
-.index_menuinfo .icon_block text {
- float: left;
- width: 100%;
- font-size: .8rem;
- height: 80rpx;
- color: #101010;
-}
-
-.index_menuinfo .icon_block .index_badge {
- width: 42rpx;
- height: 42rpx;
- font-size: 0.6rem;
- background-color: #c00;
- position: absolute;
- right: 0;
- color: #fff;
- text-align: center;
- line-height: 42rpx;
- border-radius: 50%;
-}
-
-uni-tabbar.uni-tabbar-bottom .uni-tabbar {
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
-}
-
-uni-modal .uni-modal__bd {
- font-size: 1rem !important;
- color: #000 !important;
-}
-
-.passwordpage .uni-forms-item__label .label-text {
- font-size: 0.8rem !important;
-}
-
-.passwordpage .is-input-border {
- border: 0 !important;
-}
-
-.passwordpage .is-direction-left {
- padding: 10rpx 20rpx;
- background-color: #fff;
- /* margin: 20rpx 0; */
-}
-
-.passwordpage .uni-forms-item__inner {
- padding-bottom: 10rpx !important;
-}
-
-.passwordpage .new_save_btn {
- font-size: 1rem;
-}
-
-.personal uni-button:after {
- border: 0 !important;
-}
-
-.personal .uni-list:after {
- height: 0 !important;
-}
-
-.personal .uni-list-item__icon {
- margin-right: 0 !important;
-}
-
-.personal .uni-list-item__extra-text {
- font-size: 1rem !important;
- color: #101010 !important;
- font-weight: bold;
-}
-
-.personal .uni-list--border-top,
-.uni-list--border-bottom,
-.uni-list--border::after {
- background-color: transparent !important;
-}
-
-uni-modal .uni-modal__ft {
- font-size: 0.875rem;
-}
-
-uni-modal .uni-modal__title {
- color: #333;
-}
-
-uni-modal .uni-modal__bd {
- padding: 1.3em 1.6em 1.3em;
- min-height: 40px;
- /* font-size: 15px; */
- line-height: 1.4;
- /* color: #999; */
- max-height: 400px;
- overflow-x: hidden;
- overflow-y: auto;
-}
-
-uni-modal .uni-modal__hd {
- padding: 1em 1.6em .3em;
- height: 30px;
-}
-
-/*dy_add*/
-.btn_unusual button {
- margin-right: 10rpx;
-}
-
-.btn_unusual button:last-child {
- margin-right: 0;
-}
-
-/* .tit_ljh .text_white{
- color: #fff !important;
- font-size: 0.725rem;
- font-weight: normal;
- padding: 4rpx;
-} */
-.bot_card .pending {
- color: #5FCB94;
-}
-
-.camera_pop {
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
-}
-
-.camera_list {
- padding: 20rpx;
- box-sizing: border-box;
- max-height: 75vh;
- overflow-y: scroll;
-}
-
-.camera_list .list_cell {
- border-bottom: 1px solid #eee;
- box-shadow: none;
- margin-bottom: 0;
-}
-
-.camera_list .list_cell .uni-easyinput {
- padding-right: 0;
-}
-
-.camera_list .list_cell .title {
- color: #666;
-}
-
-.camera_list .selected-item {
- font-size: 0.875rem;
-}
-
-.camera_list .input-value span {
- padding: 0;
- font-size: 0.875rem;
-}
-
-.camera_pop .pop_btn {
- background-color: #fff;
-}
-
-.cell_box .result_card .text_black {
- font-size: 1rem;
-}
-
-.cell_box .result_card .red {
- color: #c00;
-}
-
-.new_btn_bot .btn_triple {
- margin-right: 10rpx;
-}
-
-.cell_box .scan_btn_fr {
- float: right;
- background-color: #ececec;
- color: #5A7CF3;
- font-size: 0.725rem;
- padding: 10rpx 20rpx;
- border-radius: 16rpx;
- line-height: 2;
- margin: 0 20rpx 20rpx 0;
- height: 60rpx;
-}
-
-.cell_box .scan_btn_fr image {
- /* margin-top: 4rpx; */
- /* float: left; */
-}
-
-.cell_box .scan_btn_fr text {}
-
-.login_wrap .content-clear-icon {
- display: none;
-}
-
-.login_wrap .conone .uni-easyinput {
- padding-left: 10rpx !important;
-}
-
-.quality_cell {
- height: auto !important;
-}
-
-.quality_cell .title {
- line-height: 80rpx;
- color: #666;
-}
-
-.check_textarea {
- font-size: 0.875rem;
- color: #333;
-}
-
-.check_textarea uni-textarea {
- padding: 10rpx 20rpx;
- height: 40px;
-}
-
-.check_textarea .uni-textarea-placeholder {
- font-size: 0.875rem;
- color: #ccc;
-}
-
-.common_card .ljh_box,
-.pop_card .ljh {
- width: 100%;
- box-sizing: border-box;
-}
-
-.common_card .ljh_box .tit_ljh,
-.pop_card .ljh_box .tit_ljh {
- float: left;
- width: 50%;
-}
-
-.common_card .ljh_info,
-.pop_card .ljh_info {
- width: 100%;
- box-sizing: border-box;
-}
-
-.common_card .desc_card,
-.pop_card .desc_card {
- width: 100%;
- box-sizing: border-box;
- padding: 0;
-}
-
-.common_card .label_xm,
-.pop_card .label_xm {
- background-color: #45B5F3;
- line-height: 2.0;
- padding: 0 10rpx;
- color: #fff;
- border-radius: 8rpx;
- max-width: 300rpx;
- font-size: 0.7rem;
- overflow: visble;
- word-break: break-all;
- /* overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-size: 0.7rem;*/
-}
-
-.result_nodata text {
- display: inline-block;
- width: 100%;
- text-align: center;
- color: #999;
- font-size: 1.125rem;
- margin-top: -20rpx;
-}
-
-.passwordpage .uni-forms-item__label {
- width: 180rpx !important;
-}
-
-/* 20221114add */
-.semi_col {
- margin-top: 0;
-}
-
-.semi_col .uni-collapse-item__title-text span {
- font-size: 1rem;
- /* font-weight: bold; */
-}
-
-.semi_col .common_card .ljh_box .tit_ljh {
- font-size: 1rem;
- width: 56%;
- /* font-weight: normal; */
-}
-
-.semi_col .num_color {
- color: #EC5B28;
-}
-
-.issuelist {
- position: relative;
-}
-
-.issuelist .notuse,
-.issuelist .use {
- float: right;
- color: #333;
- font-size: 0.825rem;
-}
-
-.issuelist .notuse image,
-.issuelist .use image {
- vertical-align: middle;
-}
-
-.issuecard .task_num {
- border: 0;
- margin-bottom: 0;
- padding: 0;
-
- border-bottom: 1px solid #eee;
- padding-bottom: 10rpx;
- margin-bottom: 10rpx;
- overflow: hidden;
-}
-
-.issuelist .tag_icon {
- width: 94rpx;
- height: 94rpx;
- position: absolute;
- right: 0;
- top: -6rpx;
-}
-
-button::after {
- border: none;
- border-radius: 0;
-}
-
-.btn_confirm {
- width: 50%;
- border: none;
- background: #009EFF;
- border-radius: 0;
- color: #FFFFFF;
-}
-
-.btn_cancle {
- width: 50%;
- border: none;
- background: #FFFFFF;
- border-radius: 0;
- color: #000000;
-}
-
-.line_color {
- /* color: #E7E6E4; */
- color: #F5EBF4;
- /* padding-top: 10rpx;
- padding-bottom: 10rpx; */
-}
-
-
-
-.filter_button {
- font-size: 28rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- /* width: 240rpx; */
- color: #fff;
- background-color: #3C9CFF;
-}
-
-.filter_button_after {
- opacity: 0.7;
-}
-
-.btn_edit_big_confirm {
- font-size: 35rpx;
- width: 50%;
- color: #fff;
- background-color: #3C9CFF;
- border: none;
- border-radius: 0;
-}
-
-.btn_edit_big_cancle {
- font-size: 35rpx;
- width: 50%;
- color: #303133;
- border: none;
- border-radius: 0;
- box-shadow: none;
- background-color: #fff;
-
-}
-
-.btn_edit_big_after {
- opacity: 0.7;
-}
-
-.btn_add_big {
- background-color: #D8D8D8;
- color: #fff;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
-}
-
-.icons_close {
- width: 70rpx;
- height: 70rpx;
- margin: 10rpx;
-}
-
-.paizhao {
- padding-bottom: 10rpx;
- padding-top: 20rpx;
- padding-left: 20rpx;
-}
-
-.paizhao image {
- width: 50rpx;
- height: 50rpx;
-}
-
-.card_partCode {
- font-size: 36rpx;
- font-weight: 500;
- padding: 10rpx;
-
-}
-
-.card_itemCode {
- font-size: 40rpx;
- font-weight: bold;
- /* padding: 5rpx 10rpx; */
- /* width: 210rpx; */
- word-wrap: break-word;
- word-break: break-all;
-}
-
-.card_itemName {
- color: #909399;
- font-size: 30rpx;
- /* padding: 5rpx 10rpx; */
- /* width: 210rpx; */
- word-wrap: break-word;
- word-break: break-all;
-}
-
-.card_ProdLine {
- color: #909399;
- font-size: 30rpx;
- padding: 5rpx 30rpx;
-}
-
-
-/* .std_pack {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 0px;
- color: #909399;
- font-size: 30rpx;
-}
- */
-
-
-.card_content {
- font-size: 35rpx;
- font-weight: bold;
- padding: 5px;
-}
-
-.card_icon_normal {
- width: 45rpx;
- height: 45rpx;
- vertical-align: middle
-}
-
-.card_packing_code {
- color: #3315EB;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_batch {
- color: #9747FF;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_container {
- color: #0076F6;
- padding: 5px;
- font-size: 35rpx;
-}
-
-
-.card_container_content {
- font-size: 32rpx;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_business {
- color: #F1A532;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_business_content {
- font-size: 32rpx;
- padding: 5px;
-}
-
-.card_location {
- color: #DA8910;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_to_location {
- color: #329362;
- padding: 5px;
- font-size: 35rpx;
-}
-
-.card_location_content {
- font-size: 32rpx;
- padding: 5px;
-}
-
-.card_supportCode {
- color: #DA8910;
- padding: 5px;
-}
-
-.card_supportCode_content {
- font-size: 32rpx;
-}
-
-.card_item_code {
- color: #F1A532;
- padding: 5px;
-}
-
-.card_product_date {
- color: #329362;
- padding: 5px;
-}
-
-.card_order {
- color: #0076F6;
- padding: 5px;
-}
-
-.scan_view {
- /* #0CC2B6 20% */
- background: linear-gradient(90deg, rgba(12, 194, 182, 0.2) 0%, rgba(12, 194, 182, 0) 100%)
-}
-
-.card_view {
- font-size: 32rpx;
- padding: 5rpx;
-}
-
-/*
-.pack_view {
- font-size: 32rpx;
- padding: 5rpx;
-}
-
-.location_view {
- font-size: 32rpx;
- padding: 5rpx;
-}
-
-.batch_view {
- font-size: 32rpx;
- padding: 5rpx;
-}
- */
-.business_view {
- font-size: 32rpx;
- padding: 5rpx;
-}
-
-.pop_customer {
- border-radius: 8rpx;
- background-color: #fff;
-}
-
-.nodata {
- width: 390rpx;
- height: 300rpx;
-}
-
-.text_ellipsis {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
-}
-
-.task_top {
- margin: 0rpx 10rpx;
- background-color: #fff;
- vertical-align: middle;
-}
-
-.task_item {
- margin: 0rpx 10rpx;
- margin-top: 10rpx;
- background-color: #fff;
-}
-
-.task_card {
- padding: 12rpx;
- background-color: #fff;
- border-radius: 10rpx;
- margin: 12rpx;
-}
-
-.task_number {
- font-size: 35rpx;
- font-weight: 600;
- /* bold */
-}
-
-.task_text {
- font-size: 30rpx;
- margin: 5rpx 0rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-.request_state_un-doing {
- font-size: 28rpx;
- background: rgba(95, 203, 148, 0.2);
- color: #22AF68;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.job_state_doing {
- font-size: 28rpx;
- background: rgba(236, 156, 0, 0.2);
- color: #EC9C00;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.job_state_un-doing {
- font-size: 28rpx;
- background: rgba(95, 203, 148, 0.2);
- color: #22AF68;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.job_state_completed {
- font-size: 28rpx;
- background: rgba(95, 203, 148, 0.2);
- color: #22AF68;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.job_state_close {
- font-size: 28rpx;
- background: rgba(95, 203, 148, 0.2);
- color: #22AF68;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-
-.job_state_cancelled {
- font-size: 28rpx;
- background: rgba(95, 203, 148, 0.2);
- color: #ff0000;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.pop_detail {
- background-color: #fff;
- width: 100%;
- border-radius: 8rpx 8rpx 0rpx 0rpx;
- padding: 15rpx;
-}
-
-.pop_detail .item {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
-
- margin-left: 10rpx;
- margin-right: 10rpx;
-
- display: flex;
- flex-direction: row;
-
- -webkit-justify-content: space-between;
- justify-content: space-between;
-}
-
-.pop_detail .item_title {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
-}
-
-.pop_detail .text_wrap {
- color: #909399;
- word-break: break-all;
- text-align: right;
-}
-
-.pop_detail .item_big_title {
- /* color: #2196F3; */
- /* font-size: 35rpx; */
- margin-left: 10rpx;
- margin-right: 10rpx;
- margin-top: 10rpx;
- margin-bottom: 10rpx;
-}
-
-
-
-
-/deep/.uni-popup .uni-popup__wrapper {
- width: 100% !important;
- padding: 15rpx 20rpx 15rpx 20rpx;
-}
-
-.btn_bottom {
- position: fixed;
- bottom: 10rpx;
- right: 0;
-}
-
-.btn_add_small {
-
- background-color: #3C9CFF;
- width: 200rpx;
- font-size: 30rpx;
- color: #fff;
- border-radius: 5rpx;
-}
-
-.btn_add_small_after {
- opacity: 0.7;
-}
-
-.btn_commit_after {
- opacity: 0.7;
-}
-
-/* 禁用时样式 */
-button[disabled] {
- background-color: #fff;
- color: #666;
-}
-
-.btn_commit {
- background-color: #3C9CFF;
- font-size: 30rpx;
- color: #fff;
- text-align: center;
- padding-left: 80rpx;
- padding-right: 80rpx;
- margin-right: 20rpx;
- margin-left: 10rpx;
-}
-
-.btn_add {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
-
- position: absolute;
- width: 97%;
- height: 35px;
- border-radius: 3px;
- opacity: 1;
- padding: 5px;
- margin-left: 5px;
- margin-right: 5px;
-
- box-sizing: border-box;
- border: 1px dashed #AAAAAA;
- background: #D8D8D8;
-
- color: #FFFFFF;
- font-size: 16px;
- font-weight: normal;
- line-height: 26px;
- letter-spacing: 0em;
-}
-
-.btn_clear_after {
- opacity: 0.7;
-}
-
-
-.btn_clear {
- background-color: #fff;
- font-size: 30rpx;
- color: #000;
- text-align: center;
- padding-left: 80rpx;
- padding-right: 80rpx;
- margin-right: 10rpx;
- margin-left: 20rpx;
-}
-
-.icons_scan_close {
- width: 35rpx;
- height: 35rpx;
-}
-
-.count_image {
- width: 45rpx;
- height: 45rpx;
-}
-
-.count_type_light {
- color: #0CC2B6;
- font-size: 30rpx;
- margin-left: 10rpx;
- margin-right: 10rpx;
-}
-
-.count_type_black {
- color: #FA5151;
- font-size: 30rpx;
- margin-left: 10rpx;
- margin-right: 10rpx;
-}
-
-.btn_bot {
- position: fixed;
- bottom: 0;
- right: 0;
- padding-bottom: 20rpx;
- padding-right: 20rpx;
- z-index: 10;
-}
-
-.btn_single_commit {
- background-color: #3C9CFF;
- font-size: 30rpx;
- color: #fff;
- text-align: center;
- width: 180rpx;
-}
-
-.btn_single_reject {
- background-color: #F56C6C;
- font-size: 30rpx;
- color: #fff;
- text-align: center;
- width: 180rpx;
-}
-
-.center {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
-}
-
-.space_between {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
-}
-
-.text_recommend {
- color: #0A84FF;
- font-size: 38rpx;
-}
-
-.text_balance {
- font-size: 36rpx;
-}
-
-.text_default {
- color: #000000;
- font-size: 36rpx;
-}
-
-.text_greater {
- color: #F56C6C;
- font-size: 36rpx;
-}
-
-.text_less {
- color: #FF9500;
- font-size: 36rpx;
-}
-
-.text_equal {
- color: #34C759;
- font-size: 38rpx;
-}
-
-.std_pack {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 0px;
- color: #909399;
- font-size: 30rpx;
-}
-
-.std_uom {
- color: #909399;
- font-size: 30rpx;
- margin-left: 5rpx;
- margin-right: 5rpx;
-}
-
-.uom {
- color: #909399;
- font-size: 30rpx;
- margin-left: 5rpx;
- margin-right: 5rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
-}
-
-
-.std_split {
- color: #909399;
- font-size: 36rpx;
- margin-left: 5rpx;
- margin-right: 5rpx;
-}
-
-.inspect_job {
- color: #F1A532;
- font-size: 36rpx;
- margin-right: 10rpx;
-}
-
-.ok_job {
- color: #53C21D;
- font-size: 36rpx;
- margin-right: 2rpx;
-}
-
-.nook_job {
- color: #E45656;
- font-size: 36rpx;
- margin-right: 10rpx;
-}
-
-.raw_location {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-left: 15rpx;
- padding-right: 15rpx;
- background-color: #34C759;
- color: #fff;
- font-size: 35rpx;
-}
-
-.fg_location {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-left: 15rpx;
- padding-right: 15rpx;
- background-color: #5A7CF3;
- color: #fff;
- font-size: 35rpx;
-}
-
-.semi_location {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-left: 15rpx;
- padding-right: 15rpx;
- background-color: #FF9500;
- color: #fff;
- font-size: 35rpx;
-}
-
-.hold_location {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-left: 15rpx;
- padding-right: 15rpx;
- background-color: #F56C6C;
- color: #fff;
- font-size: 35rpx;
-}
-
-.unk_location {
- padding-top: 5rpx;
- padding-bottom: 5rpx;
- padding-left: 15rpx;
- padding-right: 15rpx;
- background-color: #999999;
- color: #fff;
- font-size: 35rpx;
-}
-
-.qty_input {
- width: 150rpx;
- height: 60rpx;
- line-height: 10rpx;
- font-size: 10rpx;
- color: #000000;
- text-align: right;
- border: 1px solid rgb(220, 211, 211);
- padding: 5rpx;
-}
-
-.qty_inspect_input {
- width: 150rpx;
- height: 60rpx;
- line-height: 10rpx;
- font-size: 10rpx;
- color: #000000;
- text-align: center;
- border: 1px solid rgb(220, 211, 211);
- padding: 5rpx;
-}
-
-.icon_close {
- width: 100rpx;
- height: 100rpx;
- opacity: 1;
-
-}
-
-.icon_edit {
- width: 30rpx;
- height: 40%;
- opacity: 1;
- margin-left: 10rpx;
-}
-
-.title_popup {
- margin-top: 16px;
- margin-bottom: 16px;
- margin-left: 8px;
- margin-right: 8px;
- font-size: 35rpx;
- text-align: center;
-}
-
-.close_button {
- /* 自动布局子元素 */
- position: static;
- left: 20px;
- /* top: 1109.01px; */
- width: 100%;
- height: 40px;
- border-radius: 40px;
- opacity: 1;
-
- /* 自动布局 */
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 9px 12px;
- gap: 10px;
- align-self: stretch;
-
- /* 颜色/白色 */
- background: #FFFFFF;
- box-sizing: border-box;
- /* 颜色/边框 */
- border: 1px solid #E7E6E4;
- z-index: 3;
-}
-
-/**
- * 申请状态 新增
- */
-.request_status_new {
- font-size: 28rpx;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
- background: rgba(34, 175, 104, 0.2);
- color: rgba(34, 175, 104, 1);
-}
-
-/**
- * 申请状态 审批中
- */
-.request_status_reviewing {
- font-size: 28rpx;
- background: rgba(236, 156, 0, 0.2);
- color: rgba(236, 156, 0, 1);
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 审批通过
- */
-.request_status_agreed {
- font-size: 28rpx;
- background: rgba(103, 194, 57, 0.2);
- color: rgba(103, 194, 57, 1);
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 审批驳回
- */
-.request_status_refused {
- font-size: 28rpx;
- background: rgba(245, 108, 108, 0.2);
- color: rgba(245, 108, 108, 1);
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 处理中
- */
-.request_status_handling {
- font-size: 28rpx;
- background: rgba(60, 156, 255, 0.2);
- color: rgba(60, 156, 255, 1);
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 部分完成
- */
-.request_status_partial {
- font-size: 28rpx;
- background: #D3FF3C;
- color: #ffffff;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 已完成
- */
-.request_status_completed {
- font-size: 28rpx;
- background: #D3FF3C;
- color: #ffffff;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 中止
- */
-.request_status_abort {
- font-size: 28rpx;
- background: #F33140;
- color: #ffffff;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-/**
- * 申请状态 已关闭
- */
-.request_status_cancelled {
- font-size: 28rpx;
- background: #F33140;
- color: #ffffff;
- padding: 10rpx 20rpx 10rpx 20rpx;
- border-radius: 10rpx;
-}
-
-.split_line {
- background-color: #e0e0e0;
- height: 1px;
- margin: 10rpx;
+/*WMY 20220818 cssv1.0*/
+/*公共*/
+uni-page-head .uni-page-head {
+ z-index: 98 !important;
+ background-color: #fff !important;
+}
+
+uni-page-head .uni-page-head__title {
+ font-weight: normal;
+}
+
+.whole {
+ width: 100%;
+}
+
+.fl {
+ float: left;
+}
+
+.fr {
+ float: right;
+}
+
+.tc {
+ text-align: center;
+}
+
+.text_bold {
+ font-weight: bold;
+}
+
+.text_black {
+ color: #101010;
+}
+
+.text_packingCode {
+ color: #101010;
+ word-break: break-all;
+}
+
+.text_lightblue {
+ color: #6A6E7A;
+}
+
+.text_darkblue {
+ color: #434556;
+}
+
+.text_blue {
+ color: #5A7CF3;
+}
+
+.font_xs {
+ font-size: 0.775rem;
+}
+
+.font_sm {
+ font-size: 0.825rem;
+}
+
+.font_xl {
+ font-size: 1.125rem;
+}
+
+.font_default {
+ font-size: 1rem;
+}
+
+.margin_top {
+ margin-top: 20rpx;
+}
+
+.margin_bottom {
+ margin-bottom: 20rpx;
+}
+
+.margin_xs_top {
+ margin-top: 10rpx;
+}
+
+.margin_xs_bottom {
+ margin-bottom: 10rpx;
+}
+
+.margin_right {
+ margin-right: 20rpx;
+}
+
+.margin {
+ margin: 20rpx;
+}
+
+.padding_10 {
+ padding: 10rpx;
+}
+
+.padding_15 {
+ padding: 15rpx;
+}
+
+.padding_20 {
+ padding: 20rpx;
+}
+
+.padding {
+ padding: 20rpx;
+}
+
+.padding_bottom {
+ padding-bottom: 20rpx;
+}
+
+.nopad {
+ padding: 0 !important;
+}
+
+.nopad_bot {
+ padding-bottom: 0 !important;
+}
+
+/*
+物料状态
+未知,可用,隔离,新增,规划,禁用
+*/
+
+.item_active {
+ background-color: #5FCB94;
+ color: #FFFFFF;
+}
+
+.item_hold {
+ background-color: #FF4206;
+ color: #FFFFFF;
+}
+
+.item_new {
+ background-color: #E6A23C;
+ color: #FFFFFF;
+}
+
+.item_plan {
+ background-color: #2677F9;
+ color: #FFFFFF;
+}
+
+.item_disable {
+ background-color: #666;
+ color: #FFFFFF;
+}
+
+/* 器具状态 */
+.container_empty {
+ background-color: #FF4206;
+ color: #FFFFFF;
+}
+
+.container_useing {
+ background-color: #5FCB94;
+ color: #FFFFFF;
+}
+
+
+.container_repair {
+ background-color: #666;
+ color: #FFFFFF;
+}
+
+.container_scrap {
+ background-color: #E6A23C;
+ color: #FFFFFF;
+}
+
+
+
+.scan_float {
+ position: fixed;
+ z-index: 10;
+ right: 20rpx;
+ bottom: 20%;
+ width: 110rpx;
+ height: 110rpx;
+ background-color: #5A7CF3;
+ border-radius: 50%;
+ text-align: center;
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
+ opacity: 0.8;
+}
+
+.scan_float image {
+ width: 40rpx;
+ height: 40rpx;
+ margin-top: 10rpx;
+}
+
+.scan_float view {
+ color: #fff;
+ font-size: .725rem;
+ margin-top: -8rpx;
+}
+
+.top_card {
+ background-color: #5A7CF3;
+ overflow: hidden;
+ /* padding: 20rpx 0; */
+}
+
+.top_card .device-detail {
+ /* margin-top: 0 !important; */
+}
+
+.top_card .mini-type-style {
+ color: #fff !important;
+ font-weight: normal;
+ height: 46rpx;
+}
+
+.cen_card {
+ padding: 0 0rpx;
+ width: 100%;
+ box-sizing: border-box;
+ float: left;
+}
+
+.cell_box {
+ width: 100%;
+}
+
+.cell_box .cell_info {
+ position: relative;
+ /* width: 25%; */
+ padding: 0 20rpx;
+ /* margin: 0 0 20rpx; */
+ text-align: center;
+}
+
+.cell_box .cell_long {
+ /* width: 33%; */
+}
+
+.cell_box .cell_info view {
+ font-size: 0.9375rem;
+ margin-bottom: 10rpx;
+ color: #7B8195;
+}
+
+.cell_box .cell_info .text_black {
+ font-size: 0.875rem;
+ color: #101010;
+}
+
+.cell_box .cell_info .text_lightblue {
+ color: #949CB6;
+ font-size: 0.8rem;
+}
+
+.cell_box .cell_info::after {
+ position: absolute;
+ content: "";
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 1px;
+ height: 20px;
+ background-color: #ddd;
+}
+
+.cell_box .cell_info:last-child::after {
+ width: 0;
+}
+
+.cen_card .label_box {
+ margin-bottom: 20rpx;
+}
+
+.cen_card .label_box .label_info {
+ background-color: #eee;
+ color: #434556;
+ font-size: 0.875rem;
+ padding: 8rpx;
+ border-radius: 8rpx;
+ margin-right: 10rpx;
+ vertical-align: middle;
+}
+
+.cen_card .label_box .label_info image {
+ /* float: left; */
+ vertical-align: middle;
+}
+
+.cen_card .label_box .label_info text {
+ /* line-height: 1.25; */
+ /* float: left; */
+ vertical-align: middle;
+}
+
+.photo_btn {
+ background-color: #ececec;
+ color: #5A7CF3;
+ font-size: 0.875rem;
+ padding: 8rpx 10rpx;
+ border-radius: 8rpx;
+}
+
+.photo_btn text {
+ line-height: 1.5;
+}
+
+.cen_card .cell_box .text_black {
+ font-size: 0.875rem;
+}
+
+.cen_card .cell_box .cell_info .text_lightblue {
+ font-size: 0.925rem;
+}
+
+.bot_card {
+ background-color: #f8f8f8;
+ padding: 16rpx;
+ overflow: hidden;
+}
+
+.bot_card_item {
+ width: 50%;
+ text-align: left;
+ height: 60rpx;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+/* .item_long{
+ width: 32% !important;
+}
+*/
+.item_short {
+ width: 20%;
+}
+
+.bot_card_item uni-text {
+ font-size: .725rem;
+ margin-left: 4rpx;
+ color: #333333;
+ background-color: transparent;
+}
+
+.bot_card_item .icon_state {
+ float: left;
+ margin-top: 22rpx;
+}
+
+.summary_wrap {
+ padding: 20rpx;
+ padding-top: 0;
+}
+
+.summary_state .state_point {
+ font-size: 0.825rem;
+}
+
+.summary_item uni-text {
+ font-size: 0.825rem;
+}
+
+.bot_card_item uni-text.state_point {
+ background-color: transparent;
+}
+
+.bot_card_item label {
+ vertical-align: middle;
+}
+
+.icon_normal {
+ width: 58rpx;
+ height: 58rpx;
+ vertical-align: middle
+}
+
+.bot_card_item .icon_normal {
+ float: left;
+ width: 46rpx;
+ height: 46rpx;
+}
+
+.icon_bg {
+ display: inline-block;
+ width: 46rpx;
+ height: 46rpx;
+ border-radius: 4rpx;
+}
+
+.icon_bg_xm {
+ background-color: #45B5F3;
+}
+
+.icon_bg_kw {
+ background-color: #5A7CF3;
+}
+
+.icon_bg_pc {
+ background-color: #BF94EB;
+}
+
+.icon_state {
+ display: inline-block;
+ width: 20rpx;
+ height: 20rpx;
+ border-radius: 50%;
+}
+
+.state_point {
+ background: none;
+}
+
+.title_tab {
+ display: flex;
+ justify-content: center;
+ height: 100rpx;
+}
+
+.bottom {
+ padding: 0 !important;
+}
+
+.uni-popup .uni-scroll-view {
+ overflow: visible !important;
+}
+
+.uni-popup .uni-scroll-view-content {
+ overflow-y: scroll;
+ max-height: 94vh;
+ background-color: #fff;
+ border-top-left-radius: 20rpx;
+ border-top-right-radius: 20rpx;
+}
+
+.uni-popup .scroll-Y {
+ padding-bottom: 0;
+}
+
+.popup_box {
+ position: relative;
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+ background: #fff url(@/static/icons_ui/popup_bot_bg.png) no-repeat left top;
+ background-size: 100%;
+ max-height: 93vh;
+}
+
+.popup_box .pop_title {
+ font-size: 0.9rem;
+ font-weight: bold;
+ color: #fff;
+ padding: 20rpx 20rpx;
+ font-size: 35rpx;
+}
+
+.popup_box .pop_title text {
+ font-size: 0.9rem;
+ font-weight: normal;
+}
+
+.popup_box .uni-steps {
+ width: 98%;
+}
+
+.popup_box .top_bg {
+ width: 100%;
+ height: inherit;
+}
+
+.popup_box .pop_tab {
+ padding: 20rpx;
+ box-sizing: border-box;
+ width: 100%;
+}
+
+.popup_box .pop_tab .tab_tit {
+ font-size: .825rem;
+ text-align: center;
+ color: #333;
+ background-color: #fff;
+ /* width: 30%; */
+ box-sizing: border-box;
+ padding: 10rpx 16rpx;
+ border-top-left-radius: 8rpx;
+ border-top-right-radius: 8rpx;
+ margin-right: 6rpx;
+}
+
+.popup_box .pop_tab .tab_tit_active {
+ color: #5A7CF3;
+ font-weight: bold;
+ /* font-size: 0.875rem; */
+}
+
+.popup_box .pop_tab .tab_info {
+ position: relative;
+ background-color: #fff;
+ border-radius: 8rpx;
+ box-shadow: 0 6rpx 20rpx rgba(90, 124, 143, 0.1);
+ min-height: 100rpx;
+}
+
+.popup_box .pop_tab .tab_info textarea {
+ height: 320rpx;
+}
+
+.popup_box .pop_tab .tab_info .uni-textarea-placeholder {
+ font-size: 0.825rem;
+}
+
+.popup_box .scan_scroll {
+ max-height: 41vh;
+ width: 100%;
+ overflow-x: hidden;
+ overflow-y: scroll;
+}
+
+.popup_box .scan_scroll .uni-scroll-view-content {
+ /* width: 104%; */
+ overflow-x: hidden;
+ background-color: transparent;
+}
+
+.popup_box .pop_tab .next_info {
+ box-shadow: 0 0 20rpx rgba(90, 124, 143, 0.1);
+}
+
+.popup_box .pop_tab .tab_notitle {
+ border-radius: 8rpx;
+}
+
+.popup_box .pop_tab .tab_info button {
+ position: absolute;
+ bottom: 10rpx;
+ right: 20rpx;
+ background: #3C9CFF;
+ color: #fff;
+ border: 0;
+ border-radius: 8rpx;
+ width: 130rpx;
+ float: right;
+ font-size: .725rem;
+}
+
+.popup_box .pop_tab .tab_info textarea {
+ padding-top: 20rpx;
+}
+
+.list_wrap {
+ margin: 20rpx;
+}
+
+.ljh_box {
+ padding: 20rpx;
+ z-index: 10;
+ width: 100%;
+ float: left;
+ box-sizing: border-box;
+}
+
+.ljh_left {
+ margin-top: 10rpx;
+}
+
+/* .ljh_right{
+ float: right;
+} */
+.ljh_right uni-text {
+ line-height: 1.5;
+}
+
+.ljh_right .tnum .num_edit {
+ background-color: #FFF9DB;
+ width: 150rpx;
+}
+
+.ljh_right .tnum {
+ font-size: 1.25rem;
+ color: #EC5B28;
+ font-weight: bold;
+ margin-right: 4rpx;
+}
+
+.ljh_right .tunit {
+ font-size: 0.875rem;
+ color: #F5AB91;
+}
+
+.ljh_box .tit_ljh {
+ line-height: 1.5;
+ font-size: 0.875rem;
+ color: #101010;
+ font-weight: bold;
+ word-break: break-all;
+}
+
+.ljh_box .tit_ljh .mini-type-style {
+ float: left;
+ margin-top: 10rpx;
+ padding: 0 8rpx;
+ font-size: 0.725rem;
+}
+
+.ljh_box .tit_ljh .state-style,
+.top_card .state-style {
+ font-size: .625rem;
+ padding: 4rpx 6rpx;
+ margin-right: 8rpx;
+ vertical-align: middle;
+ font-weight: normal;
+ border-radius: 4rpx;
+ color: #fff;
+}
+
+.ljh_box .tit_ljh .state-style {
+ /* padding: 6rpx; */
+}
+
+.ljh_box .tit_ljh text {
+ float: left;
+}
+
+.ljh_box .desc_ljh {
+ line-height: 1.5;
+}
+
+.label_normal {
+ margin-top: 20rpx;
+}
+
+.label_normal .label_col image {
+ float: left;
+ vertical-align: middle;
+}
+
+.label_normal .label_col text {
+ font-size: 0.825rem;
+ line-height: 1.25;
+ float: left;
+ color: #434556;
+}
+
+.lo_cellbox {
+ margin-top: 20rpx;
+}
+
+.lo_cellbox .cell_info {
+ margin-bottom: 0;
+}
+
+/*提交按钮*/
+.new_btn_bot {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ box-sizing: border-box;
+ width: 100%;
+ background-color: #fff;
+ padding: 20rpx;
+ z-index: 10;
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
+}
+
+.bot_pos {
+ position: initial;
+}
+
+.new_btn_bot .new_save_btn {
+ background-color: #E7ECFF;
+ color: #5A7CF3;
+ font-size: .875rem;
+}
+
+.new_btn_bot .new_clear_btn {
+ background-color: #FFDADD;
+ color: #f00;
+ font-size: .875rem;
+ margin-right: 20rpx;
+}
+
+.new_btn_bot .new_cancel_btn {
+ background-color: #eee;
+ color: #333;
+ font-size: .875rem;
+ margin-right: 20rpx;
+}
+
+.new_btn_bot .btn_double {
+ width: 50%;
+}
+
+.new_btn_bot uni-button:after {
+ border: 0;
+}
+
+.choose_main {
+ position: relative;
+ z-index: 2;
+}
+
+.choose_layout {
+ position: relative;
+ width: 100%;
+ height: 130rpx;
+ background-color: #fff;
+
+}
+
+.choose_icon_layout {
+ position: absolute;
+ right: 160rpx;
+ top: 10rpx;
+ bottom: 0rpx;
+ /* width: 100rpx;
+ height:100rpx; */
+}
+
+.choose_icon {
+ margin-top: 5rpx;
+ margin-bottom: 10rpx;
+ width: 100rpx;
+ height: 100rpx;
+}
+
+.choose_marked {
+ position: absolute;
+ width: 100%;
+ /* height: 100%; */
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ border-top: 6rpx solid #5FCB94;
+ background-image: linear-gradient(rgba(95, 203, 148, 0.5), rgba(95, 203, 148, 0));
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+}
+
+.choose_marked_faild {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ border-top: 6rpx solid #FF0000;
+ background-image: linear-gradient(rgba(255, 100, 97, 0.3), rgba(255, 100, 97, 0));
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+}
+
+.nodeliver_tag {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+ border-top: 6rpx solid #F54D4D;
+ background-image: linear-gradient(rgba(245, 77, 77, 0.1), rgba(245, 77, 77, 0));
+
+}
+
+.choose_marked image {
+ float: right;
+ margin-right: 28%;
+ margin-top: 20rpx;
+ width: 120rpx;
+ height: 120rpx;
+}
+
+.choose_marked_faild image {
+ float: right;
+ margin-right: 28%;
+ margin-top: 20rpx;
+ width: 120rpx;
+ height: 120rpx;
+}
+
+.pop_list {
+ background-color: #fff;
+ /* padding: 20rpx; */
+ padding-top: 0;
+ margin-top: 20rpx;
+}
+
+.uni-scroll-view-content .creattp_list {
+ padding: 6rpx 20rpx 0;
+ box-sizing: border-box;
+ width: 96%;
+}
+
+.list_info .uni-scroll-view-content {
+ max-height: 10vh;
+}
+
+.pop_list .detail-content {
+ margin-bottom: 20rpx;
+ border-radius: 16rpx;
+ overflow: hidden;
+ box-shadow: 0 0 14rpx rgba(0, 0, 0, 0.1);
+}
+
+.pop_btn {
+ padding: 20rpx;
+ padding-top: 0;
+}
+
+.pop_btn button {
+ width: 49%;
+ height: 90rpx;
+ line-height: 90rpx;
+ font-size: 0.875rem;
+ margin: 0;
+ color: #333;
+}
+
+.pop_btn button::after {
+ border: 0;
+}
+
+.pop_btn .cancel {
+ background-color: #eee;
+}
+
+.pop_btn .save {
+ background-color: #5A7CF3;
+ color: #fff;
+}
+
+.popinpop {
+ margin: 10px 1%;
+ border-radius: 8px;
+ background-color: #fff;
+ color: #666666;
+ line-height: 1.5;
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+ width: 98%;
+
+}
+
+.scan_btn:after {
+ border: 8rpx;
+}
+
+.popup_box .pop_tab .tab_info .clean_scan_btn {
+ background-color: #eee;
+ color: #333;
+ margin-right: 140rpx;
+ border-radius: 8rpx;
+}
+
+.popup_box .pop_tab .tab_info .clean_scan_btn::after {
+ border: 0;
+}
+
+/*检验任务-topline*/
+.card_task {
+ padding: 20rpx;
+ padding-bottom: 0;
+}
+
+.task_num {
+ border-bottom: 1px solid #eee;
+ padding-bottom: 10rpx;
+ margin-bottom: 10rpx;
+ overflow: hidden;
+}
+
+.top_card .task_num {
+ border: 0;
+}
+
+.task_num image {
+ vertical-align: middle;
+ margin-right: 10rpx;
+}
+
+.task_num text {
+ color: #333;
+ vertical-align: middle;
+}
+
+.label_order image {
+ /* vertical-align: text-bottom; */
+ vertical-align: middle;
+}
+
+.label_order text {
+ font-size: .825rem;
+ vertical-align: middle;
+}
+
+.tit_jxs {
+ font-size: 1rem !important;
+ margin-bottom: 10rpx;
+}
+
+.tit_jxs .state-style {
+ vertical-align: middle;
+ margin-top: 6rpx;
+}
+
+/* 为按序发货添加 */
+/* .state-style{
+ background-color: #ececec;
+} */
+.receipt_bot {
+ justify-content: space-between;
+ border-top: 1px solid #eee;
+ padding-top: 10rpx;
+}
+
+/*收货列表*/
+.require_wrap {
+ background-color: #fff;
+ padding: 20rpx;
+}
+
+.require_wrap uni-button:after {
+ border: 0;
+}
+
+.require_wrap .require_cell {
+ background: #f5f5f5;
+ font-size: .825rem;
+ padding: 10rpx 20rpx;
+ margin-right: 20rpx;
+ border-radius: 50rpx;
+ line-height: 1.5;
+ margin-left: 0;
+ border: 1px solid #f5f5f5;
+}
+
+.require_wrap .require_active {
+ border: 1px solid #5A7CF3;
+ background-color: #EFF6FF;
+ color: #5A7CF3;
+}
+
+.require_wrap .require_active text {
+ display: inline-block;
+ width: 20rpx;
+ height: 20rpx;
+ background-color: #5A7CF3;
+ border-radius: 50%;
+ float: left;
+ margin: 12rpx 10rpx 12rpx 0;
+}
+
+.list_inspect .uni-input-input {
+ color: #f00;
+}
+
+.list_form {
+ padding: 20rpx;
+ padding-top: 0;
+}
+
+.list_form .uni-table-tr {
+ background-color: #f8f8f8;
+ color: red;
+}
+
+.list_form .uni-table-th {
+ padding: 10rpx !important;
+ border-bottom: 1px solid #ececec;
+ font-weight: normal !important;
+ font-size: 0.775rem;
+ color: red;
+}
+
+.list_form .uni-easyinput {
+ background-color: #FFF9DB;
+}
+
+.list_form .uni-easyinput__content {
+ min-height: 50rpx !important;
+ text-align: center;
+}
+
+.count_shadow {
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+}
+
+.count_list {
+ font-size: 0.8rem;
+ color: #0F5EFF;
+ padding: 10rpx 0;
+}
+
+.count_list text:first-child {
+ margin-left: 0;
+}
+
+.count_list text {
+ margin: 10rpx;
+}
+
+.popuni_list::after {
+ height: 0 !important;
+}
+
+.uni-list .list_cell {
+ margin-bottom: 20rpx;
+ height: 100rpx;
+ align-items: center;
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+}
+
+.uni-list .list_cell:last-child {
+ margin-bottom: 0;
+}
+
+.uni-list .list_cell .is-input-border {
+ border: 0;
+}
+
+.uni-list .list_cell .title {
+ padding-left: 20rpx;
+ font-size: 0.875rem;
+}
+
+.uni-list .list_cell .info {
+ padding-right: 20rpx;
+ color: #333;
+ font-size: 0.875rem;
+}
+
+.popuni_list .list_cell {
+ background-color: #fff;
+ border-radius: 8rpx;
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+}
+
+.popuni_list .list_cell .uni-data-tree-input {
+ padding-left: 0;
+}
+
+.popuni_list .list_cell .input-value-border {
+ border: 0;
+ padding: 0;
+}
+
+.popuni_list .list_cell .selected-list {
+ padding-left: 0;
+}
+
+/* .uni-list .list_cell .necessary_tag{
+ padding-right: 0;
+ color: #f00;
+} */
+.uni-list .list_cell .uni-easyinput {
+ padding-right: 20rpx;
+ text-align: right;
+ box-sizing: border-box;
+ border: 0;
+}
+
+.uni-list .list_cell .uni-input-input {
+ font-size: 0.875rem;
+}
+
+.list_card {
+ margin-top: 20rpx;
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+}
+
+.list_card:first-child {
+ margin-top: 10rpx;
+}
+
+.inspect_form .uni-label {
+ font-size: 0.875rem;
+}
+
+.pda-list-cell-db .is-input-border,
+.pda-list-cell-db .input-value-border {
+ border: 0 !important;
+}
+
+.list_locode {
+ padding: 20rpx;
+ padding-top: 0;
+}
+
+.inspect_card {
+ background-color: #fff;
+ margin: 20rpx;
+ border-radius: 16rpx;
+}
+
+.inspect_card .ljh_box text {
+ line-height: 1.75;
+}
+
+.inspect_list_locode {
+ border-bottom: 1px solid #eee;
+ padding-bottom: 20rpx;
+}
+
+.inspect_list_locode image {
+ vertical-align: middle;
+}
+
+.default_nodata {
+ position: relative;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-top: 100rpx;
+ width: 390rpx;
+ height: 300rpx;
+
+}
+
+
+.default_goscan {
+ width: 100%;
+}
+
+.default_goscan .img_goscan {
+ position: relative;
+ width: 500rpx;
+ height: 500rpx;
+ left: 50%;
+ transform: translateX(-50%);
+}
+
+.default_goscan button {
+ width: 60%;
+ height: 100rpx;
+ background-color: #5A7CF3;
+ color: #fff;
+ border-radius: 50rpx;
+ text-align: center;
+ line-height: 100rpx;
+}
+
+.default_goscan button image {
+ width: 30rpx;
+ height: 30rpx;
+ margin-right: 20rpx;
+ vertical-align: middle;
+ margin-top: -8rpx;
+
+}
+
+.new_bot_box {
+ position: fixed;
+ width: 100%;
+ left: 0;
+ bottom: 0;
+ background-color: transparent;
+ z-index: 10;
+}
+
+.new_bot_box .uni-collapse {
+ background-color: transparent !important;
+}
+
+.new_bot_box .uni-collapse-item__title.uni-collapse-item-border {
+ width: 96%;
+ margin: 0 2%;
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+ overflow: hidden;
+ text-align: center;
+}
+
+.new_bot_box .uni-collapse-item__title-text {
+ padding-left: 40rpx;
+}
+
+.new_bot_box .uni-collapse-item__title.uni-collapse-item-border,
+.new_bot_box .uni-collapse-item__title-box {
+ background-color: #7B8195 !important;
+ color: #fff !important;
+}
+
+.new_bot_box .uni-collapse-item__title-box {
+ height: 80rpx !important;
+ line-height: 80rpx !important;
+}
+
+.new_bot_box .content {
+ background-color: #fff !important;
+}
+
+.new_bot_box .content .uni-easyinput {
+ box-sizing: border-box;
+}
+
+.new_bot_box .content .uni-data-picker,
+.new_bot_box .input-value,
+.new_bot_box .uni-input-input,
+.new_bot_box .selected-item,
+.new_bot_box .placeholder,
+.new_bot_box .uni-easyinput__content-input {
+ font-size: 0.875rem !important;
+}
+
+.new_bot_box .content .tit_bot_box {
+ padding: 20rpx 20rpx 10rpx;
+ font-size: 0.875rem;
+}
+
+.new_bot_box .uni-collapse-item__wrap-content.uni-collapse-item--border {
+ border: 0;
+}
+
+.new_bot_box .border .uni-easyinput {
+ border: 1px solid #e5e5e5;
+ border-radius: 10rpx;
+}
+
+.hold_form .uni-table-th-content {
+ font-weight: normal;
+ font-size: 0.775rem;
+}
+
+.top_wrap {
+ padding: 20rpx;
+ background-color: #fff;
+}
+
+.top_wrap .top_card {
+ border-radius: 8px;
+ color: #fff;
+ line-height: 100rpx;
+}
+
+.top_wrap .top_card .top_lines_info {
+ padding: 0 20rpx;
+}
+
+.top_wrap .top_card .top_lines_info text {
+ font-size: 0.9rem;
+ margin-left: 10rpx;
+}
+
+/* 按序收货 */
+.recept_form {
+ padding: 20rpx;
+}
+
+.recept_form .form_title {
+ padding: 20rpx 20rpx 0;
+}
+
+.recept_form .form_title image {
+ float: left;
+ margin-top: 10rpx;
+ margin-right: 10rpx;
+}
+
+.recept_form .form_title text {
+ font-size: 1rem;
+ vertical-align: middle;
+}
+
+.recept_form .table--border {
+ border: 0 !important;
+}
+
+.recept_form th {
+ background-color: #F3F6FF;
+ color: #434556 !important;
+}
+
+.recept_form th.table--border,
+.recept_form td.table--border {
+ border: 0;
+}
+
+.recept_form .recept_form_info {
+ background-color: #fff;
+ border-radius: 16rpx;
+ padding-bottom: 16rpx;
+}
+
+.recept_form .uni-table-td {
+ font-size: 0.8rem;
+}
+
+/* 天津发货详情 */
+.deliver_card {
+ flex: 1;
+ line-height: 30px;
+ margin: 20rpx 20rpx 0;
+ border-radius: 16rpx;
+ overflow: hidden;
+ background-color: transparent;
+ position: relative;
+ border-bottom-color: #f5f5f5;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+}
+
+.deliver_card .card_info {
+ background-color: #fff;
+}
+
+.deliver_card .deliverState {
+ background-color: #fff;
+ padding: 20rpx 10rpx;
+ background-color: transparent;
+ border-left: 10rpx solid transparent;
+}
+
+.deliver_card .deliverState .content-text image {
+ vertical-align: text-bottom;
+ margin-right: 6rpx;
+}
+
+.deliver_card .deliverState .content-text text {
+ margin-right: 10rpx;
+}
+
+.deliver_card .deliverState1 {
+ background-color: #fff;
+ border-left: 10rpx solid #F6CB61;
+}
+
+.deliver_card .deliverState3 {
+ background-color: #fff;
+ border-left: 10rpx solid #5FCB94;
+}
+
+.deliver_card .deliverState4 {
+ background-color: #fff;
+ border-left: 10rpx solid #EC5B28;
+}
+
+.deliver_card .card_state {
+ border: 1px solid transparent;
+ padding: 0 20rpx;
+ font-size: 0.8rem;
+ position: absolute;
+ right: 20rpx;
+ top: 50%;
+ transform: translateY(-50%);
+ border-radius: 80rpx;
+}
+
+.deliver_card .tjpending {
+ border-color: #F6CB61;
+ color: #F6CB61;
+}
+
+.deliver_card .tjsent {
+ border-color: #5FCB94;
+ color: #5FCB94;
+}
+
+.deliver_card .tjnosend {
+ border-color: #EC5B28;
+ color: #EC5B28;
+}
+
+.login_wrap {
+ width: 100%;
+ position: relative;
+ top: -20rpx;
+ background-color: #fff;
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+}
+
+.login_title {
+ position: absolute;
+ top: 120rpx;
+ left: 30rpx;
+ color: #fff;
+ font-size: 1.125rem;
+ font-weight: bold;
+ letter-spacing: 4rpx;
+ line-height: 1.5;
+}
+
+.login_title text {
+ font-size: 1.125rem;
+ letter-spacing: 0;
+}
+
+/* 登录 */
+.mybox .is-input-border {
+ border: 0 !important;
+}
+
+/* 消息列表 */
+.msg_body {
+ background-color: #fff;
+}
+
+.msg_list {
+ padding-top: 20rpx;
+}
+
+.msg_list .uni-list-chat__header {
+ width: 60rpx !important;
+ height: 60rpx !important;
+ background-color: #3d7eff;
+ border-color: transparent !important;
+ border-radius: 6rpx !important;
+}
+
+.msg_list .uni-list--border-top,
+.msg_list .uni-list--border-bottom,
+.msg_list .uni-list--border:after,
+.msg_body .uni-list:after {
+ height: 0 !important;
+}
+
+.msg_list .uni-list-chat__header-image {
+ width: 50rpx !important;
+ height: 50rpx !important;
+}
+
+.msg_list .uni-badge--dot {
+ left: inherit !important;
+ right: 20rpx;
+ top: 40rpx !important;
+}
+
+.msg_list .uni-list-chat__content-title {
+ font-size: .9rem !important;
+}
+
+.msg_list .hasread .uni-list-chat__header {
+ background-color: #ccc;
+}
+
+/* index */
+.index_top {
+ background-color: #5A7CF3;
+ width: 100%;
+}
+
+.index_top .uni-searchbar {
+ padding-right: 0 !important;
+}
+
+.index_top .index_btn {
+ background-color: transparent;
+ font-size: 0.825rem;
+ padding: 0 0.9rem;
+
+}
+
+.index_top uni-button:after {
+ border: 0 !important;
+}
+
+.index_top .uni-searchbar__box {
+ background-color: rgba(255, 255, 255, 0.3) !important;
+ border-color: transparent !important;
+ justify-content: inherit !important;
+}
+
+.index_top .uni-searchbar__text-input,
+.uni-searchbar__box-icon-search,
+.index_top .uniui-search {
+ color: #fff !important;
+}
+
+.index_top .uni-searchbar__text-placeholder,
+.index_top .uni-input-placeholder {
+ color: #eee !important;
+}
+
+.index_top .uni-input-input {
+ color: #fff;
+}
+
+.common_title {
+ font-size: .825rem;
+ font-weight: bold;
+}
+
+.common_icons {
+ width: 100%;
+ padding: 20rpx;
+ box-sizing: border-box;
+}
+
+.common_icons .common_info {
+ position: relative;
+ top: -120rpx;
+ background-color: #fff;
+ width: 100%;
+ box-sizing: border-box;
+ padding: 20rpx;
+ border-radius: 16rpx;
+
+ /* box-shadow: 0 0 10rpx rgba(0,0,0,0.1); */
+}
+
+.common_icons .common_info .common_cell {
+ margin-right: 20rpx;
+ text-align: center;
+}
+
+.common_icons .common_info .common_cell .cell_icon {
+ background-color: #EEF2FE;
+ border-radius: 50%;
+ width: 110rpx;
+ height: 110rpx;
+ margin: 20rpx 20rpx 0;
+}
+
+.common_icons .common_info .common_cell .cell_icon image {
+ float: left;
+ width: 50rpx;
+ height: 50rpx;
+ margin: 35rpx;
+}
+
+.common_icons .common_info .cell_last {
+ margin-right: 0;
+}
+
+uni-tabbar .uni-tabbar-border {
+ height: 0;
+}
+
+.index_menu {
+ width: 100%;
+ float: left;
+ margin-top: -100rpx;
+ /* height: calc(100% - 200px); */
+}
+
+.index_menu .menu_content {
+ width: 26%;
+ text-align: center;
+ float: left;
+ height: 100%;
+ overflow-y: scroll;
+}
+
+.index_menu .index_title .title_left {
+ width: 100%;
+ border-left: 2px solid transparent;
+ line-height: 80rpx;
+ font-size: 0.825rem;
+ text-align: center;
+}
+
+.index_menu .menu_content .index_title {
+ width: 100%;
+ float: left;
+ line-height: 100rpx;
+ font-size: 0.825rem;
+}
+
+.index_menu .menu_content .tit_active {
+ box-sizing: border-box;
+ background-color: #fff;
+ border-left: 2px solid #5A7CF3;
+ font-weight: bold;
+ float: left;
+}
+
+.index_menuinfo {
+ width: 74%;
+ float: left;
+ box-sizing: border-box;
+ padding: 20rpx;
+ position: relative;
+ overflow-y: scroll;
+ background-color: #fff;
+ /* height: 100%; */
+
+}
+
+.menu_ab {
+ position: absolute;
+ top: 420rpx;
+ left: 0;
+ width: 100%;
+ z-index: 10;
+ /* height: calc(100% - 185px); */
+
+}
+
+.index_menuinfo .icon_block {
+ position: relative;
+ text-align: center;
+ width: 33%;
+ float: left;
+ /* margin-top: -10rpx; */
+}
+
+.index_menuinfo .icon_block image {
+ float: left;
+ width: 80%;
+ height: 80rpx;
+ margin: 3% 10% 0;
+}
+
+.index_menuinfo .icon_block text {
+ float: left;
+ width: 100%;
+ font-size: .8rem;
+ height: 80rpx;
+ color: #101010;
+}
+
+.index_menuinfo .icon_block .index_badge {
+ width: 42rpx;
+ height: 42rpx;
+ font-size: 0.6rem;
+ background-color: #c00;
+ position: absolute;
+ right: 0;
+ color: #fff;
+ text-align: center;
+ line-height: 42rpx;
+ border-radius: 50%;
+}
+
+uni-tabbar.uni-tabbar-bottom .uni-tabbar {
+ box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
+}
+
+uni-modal .uni-modal__bd {
+ font-size: 1rem !important;
+ color: #000 !important;
+}
+
+.passwordpage .uni-forms-item__label .label-text {
+ font-size: 0.8rem !important;
+}
+
+.passwordpage .is-input-border {
+ border: 0 !important;
+}
+
+.passwordpage .is-direction-left {
+ padding: 10rpx 20rpx;
+ background-color: #fff;
+ /* margin: 20rpx 0; */
+}
+
+.passwordpage .uni-forms-item__inner {
+ padding-bottom: 10rpx !important;
+}
+
+.passwordpage .new_save_btn {
+ font-size: 1rem;
+}
+
+.personal uni-button:after {
+ border: 0 !important;
+}
+
+.personal .uni-list:after {
+ height: 0 !important;
+}
+
+.personal .uni-list-item__icon {
+ margin-right: 0 !important;
+}
+
+.personal .uni-list-item__extra-text {
+ font-size: 1rem !important;
+ color: #101010 !important;
+ font-weight: bold;
+}
+
+.personal .uni-list--border-top,
+.uni-list--border-bottom,
+.uni-list--border::after {
+ background-color: transparent !important;
+}
+
+uni-modal .uni-modal__ft {
+ font-size: 0.875rem;
+}
+
+uni-modal .uni-modal__title {
+ color: #333;
+}
+
+uni-modal .uni-modal__bd {
+ padding: 1.3em 1.6em 1.3em;
+ min-height: 40px;
+ /* font-size: 15px; */
+ line-height: 1.4;
+ /* color: #999; */
+ max-height: 400px;
+ overflow-x: hidden;
+ overflow-y: auto;
+}
+
+uni-modal .uni-modal__hd {
+ padding: 1em 1.6em .3em;
+ height: 30px;
+}
+
+/*dy_add*/
+.btn_unusual button {
+ margin-right: 10rpx;
+}
+
+.btn_unusual button:last-child {
+ margin-right: 0;
+}
+
+/* .tit_ljh .text_white{
+ color: #fff !important;
+ font-size: 0.725rem;
+ font-weight: normal;
+ padding: 4rpx;
+} */
+.bot_card .pending {
+ color: #5FCB94;
+}
+
+.camera_pop {
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+}
+
+.camera_list {
+ padding: 20rpx;
+ box-sizing: border-box;
+ max-height: 75vh;
+ overflow-y: scroll;
+}
+
+.camera_list .list_cell {
+ border-bottom: 1px solid #eee;
+ box-shadow: none;
+ margin-bottom: 0;
+}
+
+.camera_list .list_cell .uni-easyinput {
+ padding-right: 0;
+}
+
+.camera_list .list_cell .title {
+ color: #666;
+}
+
+.camera_list .selected-item {
+ font-size: 0.875rem;
+}
+
+.camera_list .input-value span {
+ padding: 0;
+ font-size: 0.875rem;
+}
+
+.camera_pop .pop_btn {
+ background-color: #fff;
+}
+
+.cell_box .result_card .text_black {
+ font-size: 1rem;
+}
+
+.cell_box .result_card .red {
+ color: #c00;
+}
+
+.new_btn_bot .btn_triple {
+ margin-right: 10rpx;
+}
+
+.cell_box .scan_btn_fr {
+ float: right;
+ background-color: #ececec;
+ color: #5A7CF3;
+ font-size: 0.725rem;
+ padding: 10rpx 20rpx;
+ border-radius: 16rpx;
+ line-height: 2;
+ margin: 0 20rpx 20rpx 0;
+ height: 60rpx;
+}
+
+.cell_box .scan_btn_fr image {
+ /* margin-top: 4rpx; */
+ /* float: left; */
+}
+
+.cell_box .scan_btn_fr text {}
+
+.login_wrap .content-clear-icon {
+ display: none;
+}
+
+.login_wrap .conone .uni-easyinput {
+ padding-left: 10rpx !important;
+}
+
+.quality_cell {
+ height: auto !important;
+}
+
+.quality_cell .title {
+ line-height: 80rpx;
+ color: #666;
+}
+
+.check_textarea {
+ font-size: 0.875rem;
+ color: #333;
+}
+
+.check_textarea uni-textarea {
+ padding: 10rpx 20rpx;
+ height: 40px;
+}
+
+.check_textarea .uni-textarea-placeholder {
+ font-size: 0.875rem;
+ color: #ccc;
+}
+
+.common_card .ljh_box,
+.pop_card .ljh {
+ width: 100%;
+ box-sizing: border-box;
+}
+
+.common_card .ljh_box .tit_ljh,
+.pop_card .ljh_box .tit_ljh {
+ float: left;
+ width: 50%;
+}
+
+.common_card .ljh_info,
+.pop_card .ljh_info {
+ width: 100%;
+ box-sizing: border-box;
+}
+
+.common_card .desc_card,
+.pop_card .desc_card {
+ width: 100%;
+ box-sizing: border-box;
+ padding: 0;
+}
+
+.common_card .label_xm,
+.pop_card .label_xm {
+ background-color: #45B5F3;
+ line-height: 2.0;
+ padding: 0 10rpx;
+ color: #fff;
+ border-radius: 8rpx;
+ max-width: 300rpx;
+ font-size: 0.7rem;
+ overflow: visble;
+ word-break: break-all;
+ /* overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ font-size: 0.7rem;*/
+}
+
+.result_nodata text {
+ display: inline-block;
+ width: 100%;
+ text-align: center;
+ color: #999;
+ font-size: 1.125rem;
+ margin-top: -20rpx;
+}
+
+.passwordpage .uni-forms-item__label {
+ width: 180rpx !important;
+}
+
+/* 20221114add */
+.semi_col {
+ margin-top: 0;
+}
+
+.semi_col .uni-collapse-item__title-text span {
+ font-size: 1rem;
+ /* font-weight: bold; */
+}
+
+.semi_col .common_card .ljh_box .tit_ljh {
+ font-size: 1rem;
+ width: 56%;
+ /* font-weight: normal; */
+}
+
+.semi_col .num_color {
+ color: #EC5B28;
+}
+
+.issuelist {
+ position: relative;
+}
+
+.issuelist .notuse,
+.issuelist .use {
+ float: right;
+ color: #333;
+ font-size: 0.825rem;
+}
+
+.issuelist .notuse image,
+.issuelist .use image {
+ vertical-align: middle;
+}
+
+.issuecard .task_num {
+ border: 0;
+ margin-bottom: 0;
+ padding: 0;
+
+ border-bottom: 1px solid #eee;
+ padding-bottom: 10rpx;
+ margin-bottom: 10rpx;
+ overflow: hidden;
+}
+
+.issuelist .tag_icon {
+ width: 94rpx;
+ height: 94rpx;
+ position: absolute;
+ right: 0;
+ top: -6rpx;
+}
+
+button::after {
+ border: none;
+ border-radius: 0;
+}
+
+.btn_confirm {
+ width: 50%;
+ border: none;
+ background: #009EFF;
+ border-radius: 0;
+ color: #FFFFFF;
+}
+
+.btn_cancle {
+ width: 50%;
+ border: none;
+ background: #FFFFFF;
+ border-radius: 0;
+ color: #000000;
+}
+
+.line_color {
+ /* color: #E7E6E4; */
+ color: #F5EBF4;
+ /* padding-top: 10rpx;
+ padding-bottom: 10rpx; */
+}
+
+
+
+.filter_button {
+ font-size: 28rpx;
+ padding-left: 20rpx;
+ padding-right: 20rpx;
+ /* width: 240rpx; */
+ color: #fff;
+ background-color: #3C9CFF;
+}
+
+.filter_button_after {
+ opacity: 0.7;
+}
+
+.btn_edit_big_confirm {
+ font-size: 35rpx;
+ width: 50%;
+ color: #fff;
+ background-color: #3C9CFF;
+ border: none;
+ border-radius: 0;
+}
+
+.btn_edit_big_cancle {
+ font-size: 35rpx;
+ width: 50%;
+ color: #303133;
+ border: none;
+ border-radius: 0;
+ box-shadow: none;
+ background-color: #fff;
+
+}
+
+.btn_edit_big_after {
+ opacity: 0.7;
+}
+
+.btn_add_big {
+ background-color: #D8D8D8;
+ color: #fff;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.icons_close {
+ width: 70rpx;
+ height: 70rpx;
+ margin: 10rpx;
+}
+
+.paizhao {
+ padding-bottom: 10rpx;
+ padding-top: 20rpx;
+ padding-left: 20rpx;
+}
+
+.paizhao image {
+ width: 50rpx;
+ height: 50rpx;
+}
+
+.card_partCode {
+ font-size: 36rpx;
+ font-weight: 500;
+ padding: 10rpx;
+
+}
+
+.card_itemCode {
+ font-size: 40rpx;
+ font-weight: bold;
+ /* padding: 5rpx 10rpx; */
+ /* width: 210rpx; */
+ word-wrap: break-word;
+ word-break: break-all;
+}
+
+.card_itemName {
+ color: #909399;
+ font-size: 30rpx;
+ /* padding: 5rpx 10rpx; */
+ /* width: 210rpx; */
+ word-wrap: break-word;
+ word-break: break-all;
+}
+
+.card_ProdLine {
+ color: #909399;
+ font-size: 30rpx;
+ padding: 5rpx 30rpx;
+}
+
+
+/* .std_pack {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ padding: 0px;
+ color: #909399;
+ font-size: 30rpx;
+}
+ */
+
+
+.card_content {
+ font-size: 35rpx;
+ font-weight: bold;
+ padding: 5px;
+}
+
+.card_icon_normal {
+ width: 45rpx;
+ height: 45rpx;
+ vertical-align: middle
+}
+
+.card_packing_code {
+ color: #3315EB;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_batch {
+ color: #9747FF;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_container {
+ color: #0076F6;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+
+.card_container_content {
+ font-size: 32rpx;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_business {
+ color: #F1A532;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_business_content {
+ font-size: 32rpx;
+ padding: 5px;
+}
+
+.card_location {
+ color: #DA8910;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_to_location {
+ color: #329362;
+ padding: 5px;
+ font-size: 35rpx;
+}
+
+.card_location_content {
+ font-size: 32rpx;
+ padding: 5px;
+}
+
+.card_supportCode {
+ color: #DA8910;
+ padding: 5px;
+}
+
+.card_supportCode_content {
+ font-size: 32rpx;
+}
+
+.card_item_code {
+ color: #F1A532;
+ padding: 5px;
+}
+
+.card_product_date {
+ color: #329362;
+ padding: 5px;
+}
+
+.card_order {
+ color: #0076F6;
+ padding: 5px;
+}
+
+.scan_view {
+ /* #0CC2B6 20% */
+ background: linear-gradient(90deg, rgba(12, 194, 182, 0.2) 0%, rgba(12, 194, 182, 0) 100%)
+}
+
+.card_view {
+ font-size: 32rpx;
+ padding: 5rpx;
+}
+
+/*
+.pack_view {
+ font-size: 32rpx;
+ padding: 5rpx;
+}
+
+.location_view {
+ font-size: 32rpx;
+ padding: 5rpx;
+}
+
+.batch_view {
+ font-size: 32rpx;
+ padding: 5rpx;
+}
+ */
+.business_view {
+ font-size: 32rpx;
+ padding: 5rpx;
+}
+
+.pop_customer {
+ border-radius: 8rpx;
+ background-color: #fff;
+}
+
+.nodata {
+ width: 390rpx;
+ height: 300rpx;
+}
+
+.text_ellipsis {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+.task_top {
+ margin: 0rpx 10rpx;
+ background-color: #fff;
+ vertical-align: middle;
+}
+
+.task_item {
+ margin: 0rpx 10rpx;
+ margin-top: 10rpx;
+ background-color: #fff;
+}
+
+.task_card {
+ padding: 12rpx;
+ background-color: #fff;
+ border-radius: 10rpx;
+ margin: 12rpx;
+}
+
+.task_number {
+ font-size: 35rpx;
+ font-weight: 600;
+ /* bold */
+}
+
+.task_text {
+ font-size: 30rpx;
+ margin: 5rpx 0rpx;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.request_state_un-doing {
+ font-size: 28rpx;
+ background: rgba(95, 203, 148, 0.2);
+ color: #22AF68;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.job_state_doing {
+ font-size: 28rpx;
+ background: rgba(236, 156, 0, 0.2);
+ color: #EC9C00;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.job_state_un-doing {
+ font-size: 28rpx;
+ background: rgba(95, 203, 148, 0.2);
+ color: #22AF68;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.job_state_completed {
+ font-size: 28rpx;
+ background: rgba(95, 203, 148, 0.2);
+ color: #22AF68;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.job_state_close {
+ font-size: 28rpx;
+ background: rgba(95, 203, 148, 0.2);
+ color: #22AF68;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+
+.job_state_cancelled {
+ font-size: 28rpx;
+ background: rgba(95, 203, 148, 0.2);
+ color: #ff0000;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.pop_detail {
+ background-color: #fff;
+ width: 100%;
+ border-radius: 8rpx 8rpx 0rpx 0rpx;
+ padding: 15rpx;
+}
+
+.pop_detail .item {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+
+ margin-left: 10rpx;
+ margin-right: 10rpx;
+
+ display: flex;
+ flex-direction: row;
+
+ -webkit-justify-content: space-between;
+ justify-content: space-between;
+}
+
+.pop_detail .item_title {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+}
+
+.pop_detail .text_wrap {
+ color: #909399;
+ word-break: break-all;
+ text-align: right;
+}
+
+.pop_detail .item_big_title {
+ /* color: #2196F3; */
+ /* font-size: 35rpx; */
+ margin-left: 10rpx;
+ margin-right: 10rpx;
+ margin-top: 10rpx;
+ margin-bottom: 10rpx;
+}
+
+
+
+
+/deep/.uni-popup .uni-popup__wrapper {
+ width: 100% !important;
+ padding: 15rpx 20rpx 15rpx 20rpx;
+}
+
+.btn_bottom {
+ position: fixed;
+ bottom: 10rpx;
+ right: 0;
+}
+
+.btn_add_small {
+
+ background-color: #3C9CFF;
+ width: 200rpx;
+ font-size: 30rpx;
+ color: #fff;
+ border-radius: 5rpx;
+}
+
+.btn_add_small_after {
+ opacity: 0.7;
+}
+
+.btn_commit_after {
+ opacity: 0.7;
+}
+
+/* 禁用时样式 */
+button[disabled] {
+ background-color: #fff;
+ color: #666;
+}
+
+.btn_commit {
+ background-color: #3C9CFF;
+ font-size: 30rpx;
+ color: #fff;
+ text-align: center;
+ padding-left: 80rpx;
+ padding-right: 80rpx;
+ margin-right: 20rpx;
+ margin-left: 10rpx;
+}
+
+.btn_add {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+
+ position: absolute;
+ width: 97%;
+ height: 35px;
+ border-radius: 3px;
+ opacity: 1;
+ padding: 5px;
+ margin-left: 5px;
+ margin-right: 5px;
+
+ box-sizing: border-box;
+ border: 1px dashed #AAAAAA;
+ background: #D8D8D8;
+
+ color: #FFFFFF;
+ font-size: 16px;
+ font-weight: normal;
+ line-height: 26px;
+ letter-spacing: 0em;
+}
+
+.btn_clear_after {
+ opacity: 0.7;
+}
+
+
+.btn_clear {
+ background-color: #fff;
+ font-size: 30rpx;
+ color: #000;
+ text-align: center;
+ padding-left: 80rpx;
+ padding-right: 80rpx;
+ margin-right: 10rpx;
+ margin-left: 20rpx;
+}
+
+.icons_scan_close {
+ width: 35rpx;
+ height: 35rpx;
+}
+
+.count_image {
+ width: 45rpx;
+ height: 45rpx;
+}
+
+.count_type_light {
+ color: #0CC2B6;
+ font-size: 30rpx;
+ margin-left: 10rpx;
+ margin-right: 10rpx;
+}
+
+.count_type_black {
+ color: #FA5151;
+ font-size: 30rpx;
+ margin-left: 10rpx;
+ margin-right: 10rpx;
+}
+
+.btn_bot {
+ position: fixed;
+ bottom: 0;
+ right: 0;
+ padding-bottom: 20rpx;
+ padding-right: 20rpx;
+ z-index: 10;
+}
+
+.btn_single_clear{
+ background-color: #fff;
+ font-size: 30rpx;
+ color: #000;
+ text-align: center;
+ width: 180rpx;
+}
+
+.btn_single_clear{
+ background-color: #fff;
+ font-size: 30rpx;
+ color: #000;
+ text-align: center;
+ width: 180rpx;
+}
+.btn_clear_after {
opacity: 0.7;
}
+
+.btn_single_commit {
+ background-color: #3C9CFF;
+ font-size: 30rpx;
+ color: #fff;
+ text-align: center;
+ width: 180rpx;
+}
+
+.btn_single_reject {
+ background-color: #F56C6C;
+ font-size: 30rpx;
+ color: #fff;
+ text-align: center;
+ width: 180rpx;
+}
+
+.center {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+}
+
+.space_between {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+
+.text_recommend {
+ color: #0A84FF;
+ font-size: 38rpx;
+}
+
+.text_balance {
+ font-size: 36rpx;
+}
+
+.text_default {
+ color: #000000;
+ font-size: 36rpx;
+}
+
+.text_greater {
+ color: #F56C6C;
+ font-size: 36rpx;
+}
+
+.text_less {
+ color: #FF9500;
+ font-size: 36rpx;
+}
+
+.text_equal {
+ color: #34C759;
+ font-size: 38rpx;
+}
+
+.std_pack {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ padding: 0px;
+ color: #909399;
+ font-size: 30rpx;
+}
+
+.std_uom {
+ color: #909399;
+ font-size: 30rpx;
+ margin-left: 5rpx;
+ margin-right: 5rpx;
+}
+
+.uom {
+ color: #909399;
+ font-size: 30rpx;
+ margin-left: 5rpx;
+ margin-right: 5rpx;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+}
+
+
+.std_split {
+ color: #909399;
+ font-size: 36rpx;
+ margin-left: 5rpx;
+ margin-right: 5rpx;
+}
+
+.inspect_job {
+ color: #F1A532;
+ font-size: 36rpx;
+ margin-right: 10rpx;
+}
+
+.ok_job {
+ color: #53C21D;
+ font-size: 36rpx;
+ margin-right: 2rpx;
+}
+
+.nook_job {
+ color: #E45656;
+ font-size: 36rpx;
+ margin-right: 10rpx;
+}
+
+.raw_location {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+ padding-left: 15rpx;
+ padding-right: 15rpx;
+ background-color: #34C759;
+ color: #fff;
+ font-size: 35rpx;
+}
+
+.fg_location {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+ padding-left: 15rpx;
+ padding-right: 15rpx;
+ background-color: #5A7CF3;
+ color: #fff;
+ font-size: 35rpx;
+}
+
+.semi_location {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+ padding-left: 15rpx;
+ padding-right: 15rpx;
+ background-color: #FF9500;
+ color: #fff;
+ font-size: 35rpx;
+}
+
+.hold_location {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+ padding-left: 15rpx;
+ padding-right: 15rpx;
+ background-color: #F56C6C;
+ color: #fff;
+ font-size: 35rpx;
+}
+
+.unk_location {
+ padding-top: 5rpx;
+ padding-bottom: 5rpx;
+ padding-left: 15rpx;
+ padding-right: 15rpx;
+ background-color: #999999;
+ color: #fff;
+ font-size: 35rpx;
+}
+
+.qty_input {
+ width: 150rpx;
+ height: 60rpx;
+ line-height: 10rpx;
+ font-size: 10rpx;
+ color: #000000;
+ text-align: right;
+ border: 1px solid rgb(220, 211, 211);
+ padding: 5rpx;
+}
+
+.qty_inspect_input {
+ width: 150rpx;
+ height: 60rpx;
+ line-height: 10rpx;
+ font-size: 10rpx;
+ color: #000000;
+ text-align: center;
+ border: 1px solid rgb(220, 211, 211);
+ padding: 5rpx;
+}
+
+.icon_close {
+ width: 100rpx;
+ height: 100rpx;
+ opacity: 1;
+
+}
+
+.icon_edit {
+ width: 30rpx;
+ height: 40%;
+ opacity: 1;
+ margin-left: 10rpx;
+}
+
+.title_popup {
+ margin-top: 16px;
+ margin-bottom: 16px;
+ margin-left: 8px;
+ margin-right: 8px;
+ font-size: 35rpx;
+ text-align: center;
+}
+
+.close_button {
+ /* 自动布局子元素 */
+ position: static;
+ left: 20px;
+ /* top: 1109.01px; */
+ width: 100%;
+ height: 40px;
+ border-radius: 40px;
+ opacity: 1;
+
+ /* 自动布局 */
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ padding: 9px 12px;
+ gap: 10px;
+ align-self: stretch;
+
+ /* 颜色/白色 */
+ background: #FFFFFF;
+ box-sizing: border-box;
+ /* 颜色/边框 */
+ border: 1px solid #E7E6E4;
+ z-index: 3;
+}
+
+/**
+ * 申请状态 新增
+ */
+.request_status_new {
+ font-size: 28rpx;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+ background: rgba(34, 175, 104, 0.2);
+ color: rgba(34, 175, 104, 1);
+}
+
+/**
+ * 申请状态 审批中
+ */
+.request_status_reviewing {
+ font-size: 28rpx;
+ background: rgba(236, 156, 0, 0.2);
+ color: rgba(236, 156, 0, 1);
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 审批通过
+ */
+.request_status_agreed {
+ font-size: 28rpx;
+ background: rgba(103, 194, 57, 0.2);
+ color: rgba(103, 194, 57, 1);
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 审批驳回
+ */
+.request_status_refused {
+ font-size: 28rpx;
+ background: rgba(245, 108, 108, 0.2);
+ color: rgba(245, 108, 108, 1);
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 处理中
+ */
+.request_status_handling {
+ font-size: 28rpx;
+ background: rgba(60, 156, 255, 0.2);
+ color: rgba(60, 156, 255, 1);
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 部分完成
+ */
+.request_status_partial {
+ font-size: 28rpx;
+ background: #D3FF3C;
+ color: #ffffff;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 已完成
+ */
+.request_status_completed {
+ font-size: 28rpx;
+ background: #D3FF3C;
+ color: #ffffff;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 中止
+ */
+.request_status_abort {
+ font-size: 28rpx;
+ background: #F33140;
+ color: #ffffff;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+/**
+ * 申请状态 已关闭
+ */
+.request_status_cancelled {
+ font-size: 28rpx;
+ background: #F33140;
+ color: #ffffff;
+ padding: 10rpx 20rpx 10rpx 20rpx;
+ border-radius: 10rpx;
+}
+
+.split_line {
+ background-color: #e0e0e0;
+ height: 1px;
+ margin: 10rpx;
}
\ No newline at end of file
diff --git a/src/pages/fg/coms/comReceiptPopup.vue b/src/pages/fg/coms/comReceiptPopup.vue
index 39a32c44..15c11a1b 100644
--- a/src/pages/fg/coms/comReceiptPopup.vue
+++ b/src/pages/fg/coms/comReceiptPopup.vue
@@ -12,50 +12,80 @@
-
-
-
- 生产线:
+
+
+
+ 生产线:
+
+ {{productionLineName}}
-
-
-
+
+
+
+
+
-
+
-
- 物料:
-
+
+ 物料代码:
+
{{itemCode}}
+
-
+
+
+
+ 批次:
+
+
+
+
+
+
+
+
+ 计划数量:
+
+ {{planQty}}
+
+
+
+
+
+
-
- 数量:
-
-
-
-
-
-
- ()
-
+
+ 包装规格:
+
+ {{packUnit}}
+
+
+
+
+
+
@@ -66,25 +96,26 @@
-
-
diff --git a/src/static/icons/down.svg b/src/static/icons/down.svg
new file mode 100644
index 00000000..576dd9c9
--- /dev/null
+++ b/src/static/icons/down.svg
@@ -0,0 +1 @@
+
\ No newline at end of file