From dbac1e67dab612853a86402ef60c3f883d550601 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BF=97=E5=9B=BD?= <854933521@qq.com> Date: Tue, 29 Oct 2024 13:36:42 +0800 Subject: [PATCH] =?UTF-8?q?common=E4=B8=8B=E6=96=87=E4=BB=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20hybrid\html=E4=BF=AE=E6=94=B9=208/8-10/25?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/array.js | 12 + src/common/balance.js | 17 +- src/common/config.js | 9 +- src/common/detail.js | 30 +- src/common/directory.js | 18 + src/common/noclick.js | 44 + src/common/record.js | 18 +- src/common/style/new_style.css | 5566 ++++++++++++----------- src/hybrid/html/point.html | 153 +- src/hybrid/html/pointPutawayJob.html | 178 +- src/hybrid/html/purchaseReceiptJob.html | 122 +- 11 files changed, 3121 insertions(+), 3046 deletions(-) create mode 100644 src/common/noclick.js diff --git a/src/common/array.js b/src/common/array.js index 27a339c0..707201e0 100644 --- a/src/common/array.js +++ b/src/common/array.js @@ -110,6 +110,18 @@ export function getPurchaseReceiptOption(allowModifyQty, allowModifyLocation) { return option; } +export function getRecordOption(allowModifyQty, allowModifyLocation) { + var option = [] + option.push(...getDetailOption()) + if (allowModifyQty) { + option.push(...getEditOption()) + } + if (allowModifyLocation) { + option.push(...getLocationOption()) + } + option.push(...getRemoveOption()) + return option; +} //详情 export function getDetailOption() { let option_detail = [{ diff --git a/src/common/balance.js b/src/common/balance.js index 532d86cf..47f725ae 100644 --- a/src/common/balance.js +++ b/src/common/balance.js @@ -337,7 +337,7 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) { filters.push({ column: "packingNumber", action: "==", - value: null + value: '' }) filters.push({ column: "locationCode", @@ -352,11 +352,6 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) { action: "in", value: status }) - filters.push({ - column: "inventoryStatus", - action: "in", - value: status - }) } var params = { @@ -430,11 +425,6 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback) action: "in", value: status }) - filters.push({ - column: "inventoryStatus", - action: "in", - value: status - }) } var params = { @@ -491,11 +481,6 @@ export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) value: status }) - filters.push({ - column: "inventoryStatus", - action: "in", - value: status - }) } var params = { diff --git a/src/common/config.js b/src/common/config.js index 1288b666..67d4d8c4 100644 --- a/src/common/config.js +++ b/src/common/config.js @@ -1,2 +1,9 @@ export const overPagePrint="overPage_print" -export const overPageTemplate="overPage_Template" \ No newline at end of file +export const overPageTemplate="overPage_Template" +//3分钟刷新 +export const planRefreshTime=3*60*1000 + +export const issueJobFilter="issue_job_filter" +export const repleinshJobFilter="repleinsh_job_filter" +export const overPackageJobFilter="over_package_job_filter" +export const productionReceiptJobFilter="production_receipt_job_filter" \ No newline at end of file diff --git a/src/common/detail.js b/src/common/detail.js index b6ed44a3..ad30369d 100644 --- a/src/common/detail.js +++ b/src/common/detail.js @@ -49,7 +49,7 @@ export function getDataSource(subList) { let items = []; subList.forEach(detail => { var item = items.find(r => - r.itemCode == detail.itemCode) + r.itemCode == detail.itemCode && r.batch == detail.batch) if (item == undefined) { item = createItemInfo(detail); let newDetail = createDetailInfo(detail); // @@ -115,22 +115,42 @@ export function calcHandleQty(detailSource) { } } } +//计算推荐和扫描的不是用一个的数量 +export function calcHandleNewQty(detailSource) { + for (let item of detailSource) { + item.handleQty = new Decimal(0).toNumber(); + // item.qty = new Decimal(0).toNumber(); + for (let detail of item.subList) { + if (detail ) { + if (!detail.isRecommend && detail.scaned) { + item.handleQty = calc.add(item.handleQty, detail.handleQty); + } + // if (!detail.isRecommend ) { + // item.qty = calc.add(item.qty, detail.qty); + // } + + } + } + } +} export function calcTreeHandleQty(detailSource) { for (let item of detailSource) { item.handleQty = new Decimal(0).toNumber(); for (let detail of item.subList) { - if (detail != undefined && detail.scaned) { - if (detail.packList.length > 0) { + if (detail) { + if (detail.packList && detail.packList.length > 0) { detail.handleQty = new Decimal(0).toNumber(); for (let pack of detail.packList) { - if (pack != undefined && pack.scaned) { + if (pack && pack.scaned) { detail.handleQty = calc.add(detail.handleQty, pack.handleQty); } } } - item.handleQty = calc.add(item.handleQty, detail.handleQty); + if(detail.handleQty){ + item.handleQty = calc.add(item.handleQty, detail.handleQty); + } } } } diff --git a/src/common/directory.js b/src/common/directory.js index 0e59c7e2..478396d5 100644 --- a/src/common/directory.js +++ b/src/common/directory.js @@ -1,4 +1,5 @@ let jobStatusList = []; +let receiveStatusList = []; let itemStatusList = []; let itemTypeList =[]; let locationTypeList = []; @@ -42,6 +43,7 @@ export function getBusinessTypeDesc(type) { //获取字典信息 export function clearCacheData() { jobStatusList = []; + receiveStatusList=[]; itemStatusList = []; itemTypeList =[]; locationTypeList = []; @@ -139,6 +141,22 @@ export function getJobStateInfo(value) { return resultInfo } +export function getReceiveStateInfo(value) { + var resultInfo = ""; + if (receiveStatusList.length == 0) { + receiveStatusList = getDirectoryInfo("receive_status") + } + if (receiveStatusList.length > 0) { + for (let item of receiveStatusList) { + if (item.value == value) { + resultInfo = item + break; + } + } + } + return resultInfo +} + //获取任务状态样式 export function getJobStateStyle(value) { let item = getJobStateInfo(value); diff --git a/src/common/noclick.js b/src/common/noclick.js new file mode 100644 index 00000000..6bec4fe4 --- /dev/null +++ b/src/common/noclick.js @@ -0,0 +1,44 @@ +// 防止处理多次点击 +function noMultipleClicks(methods, info) { + // methods是需要点击后需要执行的函数, info是点击需要传的参数 + let that = this; + if (that.noClick) { + // 第一次点击 + that.noClick= false; + if(info && info !== '') { + // info是执行函数需要传的参数 + methods(info); + } else { + methods(); + } + let timer = setTimeout(()=> { + that.noClick= true; + clearTimeout(timer) + }, 2000) + } else { + // 这里是重复点击的判断 + } +} + + +// 节流函数 +const throttle = (fn, t,_this) => { + console.log('throttle') + return ()=> { + if (!_this.timer) { + _this.timer = setTimeout(()=>{ + console.log('fn') + //·清空定时器 + _this.timer = null + }, t) + fn() + } + } +} + + +//导出 +export default { + noMultipleClicks,//禁止多次点击 + throttle +} diff --git a/src/common/record.js b/src/common/record.js index 08fb2061..45cf9d5e 100644 --- a/src/common/record.js +++ b/src/common/record.js @@ -22,7 +22,7 @@ export function createItemInfo(balance, pack) { uom: pack.uom, subList: [] } - item.containerNumber = pack.parentNumber != null ? pack.parentNumber : pack.number; + item.containerNumber = pack.parentNumber ? pack.parentNumber : pack.number; return item; } @@ -33,7 +33,7 @@ export function createDetailInfo(balance, pack) { let detail = deepCopyData(balance); detail.balanceQty = new Decimal(detail.qty).toNumber() detail.qty = new Decimal(detail.qty).toNumber(); - detail.packQty = new Decimal(pack.packQty).toNumber() + detail.packQty = pack.packQty ? new Decimal(pack.packQty).toNumber() : 0 detail.packUnit = pack.packUnit detail.handleQty = new Decimal(detail.qty).toNumber() ; detail.package = pack; @@ -43,6 +43,20 @@ export function createDetailInfo(balance, pack) { return detail; } +export function createDetailByPackInfo(pack) { + + // data.toInventoryStatus = this.toInventoryStatus == "" ? data.inventoryStatus : this.toInventoryStatus; + // data.inventoryStatus = data.inventoryStatus; + let detail = deepCopyData(pack); detail.scaned = true; + detail.balanceQty = new Decimal(detail.qty).toNumber() + detail.qty = new Decimal(detail.qty).toNumber(); + detail.packQty = pack.packQty ? new Decimal(pack.packQty).toNumber() : 0 + detail.packUnit = pack.packUnit + detail.handleQty = new Decimal(detail.qty).toNumber(); + detail.package = pack; + return detail; +} + //计算实际数量 export function calcHandleQty(detailSource) { for (let item of detailSource) { diff --git a/src/common/style/new_style.css b/src/common/style/new_style.css index 0067c4da..c8b022a1 100644 --- a/src/common/style/new_style.css +++ b/src/common/style/new_style.css @@ -1,2099 +1,2099 @@ -/*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; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.scan_float image { - width: 40rpx; - height: 40rpx; -} - -.scan_float view { - color: #fff; - font-size: .725rem; -} - -.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; - box-sizing: border-box; - background:#EEF4FA; - padding:20rpx; - border-radius: 10rpx; -} - -.cell_box { - width: 100%; -} - -.cell_box .cell_info { - position: relative; - /* width: 25%; */ - padding: 0 20rpx; - /* margin: 0 0 20rpx; */ - text-align: center; - flex:1 -} - -.cell_box .cell_long { - /* width: 33%; */ -} - -.cell_box .cell_info view { - font-size: 0.9375rem; - margin-bottom: 10rpx; - color: #515562; - word-wrap:break-word -} - -.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:26rpx; -} - -.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 { -} - -.msg_list ::v-deep .u-card__head--left__thumb{ - width: 60rpx !important; - height: 60rpx !important; - padding:12rpx; - background-color: #3d7eff!important; - 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; -} - ::v-deep .msg_list .hasread .u-card__head--left__thumb { - background-color: #ccc!important; -} - -/* 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: 32rpx; - font-weight: bold; -/* padding: 5rpx 10rpx; */ - /* width: 210rpx; */ - word-wrap: break-word; - word-break: break-all; -} - -.card_itemName { - color: #909399; - font-size: 26rpx; - /* 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: 32rpx; - color:#2E3A63; - margin-left:20rpx -} +/*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; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; +} + +.scan_float image { + width: 40rpx; + height: 40rpx; +} + +.scan_float view { + color: #fff; + font-size: .725rem; +} + +.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; + box-sizing: border-box; + background:#EEF4FA; + padding:20rpx; + border-radius: 10rpx; +} + +.cell_box { + width: 100%; +} + +.cell_box .cell_info { + position: relative; + /* width: 25%; */ + padding: 0 20rpx; + /* margin: 0 0 20rpx; */ + text-align: center; + flex:1 +} + +.cell_box .cell_long { + /* width: 33%; */ +} + +.cell_box .cell_info view { + font-size: 0.9375rem; + margin-bottom: 10rpx; + color: #515562; + word-wrap:break-word +} + +.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:26rpx; +} + +.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 { +} + +.msg_list ::v-deep .u-card__head--left__thumb{ + width: 60rpx !important; + height: 60rpx !important; + padding:12rpx; + background-color: #3d7eff!important; + 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; +} + ::v-deep .msg_list .hasread .u-card__head--left__thumb { + background-color: #ccc!important; +} + +/* 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: 32rpx; + font-weight: bold; +/* padding: 5rpx 10rpx; */ + /* width: 210rpx; */ + word-wrap: break-word; + word-break: break-all; +} + +.card_itemName { + color: #909399; + font-size: 26rpx; + /* 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: 32rpx; + color:#2E3A63; + margin-left:20rpx +} .card_big_content { font-size: 40rpx; font-weight: bold; padding: 5px; } - -.card_icon_normal { - width: 30rpx; - height: 30rpx; - vertical-align: middle; - margin-right:12rpx -} + +.card_icon_normal { + width: 30rpx; + height: 30rpx; + vertical-align: middle; + margin-right:12rpx +} .card_item_code { color: #329362; padding: 5px; font-size: 30rpx; -} +} .card_packing_code { color: #3315EB; padding: 5px; @@ -2111,359 +2111,387 @@ button::after { padding: 5px; font-size: 30rpx; } - - - -.card_container_content { - font-size: 32rpx; - padding: 5px; -} - -.card_business { - color: #F1A532; font-size: 26rpx; font-style: italic; -} - -.card_business_content { - font-size: 32rpx; color:#2E3A63; margin-left:20rpx -} - -.card_location { - color: #DA8910; - font-size: 26rpx; - font-style: italic; -} - -.card_to_location { - color: #329362; - font-size: 26rpx; - font-style: italic; -} - -.card_location_content { - font-size: 32rpx; - padding: 5px; -} + + + +.card_container_content { + font-size: 32rpx; + padding: 5px; +} + +.card_business { + color: #F1A532; + font-size: 26rpx; + font-style: italic; +} + +.card_business_content { + font-size: 32rpx; + color:#2E3A63; + margin-left:20rpx +} + +.card_location { + color: #DA8910; + font-size: 26rpx; + font-style: italic; +} + +.card_to_location { + color: #329362; + font-size: 26rpx; + font-style: italic; +} + +.card_location_content { + font-size: 32rpx; + padding: 5px; +} .card_level { color: #0689da; padding: 5px; font-size: 30rpx; -} -.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.05) 100%); - border-radius:14rpx; - padding:10rpx 20rpx 16rpx -} - -.card_view { - font-size: 32rpx; - margin-top:14rpx -} - -/* -.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 { - background-color: #fff; - padding:20rpx 0px -} - -.task_card { - padding:0px 20rpx; - background-color: #fff; - border-radius: 10rpx; -} - -.task_number { - font-size: 36rpx; - font-weight: 600; - /* bold */ -} - -.task_text { - font-size: 30rpx; - 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:0px 30rpx; -} - -.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; - align-items:center -} - -.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; -} +} +.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.05) 100%); + border-radius:14rpx; + padding:10rpx 20rpx 16rpx +} + +.card_view { + font-size: 32rpx; + margin-top:14rpx +} + +/* +.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 { + background-color: #fff; + padding:20rpx 0px +} + +.task_card { + padding:0px 20rpx; + background-color: #fff; + border-radius: 10rpx; +} + +.task_number { + font-size: 36rpx; + font-weight: 600; + /* bold */ +} + +.task_text { + font-size: 30rpx; + 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; +} + +.receive_state_no_ok { + font-size: 28rpx; + background: rgba(236, 156, 0, 0.2); + color: #EC9C00; + padding: 10rpx 20rpx 10rpx 20rpx; + border-radius: 10rpx; +} + +.receive_state_ok { + font-size: 28rpx; + background: rgba(95, 203, 148, 0.2); + color: #22AF68; + padding: 10rpx 20rpx 10rpx 20rpx; + border-radius: 10rpx; +} + +.receive_state_reject { + font-size: 28rpx; + background: rgba(95, 203, 148, 0.2); + color: #22AF68; + padding: 10rpx 20rpx 10rpx 20rpx; + border-radius: 10rpx; +} + +.pop_detail { + background-color: #fff; + width: 100%; + border-radius: 8rpx 8rpx 0rpx 0rpx; + padding:0px 30rpx; +} + +.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; + align-items:center +} + +.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; @@ -2481,14 +2509,14 @@ button[disabled] { } .btn_clear_after { opacity: 0.7; -} -.btn_single_commit { - background-color: #3C9CFF; - font-size: 30rpx; - color: #fff; - text-align: center; - width: 180rpx; -} +} +.btn_single_commit { + background-color: #3C9CFF; + font-size: 30rpx; + color: #fff; + text-align: center; + width: 180rpx; +} .btn_single_clear { background-color: #EBEEF0; font-size: 30rpx; @@ -2497,28 +2525,28 @@ button[disabled] { 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: flex-end; - align-items: center; -} - -.space_between { - display: flex; - flex-direction: row; - justify-content: space-between; -} - + +.btn_single_reject { + background-color: #F56C6C; + font-size: 30rpx; + color: #fff; + text-align: center; + width: 180rpx; +} + +.center { + display: flex; + flex-direction: row; + justify-content: flex-end; + align-items: center; +} + +.space_between { + display: flex; + flex-direction: row; + justify-content: space-between; +} + .text_recommend { color: #0A84FF; font-size: 34rpx; @@ -2530,145 +2558,145 @@ button[disabled] { font-size: 40rpx; font-weight: bold; } - - -.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:26rpx; -} - -.std_uom { - color: #909399; - font-size: 30rpx; - margin-left: 5rpx; - margin-right: 5rpx; -} - -.uom { - color: #909399; - font-size: 26rpx; - 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; -} + + +.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:26rpx; +} + +.std_uom { + color: #909399; + font-size: 30rpx; + margin-left: 5rpx; + margin-right: 5rpx; +} + +.uom { + color: #909399; + font-size: 26rpx; + 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; +} .desc_input { height: 100rpx; font-size: 10rpx; @@ -2676,169 +2704,169 @@ button[disabled] { text-align: left; 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:rgba(60, 156, 255, 1); - box-sizing: border-box; - color:white; - /* 颜色/边框 */ - 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: rgba(230,230,230,0.5); - height: 1px; +} +.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:rgba(60, 156, 255, 1); + box-sizing: border-box; + color:white; + /* 颜色/边框 */ + 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: rgba(230,230,230,0.5); + height: 1px; } \ No newline at end of file diff --git a/src/hybrid/html/point.html b/src/hybrid/html/point.html index 6dd90cab..bdb2d69b 100644 --- a/src/hybrid/html/point.html +++ b/src/hybrid/html/point.html @@ -1,84 +1,95 @@ -
- - -