Commit 0d7a4f86 authored by 黄奎's avatar 黄奎

11

parent 0afb1c53
...@@ -19,10 +19,14 @@ ...@@ -19,10 +19,14 @@
<q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Status" :options="ShowOpts" <q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Status" :options="ShowOpts"
emit-value map-options label="状态" /> emit-value map-options label="状态" />
</div> </div>
<div class="col-3"> <div class="col-3" style="display:none;">
<q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Saleplat" :options="platOpts" <q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Saleplat" :options="platOpts"
option-label="Name" option-value="Id" emit-value map-options label="上架渠道" /> option-label="Name" option-value="Id" emit-value map-options label="上架渠道" />
</div> </div>
<div class="col-3">
<q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.SaleState" :options="showList"
option-label="Name" option-value="Id" emit-value map-options label="显示状态" />
</div>
</div> </div>
</div> </div>
<div class="page-content"> <div class="page-content">
...@@ -451,34 +455,7 @@ ...@@ -451,34 +455,7 @@
field: row => row.B2CRNRatio field: row => row.B2CRNRatio
}, },
// {
// name: "PreferentialList",
// required: true,
// label: "优惠政策",
// align: "left",
// field: (row) => row.PreferentialList,
// },
// {
// name: "PreferentialListSellCommission",
// required: true,
// label: "销售佣金",
// align: "left",
// field: (row) => row.PreferentialList,
// },
// {
// name: "PreferentialListB2BCommission",
// required: true,
// label: "同行佣金",
// align: "left",
// field: (row) => row.PreferentialList,
// },
// {
// name: "EducationCommission",
// required: true,
// label: "教育同行佣金",
// align: "left",
// field: (row) => row.PreferentialList,
// },
{ {
name: "ClassHours", name: "ClassHours",
label: "课时长度", label: "课时长度",
...@@ -555,6 +532,19 @@ ...@@ -555,6 +532,19 @@
value: "1" value: "1"
} }
], ],
showList: [{
Name: "全部",
Id: 0
},
{
Name: "显示",
Id: 1
},
{
Name: "隐藏",
Id: 2
}
],
platOpts: [], //上架渠道 platOpts: [], //上架渠道
msg: { msg: {
pageIndex: 1, pageIndex: 1,
...@@ -565,7 +555,8 @@ ...@@ -565,7 +555,8 @@
IsQPrice: 1, IsQPrice: 1,
Status: "0", Status: "0",
Saleplat: 0, Saleplat: 0,
CourseSubject: "" //所属科目 CourseSubject: "", //所属科目
SaleState: 1, //1-显示,2-隐藏
}, },
//课程分类树形列表 //课程分类树形列表
TreeCategoryList: [], TreeCategoryList: [],
......
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