|
@@ -259,6 +259,11 @@
|
|
|
<el-table-column label="套餐别名" align="center" prop="packageSecondName" />
|
|
<el-table-column label="套餐别名" align="center" prop="packageSecondName" />
|
|
|
<el-table-column label="应收金额" align="center" prop="payPrice" />
|
|
<el-table-column label="应收金额" align="center" prop="payPrice" />
|
|
|
<el-table-column label="实收金额" align="center" prop="payMoney" />
|
|
<el-table-column label="实收金额" align="center" prop="payMoney" />
|
|
|
|
|
+ <el-table-column label="ERP" align="center" prop="erpType" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <dict-tag :options="erpTypeOptions" :value="scope.row.erpType"/>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="支付方式" align="center" prop="payType" >
|
|
<el-table-column label="支付方式" align="center" prop="payType" >
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="PayOptions" :value="scope.row.payType"/>
|
|
<dict-tag :options="PayOptions" :value="scope.row.payType"/>
|
|
@@ -443,6 +448,7 @@ export default {
|
|
|
deliveryStatusOptions:[],
|
|
deliveryStatusOptions:[],
|
|
|
orderBuyTypeOptions:[],
|
|
orderBuyTypeOptions:[],
|
|
|
scheduleOptions:[],
|
|
scheduleOptions:[],
|
|
|
|
|
+ erpTypeOptions:[],
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
@@ -505,6 +511,9 @@ export default {
|
|
|
this.getDicts("sys_store_order_delivery_status").then(response => {
|
|
this.getDicts("sys_store_order_delivery_status").then(response => {
|
|
|
this.deliveryStatusOptions = response.data;
|
|
this.deliveryStatusOptions = response.data;
|
|
|
});
|
|
});
|
|
|
|
|
+ this.getDicts("sys_erp_type").then(response => {
|
|
|
|
|
+ this.erpTypeOptions = response.data;
|
|
|
|
|
+ });
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
},
|