jsk 线下消费添加支付方式

This commit is contained in:
jiask 2025-11-18 10:16:12 +08:00
parent 191f831685
commit 3527c743e6
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>
</template>
</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">
<template slot-scope="scope">
<span>{{ (scope.row.payableAmount/100).toFixed(2) }}</span>
@ -943,4 +950,3 @@
}
};
</script>