优化图标显示
This commit is contained in:
@@ -83,7 +83,6 @@
|
||||
<div class="row">
|
||||
<div>满减活动:¥{{ detail.discountActAmount || '-' }}</div>
|
||||
<div>新客立减:¥{{ detail.newCustomerDiscountAmount || '-' }}</div>
|
||||
<!-- <div>限时折扣:¥{{ JSON.parse(detail.limitRateJson). }}</div> -->
|
||||
<div>会员折扣:¥{{ detail.vipDiscountAmount || '-' }}</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -159,13 +158,14 @@
|
||||
<el-table-column label="单价">
|
||||
<template v-slot="scope">¥{{ scope.row.unitPrice }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="出菜时间" prop="dishOutTime" width="180"></el-table-column>
|
||||
<el-table-column label="上菜时间" prop="foodServeTime" width="180"></el-table-column>
|
||||
<el-table-column label="小计">
|
||||
<template v-slot="scope">¥{{ scope.row.payAmount }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="实付">
|
||||
<template v-slot="scope">¥{{ scope.row.payAmount }}</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column v-if="detail.status == 'unpaid'" label="可退菜数量" align="center" width="130px">
|
||||
<template v-slot="scope">
|
||||
<el-input-number v-if="scope.row.checked" :min="0" style="width: 100px" v-model="scope.row.selNumber"
|
||||
@@ -188,7 +188,7 @@
|
||||
<span v-else>{{ scope.row.refundNum }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作">
|
||||
<el-table-column label="操作" fixed="right">
|
||||
<template v-slot="scope">
|
||||
<template v-if="detail.status != 'unpaid'">
|
||||
<el-button v-if="canTuikuan(scope.row)" link size="small" @click="tuikuan(scope.row)">
|
||||
|
||||
Reference in New Issue
Block a user