Commit 7f1ec3fd by zhuzhequan

Merge branch 'dev' into 'master'

Dev

See merge request !75
parents 4c32d686 cfd8ad8c
......@@ -717,6 +717,10 @@
}"
>{{ item.quantity }}</span
>
<span v-if="item.status==='INTERCEPTED' && (interceptionStatus.production['0'] || interceptionStatus.shipment['0'])" class="tabs-node-quantity">+{{
((interceptionStatus.production['0'] || 0) +
(interceptionStatus.shipment['0'] || 0)) || ''
}}</span>
</div>
<!-- <div
v-if="item.status === 'EXCEPTION_ORDER'"
......@@ -3296,6 +3300,7 @@ const loadTabData = async () => {
status: 'INTERCEPTED',
statusName: '拦截',
quantity: shipmentCount + productionCount,
})
} catch (error) {
// showError(error)
......@@ -5974,4 +5979,11 @@ useRouter().beforeEach((to, from, next) => {
justify-content: space-between;
align-items: center;
}
.tabs-node-quantity{
position: relative;
color:red;
font-size: 12px;
top:-10px;
right:0px;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment