Browse Source

YT-1273单价差异颜色

intex_online20241228
王宇飞 2 months ago
parent
commit
39258fa0c3
  1. 8
      src/views/wms/deliversettlementManage/moldAllocation/customerStatement/index.vue

8
src/views/wms/deliversettlementManage/moldAllocation/customerStatement/index.vue

@ -105,6 +105,14 @@
>{{ row.amountVariance }}</span
>
</template>
<template #priceVariance="{ row }" v-if="tabCurrent.prop == 'Reconciliation'">
<span
:style="{
color: row.priceVariance > 0 ? '#409eff' : row.priceVariance < 0 ? 'red' : '#000'
}"
>{{ row.priceVariance }}</span
>
</template>
<template #adjustmentAmount="{ row }" v-if="tabCurrent.prop == 'ShareReconciliation'">
<div style="position: relative">

Loading…
Cancel
Save