From 6fa85fcb11a88bacbeace4ac6218b84830e032a8 Mon Sep 17 00:00:00 2001 From: mayf <m13160102112@163.com> Date: 星期一, 09 九月 2024 21:30:27 +0800 Subject: [PATCH] 订单详情增加积分兑换商品 --- pages/order/list/_id.vue | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/pages/order/list/_id.vue b/pages/order/list/_id.vue index 87dd692..7c548e7 100644 --- a/pages/order/list/_id.vue +++ b/pages/order/list/_id.vue @@ -158,6 +158,23 @@ </template> </el-table-column> </el-table> + <template v-if="detail.pointGoodsList && detail.pointGoodsList.length > 0"> + <div class="base-page-wrapper__line"></div> + <el-bus-title title="积分兑换商品" size="small" /> + <el-table :data="detail.pointGoodsList"> + <el-table-column label="商品图片"> + <template #default="{ row }"> + <el-bus-image + :src="row.cover" + lazy + style="width: 50px; height: 50px" + /> + </template> + </el-table-column> + <el-table-column label="商品名称" prop="name"></el-table-column> + <el-table-column label="兑换数量" prop="num"></el-table-column> + </el-table> + </template> <template v-if="afterSaleList && afterSaleList.length > 0"> <div class="base-page-wrapper__line"></div> <el-bus-title title="售后信息" size="small" class="mt-20"></el-bus-title> @@ -354,6 +371,13 @@ { label: '合伙人:', id: 'partnerName', type: 'input' }, { label: '库区:', id: 'warehouseName', type: 'input' }, { label: '库位:', id: 'warehouseLocationCode', type: 'input' }, + { + label: '备注:', + id: 'remarks', + type: 'input', + el: { type: 'textarea' }, + span: 24, + }, ], }, ], -- Gitblit v1.9.3