diff --git a/src/hybrid/html/pointPutawayJob.html b/src/hybrid/html/pointPutawayJob.html index 06c908fc..ac402639 100644 --- a/src/hybrid/html/pointPutawayJob.html +++ b/src/hybrid/html/pointPutawayJob.html @@ -19,109 +19,48 @@ border: 1px solid #dedede; } - .left { - border-top: 1px solid #b1b1b1; - border-left: 1px solid #b1b1b1; - flex: 1; - } - - .left-item { - display: flex; - } - - .label { - border-bottom: 1px solid #b1b1b1; - border-right: 1px solid #b1b1b1; - width: 60px; - padding: 0px 5px; - height: 30px; - line-height: 30px; - } - - .value { - border-bottom: 1px solid #b1b1b1; - border-right: 1px solid #b1b1b1; - padding: 0px 5px; - height: 30px; - flex: 1; - width: 0px; - display: flex; - align-items: center; - word-wrap: break-word; - } - - .right { - width: 200px; - } - - .image { - width: 100%; - height: 202px; - border-bottom: 1px solid #b1b1b1; - border-top: 1px solid #b1b1b1; + + .left { + flex: 1; + border-bottom: 1px solid #b1b1b1; + } + .left-item { + display: flex; + border-top: 1px solid #b1b1b1; + border-left: 1px solid #b1b1b1; + border-right: 1px solid #b1b1b1; + min-height: 30px; + line-height: 30px; + view{ + padding: 4px 10px; + } + .label{ + width: 100px; + padding: 4px 10px; border-right: 1px solid #b1b1b1; } - - .image img { - width: calc(100% - 4px); - height: calc(100% - 4px); - margin: 2px; - } - - .mb-kw { - border-bottom: 1px solid #dedede; - padding: 10px; - font-size: 15px; - - } - - .mb-kw div { - font-weight: bold; - font-size: 23px; - text-align: center; - } - - .mb-bo { - display: flex; - } - - .mb-bo .mb-left { - flex: 1 - } - - .mb-bo .mb-left .mb-text { - padding: 10px; - } - - .mb-bo .mb-left .mb-text:nth-child(1) { - border-bottom: 1px solid #dedede; - } - - .mb-bo .mb-left .mb-text div { - font-weight: bold; - font-size: 16px; - text-align: center; - } - - .mb-bo .mb-right { - padding: 10px; - width: 230px; - border-left: 1px solid #dedede; - display: flex; - align-items: center; - } - - .mb-bo .mb-right .mb-text { - - width: 100%; - } - - .mb-bo .mb-right .mb-text div { - font-weight: bold; - font-size: 20px; - text-align: center; - width: 100%; - } + } + + + + .relative { + margin-bottom: 20rpx; + position: relative; + } + + .q { + position: absolute; + font-size: 12.5rem; + color: rgba(0, 0, 0, 0.1); + width: calc(100% - 100px); + right: 0px; + top: 0px; + text-align: center; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + } diff --git a/src/pages/pointPutawayJob/index.vue b/src/pages/pointPutawayJob/index.vue index baefd393..252558db 100644 --- a/src/pages/pointPutawayJob/index.vue +++ b/src/pages/pointPutawayJob/index.vue @@ -10,43 +10,45 @@ Q - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
物料代码:{{item.itemCode}}
物料名称{{item.itemName}}发货单号{{data1.asnNumber}}
供应商{{item.supplierCode}}供应商批次{{item.supplierBatch}}
到货数量{{item.quantityQty}}抽检数量{{item.sampleQty}}
未生成检验申请
没有检验方案
检验阶段不存在
+ + + 发货单号 + {{data1.asnNumber}} + + + 物料代码 + {{item.itemCode}} + + + 物料名称 + {{item.itemName}} + + + 供应商 + {{item.supplierCode}} + + + 供应商批次 + {{item.supplierBatch}} + + + 到货数量 + {{item.supplierBatch}} + + + 抽检数量 + {{item.quantityQty}} + + + 未生成检验申请 + + + 没有检验方案 + + + 检验阶段不存在 + +
@@ -212,46 +214,55 @@

Q
- - - - - - - - - - - - - - - - - - - - - - - - - - +
+
+
发货单号
+
${this.data1.asnNumber}
+
+
+
物料代码
+
${item.itemCode}
+
+
+
物料名称
+
${item.itemName}
+
+
+
供应商
+
${item.supplierCode}
+
+
+
供应商批次
+
${item.supplierBatch}
+
+
+
到货数量
+
${item.supplierBatch}
+
+
+
抽检数量
+
${item.quantityQty}
+
` let str2 = `` if(item.haveInspectionRequest==='0'){ - str2 =`
` + str2 =`
+
未生成检验申请
+
` }else if(item.haveInspectionRequest==='2'){ - str2 =`` + str2 =`
+
没有检验方案
+
` }else if(item.haveInspectionRequest==='3'){ - str2 =`` + str2 =`
+
检验阶段不存在
+
` } let str3 = ` - -
物料代码:${item.itemCode}
物料名称${item.itemName}发货单号${this.data1.asnNumber}
供应商${item.supplierCode}供应商批次${item.supplierBatch}
到货数量${item.quantityQty}抽检数量${item.sampleQty}
未生成检验申请
没有检验方案
检验阶段不存在
-
-
+ + + + ` str += str1 + str2+ str3 }) @@ -373,173 +384,31 @@ \ No newline at end of file