Commit 13c25723 authored by chenfenglei's avatar chenfenglei

订单拆分日课订单月课订单

parent e211ec07
...@@ -140,6 +140,8 @@ ...@@ -140,6 +140,8 @@
优惠券 优惠券
</el-button> </el-button>
</template> </template>
</el-table-column>
<el-table-column prop="user_mobile" label="购买人手机号">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="付款状态" label="付款状态"
...@@ -412,7 +414,8 @@ ...@@ -412,7 +414,8 @@
getGoodsOption(){ getGoodsOption(){
let json = { let json = {
page: 1, page: 1,
limit: 100 limit: 100,
course_type:0,
}; };
getGoodsListApi(json).then(res=>{ getGoodsListApi(json).then(res=>{
this.goodList = res.list; this.goodList = res.list;
......
...@@ -102,6 +102,8 @@ ...@@ -102,6 +102,8 @@
优惠券 优惠券
</el-button> </el-button>
</template> </template>
</el-table-column>
<el-table-column prop="user_mobile" label="购买人手机号">
</el-table-column> </el-table-column>
<el-table-column label="付款状态" width="80"> <el-table-column label="付款状态" width="80">
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -345,11 +347,14 @@ export default { ...@@ -345,11 +347,14 @@ export default {
getGoodsOption() { getGoodsOption() {
let json = { let json = {
page: 1, page: 1,
limit: 100 limit: 100,
course_type:1,
}; };
getGoodsListApi(json).then(res => { getGoodsListApi(json).then(res => {
this.goodList = res.list; this.goodList = res.list;
}); });
}, },
onInviteTypeChange(val) { onInviteTypeChange(val) {
if (val === 0) { if (val === 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment