Merge branch 'bonus-jyy-smart-canteen' of http://14.103.246.124:16000/bonus/bonus-ui into bonus-jyy-smart-canteen

This commit is contained in:
zzyuan 2025-11-19 13:15:39 +08:00
commit 73308c98ee
1 changed files with 119 additions and 113 deletions

View File

@ -155,6 +155,13 @@
<span v-for="item in scope.row.orderDetailList" :key="item.detailId">{{ item.goodsName }}*{{ item.quantity }};</span> <span v-for="item in scope.row.orderDetailList" :key="item.detailId">{{ item.goodsName }}*{{ item.quantity }};</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="支付方式" align="center" prop="identityVerificationsssss" :show-overflow-tooltip="true" width="100">
<template slot-scope="scope">
<span v-if="scope.row.identityVerification==1">刷卡</span>
<span v-if="scope.row.identityVerification==2">刷脸</span>
<span v-if="scope.row.identityVerification==3">扫码</span>
</template>
</el-table-column>
<el-table-column label="订单金额" align="center" prop="payableAmount" :show-overflow-tooltip="true" width="80"> <el-table-column label="订单金额" align="center" prop="payableAmount" :show-overflow-tooltip="true" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ (scope.row.payableAmount/100).toFixed(2) }}</span> <span>{{ (scope.row.payableAmount/100).toFixed(2) }}</span>
@ -947,4 +954,3 @@
} }
}; };
</script> </script>