jsk 线下消费添加支付方式
This commit is contained in:
parent
191f831685
commit
3527c743e6
|
|
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue