|
@@ -41,39 +41,39 @@
|
|
|
:max-height="vheight">
|
|
|
<el-table-column label="订单ID" prop="id" width="80"></el-table-column>
|
|
|
<el-table-column label="订单编号" prop="order_number" width="200"></el-table-column>
|
|
|
- <el-table-column label="桌号" prop="place_number" width="140"></el-table-column>
|
|
|
- <el-table-column label="价格(元)" width="100">
|
|
|
+ <el-table-column label="桌号" prop="place_number" width="80"></el-table-column>
|
|
|
+ <el-table-column label="价格(元)" prop="order_price" sortable width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ scope.row.order_price | fen2Yuan }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="实付金额(元)">
|
|
|
+ <el-table-column label="实付金额(元)" prop="order_pay_price" sortable width="130">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ scope.row.order_pay_price | fen2Yuan }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="退款金额(元)">
|
|
|
+ <el-table-column label="退款金额(元)" prop="order_refund_price" sortable width="130">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ scope.row.order_refund_price | fen2Yuan }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="点单用户" prop="order_user_name" width="160"></el-table-column>
|
|
|
<el-table-column label="手机号" prop="order_user_phone" width="120"></el-table-column>
|
|
|
- <el-table-column label="商品数量" prop="product_num"></el-table-column>
|
|
|
- <el-table-column label="下单时间" prop="created_at" width="180"></el-table-column>
|
|
|
- <el-table-column label="出单状态">
|
|
|
+ <el-table-column label="商品数量" prop="product_num" sortable width="120"></el-table-column>
|
|
|
+ <el-table-column label="下单时间" prop="created_at" sortable width="180"></el-table-column>
|
|
|
+ <el-table-column label="出单状态" prop="order_print_status" sortable width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-tag :type="scope.row.order_print_status === 0 ? 'warning' : 'info'">
|
|
|
{{ ['未出单', '已出单'][scope.row.order_print_status] }}
|
|
|
</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="支付方式">
|
|
|
+ <el-table-column label="支付方式" prop="order_pay_type" sortable width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['', '微信', '支付宝', '现场支付', '美团支付', '赠送'][scope.row.order_pay_type] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="订单状态状态" width="120">
|
|
|
+ <el-table-column label="订单状态状态" prop="order_status" sortable width="140">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['待支付', '已支付', '全部退款', '部分退款', '已取消'][scope.row.order_status] }}</p>
|
|
|
</template>
|