This commit is contained in:
‘937886381’ 2024-04-16 14:04:43 +08:00
parent 64de2c50b6
commit 9dec81e0b2

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-07-19 15:18:30 * @Date: 2021-07-19 15:18:30
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-16 13:51:33 * @LastEditTime: 2024-04-16 14:03:31
* @Description: * @Description:
--> -->
<template> <template>
@ -42,14 +42,16 @@
<el-row v-for="op in orderList" :key="op.id" style="margin-bottom: .5em;overflow: hidden;"> <el-row v-for="op in orderList" :key="op.id" style="margin-bottom: .5em;overflow: hidden;">
<!-- <el-col :span="12"> --> <!-- <el-col :span="12"> -->
<!-- <div style="height: 34px;"> --> <!-- <div style="height: 34px;"> -->
<span class="now-secondary-title" style="font-size: 14px;opacity: calc(.6);">{{ op.name }}</span> <span style="display: inline-block;width: 330px;">
<el-divider class="split" v-if="op.specifications" direction="vertical"></el-divider> <span class="now-secondary-title" style="font-size: 14px;opacity: calc(.6);">{{ op.name }}</span>
<!-- <span v-if="op.size" class="split"></span> --> <el-divider class="split" v-if="op.specifications" direction="vertical"></el-divider>
<span v-if="op.specifications" class="orderSize" style="font-size: 14px;opacity: calc(.6);">{{ <!-- <span v-if="op.size" class="split"></span> -->
op.specifications }}</span> <span v-if="op.specifications" class="orderSize" style="font-size: 14px;opacity: calc(.6);">{{
<el-divider class="split" v-if="op.planQuantity" direction="vertical"></el-divider> op.specifications }}</span>
<span v-if="op.planQuantity" class="orderPlan" style="font-size: 14px;opacity: calc(.6);">{{ <el-divider class="split" v-if="op.planQuantity" direction="vertical"></el-divider>
op.planQuantity }}</span> <span v-if="op.planQuantity" class="orderPlan" style="font-size: 14px;opacity: calc(.6);">{{
op.planQuantity }}</span>
</span>
<span v-if="op.actualQuantity" class="orderFinish" <span v-if="op.actualQuantity" class="orderFinish"
style="font-size: 14px;opacity: calc(.6);margin-left: 130px;">{{ style="font-size: 14px;opacity: calc(.6);margin-left: 130px;">{{
op.actualQuantity op.actualQuantity
@ -380,7 +382,7 @@ export default {
progressRate: 0.933333, progressRate: 0.933333,
specifications: '1100*5554*22', specifications: '1100*5554*22',
plan: 11111, plan: 11111,
finish:111, actualQuantity:111,
}, },
{ {
id: '2', id: '2',
@ -388,7 +390,7 @@ export default {
progressRate: 0.932323, progressRate: 0.932323,
size: '1100*5554*22', size: '1100*5554*22',
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '3', id: '3',
@ -396,7 +398,7 @@ export default {
progressRate: 0.23232, progressRate: 0.23232,
size: '1100*5554*22', size: '1100*5554*22',
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '4', id: '4',
@ -404,7 +406,7 @@ export default {
progressRate: 0.32323, progressRate: 0.32323,
size: '1100*5554*22', size: '1100*5554*22',
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '5', id: '5',
@ -412,7 +414,7 @@ export default {
progressRate: 0.32323, progressRate: 0.32323,
size: '1100*5554*22', size: '1100*5554*22',
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '6', id: '6',
@ -420,7 +422,7 @@ export default {
size: '1100*5554*22', size: '1100*5554*22',
progressRate: 0.32323, progressRate: 0.32323,
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '7', id: '7',
@ -428,7 +430,7 @@ export default {
size: '1100*5554*22', size: '1100*5554*22',
progressRate: 0.32323, progressRate: 0.32323,
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
{ {
id: '8', id: '8',
@ -436,7 +438,7 @@ export default {
progressRate: 0.32323, progressRate: 0.32323,
size: '1100*5554*22', size: '1100*5554*22',
plan: 11111, plan: 11111,
finish: 111, actualQuantity: 111,
}, },
// { // {
// id: '5', // id: '5',
@ -456,7 +458,7 @@ export default {
progressRate: parseFloat((ele.progressRate * 100).toFixed(0)), progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
specifications: ele.specifications ? '规格' + ele.specifications :null, specifications: ele.specifications ? '规格' + ele.specifications :null,
planQuantity: ele.plan ? '计划' + ele.plan + '片' : null, planQuantity: ele.plan ? '计划' + ele.plan + '片' : null,
finish: ele.finish + '片', actualQuantity: ele.actualQuantity + '片',
}; };
} }
}); });