|
|
|
@ -28,6 +28,11 @@
|
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.totalNum || 0 }}</span> |
|
|
|
|
<span>单</span> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="align_center"> |
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.totalCount || 0 }}</span> |
|
|
|
|
<span>件</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="height40pt flex-c-sb border-bottom"> |
|
|
|
@ -41,6 +46,11 @@
|
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.monthNum || 0 }}</span> |
|
|
|
|
<span>单</span> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="align_center"> |
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.monthCount || 0 }}</span> |
|
|
|
|
<span>件</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="height40pt flex-c-sb"> |
|
|
|
@ -52,9 +62,13 @@
|
|
|
|
|
|
|
|
|
|
<div class="align_center"> |
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.dayNum || 0 }}</span> |
|
|
|
|
|
|
|
|
|
<span>单</span> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="align_center"> |
|
|
|
|
<span class="data mr10">{{ details.openOrderDataInfo.dayCount || 0 }}</span> |
|
|
|
|
<span>件</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -1003,12 +1017,18 @@ import {
|
|
|
|
|
const details = reactive({ |
|
|
|
|
/** 开单数据 */ |
|
|
|
|
openOrderDataInfo: { |
|
|
|
|
/** 开单 -- 总计 */ |
|
|
|
|
/** 开单 -- 当日 -- 单 */ |
|
|
|
|
dayNum: 0, |
|
|
|
|
/** 开单 -- 当月 */ |
|
|
|
|
/** 开单 -- 当月 -- 单 */ |
|
|
|
|
monthNum: 0, |
|
|
|
|
/** 开单 -- 当日 */ |
|
|
|
|
/** 开单 -- 总计 -- 单 */ |
|
|
|
|
totalNum: 0, |
|
|
|
|
/** 开单 -- 当日 -- 单 */ |
|
|
|
|
dayCount: 0, |
|
|
|
|
/** 开单 -- 当月 -- 单 */ |
|
|
|
|
monthCount: 0, |
|
|
|
|
/** 开单 -- 总计 -- 件 */ |
|
|
|
|
totalCount: 0, |
|
|
|
|
}, |
|
|
|
|
/** 开单收入 */ |
|
|
|
|
openOrderIncomeInfo: { |
|
|
|
@ -1476,7 +1496,7 @@ const billSignforData = computed(() => {
|
|
|
|
|
|
|
|
|
|
.box1 { |
|
|
|
|
height: 100%; |
|
|
|
|
width: 340px; |
|
|
|
|
width: 400px; |
|
|
|
|
box-sizing: border-box; |
|
|
|
|
flex: none; |
|
|
|
|
} |
|
|
|
@ -1487,7 +1507,7 @@ const billSignforData = computed(() => {
|
|
|
|
|
|
|
|
|
|
// 统计数据 |
|
|
|
|
.totol { |
|
|
|
|
width: 460px; |
|
|
|
|
width: 400px; |
|
|
|
|
|
|
|
|
|
.monthData { |
|
|
|
|
height: 120px; |
|
|
|
|