|
@@ -147,6 +147,16 @@
|
|
|
<el-option label="否" value="0"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-select
|
|
|
+ v-model="searchForm.courseViewType"
|
|
|
+ placeholder="请选择乐团收费模式"
|
|
|
+ clearable
|
|
|
+ :disabled="addDisabled"
|
|
|
+ >
|
|
|
+ <el-option label="课程收费" value="0"></el-option>
|
|
|
+ <el-option label="系统收费" value="1"></el-option>
|
|
|
+ <el-option label="云教练收费" value="2"></el-option>
|
|
|
+ </el-select>
|
|
|
<el-form-item prop="replacementShow">
|
|
|
<el-select
|
|
|
v-model.trim="searchForm.replacementShow"
|
|
@@ -747,6 +757,7 @@ export default {
|
|
|
clientShow: null,
|
|
|
educationalShow: null,
|
|
|
musicGroupShow: null,
|
|
|
+ courseViewType: null,
|
|
|
replacementShow: null,
|
|
|
},
|
|
|
headers: {
|
|
@@ -1153,7 +1164,9 @@ export default {
|
|
|
form.goodsList = goodsList;
|
|
|
form.id = row.id;
|
|
|
|
|
|
- form.courseViewType = row.courseViewType.split(',')
|
|
|
+ if(row.courseViewType) {
|
|
|
+ form.courseViewType = row.courseViewType.split(',')
|
|
|
+ }
|
|
|
|
|
|
this.onValidGoodsStatus();
|
|
|
this.getAllGoodsList();
|
|
@@ -1369,4 +1382,8 @@ export default {
|
|
|
max-height: 70px;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
+
|
|
|
+.el-select__tags .el-tag.el-tag--info.el-tag--small.el-tag--light {
|
|
|
+ max-width: 95px;
|
|
|
+}
|
|
|
</style>
|