mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 16:35:53 +08:00
售后信息展示,单价展示问题处理
This commit is contained in:
@@ -111,7 +111,7 @@
|
||||
<div class="div-item-right">
|
||||
{{ orderInfo.receipt.receiptStatus == 0 ? "未开" : "已开" }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</Col>
|
||||
<Col span="12">
|
||||
@@ -619,13 +619,13 @@ export default {
|
||||
key: "unitPrice",
|
||||
minWidth: 100,
|
||||
render: (h, params) => {
|
||||
if (!params.row.priceDetailDTO.unitPrice) {
|
||||
if (!params.row.unitPrice) {
|
||||
return h("div", this.$options.filters.unitPrice(0, "¥"));
|
||||
}
|
||||
return h(
|
||||
"div",
|
||||
this.$options.filters.unitPrice(
|
||||
params.row.priceDetailDTO.unitPrice,
|
||||
params.row.unitPrice,
|
||||
"¥"
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user