添加:在线买单订单显示内容优化
This commit is contained in:
parent
cf3af86a40
commit
09ca6577db
|
|
@ -46,6 +46,19 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="创建时间" prop="create_time" min-width="120" align="center"/>
|
<el-table-column label="创建时间" prop="create_time" min-width="120" align="center"/>
|
||||||
|
<el-table-column label="支付类型" min-width="80">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- 支付类型 0=余额;1=微信;2=小程序;3=微信;4=支付宝;5=支付宝;6=微信;7=豆豆积分 -->
|
||||||
|
<span v-if="scope.row.pay_type == 0">余额支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 1">微信支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 2">微信支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 3">微信支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 4">支付宝支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 5">支付宝支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 6">微信支付</span>
|
||||||
|
<span v-else-if="scope.row.pay_type == 7">积分支付</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="支付金额" prop="pay_price" min-width="120" align="center"/>
|
<el-table-column label="支付金额" prop="pay_price" min-width="120" align="center"/>
|
||||||
<el-table-column label="支付时间" min-width="120" align="center">
|
<el-table-column label="支付时间" min-width="120" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue