|
@@ -72,6 +72,36 @@
|
|
value="0"></el-option>
|
|
value="0"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select v-model.trim="searchForm.clientShow"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="学生端是否是展示">
|
|
|
|
+ <el-option label="是"
|
|
|
|
+ value="1"></el-option>
|
|
|
|
+ <el-option label="否"
|
|
|
|
+ value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select v-model.trim="searchForm.educationalShow"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="教务端是否是展示">
|
|
|
|
+ <el-option label="是"
|
|
|
|
+ value="1"></el-option>
|
|
|
|
+ <el-option label="否"
|
|
|
|
+ value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select v-model.trim="searchForm.musicGroupShow"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="乐团是否是展示">
|
|
|
|
+ <el-option label="是"
|
|
|
|
+ value="1"></el-option>
|
|
|
|
+ <el-option label="否"
|
|
|
|
+ value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
<!-- <el-form-item>
|
|
<!-- <el-form-item>
|
|
<el-date-picker v-model.trim="orderDate" style="width:410px;" type="daterange" value-format="yyyy-MM-dd"
|
|
<el-date-picker v-model.trim="orderDate" style="width:410px;" type="daterange" value-format="yyyy-MM-dd"
|
|
@change="searchOrderDate" range-separator="至" :picker-options="{ firstDayOfWeek: 1 }" start-placeholder="开始日期"
|
|
@change="searchOrderDate" range-separator="至" :picker-options="{ firstDayOfWeek: 1 }" start-placeholder="开始日期"
|
|
@@ -111,18 +141,24 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column align='center'
|
|
<el-table-column align='center'
|
|
- label="是否APP展示">
|
|
|
|
|
|
+ label="学员是否展示">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.clientShow ? '是' : '否' }}
|
|
{{ scope.row.clientShow ? '是' : '否' }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column align='center'
|
|
<el-table-column align='center'
|
|
- label="是否教务端展示">
|
|
|
|
|
|
+ label="教务端是否展示">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.educationalShow ? '是' : '否' }}
|
|
{{ scope.row.educationalShow ? '是' : '否' }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column align='center'
|
|
<el-table-column align='center'
|
|
|
|
+ label="乐团是否展示">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ {{ scope.row.musicGroupShow ? '是' : '否' }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align='center'
|
|
label="是否库存预警">
|
|
label="是否库存预警">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span v-if="!scope.row.complementGoodsIdList">
|
|
<span v-if="!scope.row.complementGoodsIdList">
|
|
@@ -396,22 +432,33 @@
|
|
@mousewheel.native.prevent
|
|
@mousewheel.native.prevent
|
|
v-model.trim="form.groupPurchasePrice"></el-input>
|
|
v-model.trim="form.groupPurchasePrice"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="是否APP展示"
|
|
|
|
|
|
+ <el-form-item label="学员是否展示"
|
|
prop="clientShow"
|
|
prop="clientShow"
|
|
:label-width="formLabelWidth">
|
|
:label-width="formLabelWidth">
|
|
- <el-select v-model="form.clientShow" :disabled="addDisabled"
|
|
|
|
- placeholder="请选择是否APP展示">
|
|
|
|
|
|
+ <el-select v-model="form.clientShow"
|
|
|
|
+ placeholder="请选择学员是否展示">
|
|
<el-option label="是"
|
|
<el-option label="是"
|
|
:value="1"></el-option>
|
|
:value="1"></el-option>
|
|
<el-option label="否"
|
|
<el-option label="否"
|
|
:value="0"></el-option>
|
|
:value="0"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="是否教务端展示"
|
|
|
|
|
|
+ <el-form-item label="教务端是否展示"
|
|
prop="educationalShow"
|
|
prop="educationalShow"
|
|
:label-width="formLabelWidth">
|
|
:label-width="formLabelWidth">
|
|
<el-select v-model="form.educationalShow"
|
|
<el-select v-model="form.educationalShow"
|
|
- placeholder="请选择是否APP展示">
|
|
|
|
|
|
+ placeholder="请选择教务端是否展示">
|
|
|
|
+ <el-option label="是"
|
|
|
|
+ :value="1"></el-option>
|
|
|
|
+ <el-option label="否"
|
|
|
|
+ :value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="乐团是否展示"
|
|
|
|
+ prop="musicGroupShow"
|
|
|
|
+ :label-width="formLabelWidth">
|
|
|
|
+ <el-select v-model="form.musicGroupShow"
|
|
|
|
+ placeholder="请选择乐团是否展示">
|
|
<el-option label="是"
|
|
<el-option label="是"
|
|
:value="1"></el-option>
|
|
:value="1"></el-option>
|
|
<el-option label="否"
|
|
<el-option label="否"
|
|
@@ -521,7 +568,10 @@ export default {
|
|
goodsCategoryId: null,
|
|
goodsCategoryId: null,
|
|
startTime: null,
|
|
startTime: null,
|
|
endTime: null,
|
|
endTime: null,
|
|
- status: null
|
|
|
|
|
|
+ status: null,
|
|
|
|
+ clientShow: null,
|
|
|
|
+ educationalShow: null,
|
|
|
|
+ musicGroupShow: null
|
|
},
|
|
},
|
|
headers: {
|
|
headers: {
|
|
Authorization: getToken()
|
|
Authorization: getToken()
|
|
@@ -557,6 +607,7 @@ export default {
|
|
groupPurchasePrice: null,
|
|
groupPurchasePrice: null,
|
|
clientShow: null,
|
|
clientShow: null,
|
|
educationalShow: null,
|
|
educationalShow: null,
|
|
|
|
+ musicGroupShow: null,
|
|
stockWarning: null,
|
|
stockWarning: null,
|
|
image: null,
|
|
image: null,
|
|
complementGoodsIdList: null,
|
|
complementGoodsIdList: null,
|
|
@@ -641,12 +692,17 @@ export default {
|
|
}],
|
|
}],
|
|
clientShow: [{
|
|
clientShow: [{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择是否APP展示',
|
|
|
|
|
|
+ message: '请选择学员是否展示',
|
|
trigger: 'change'
|
|
trigger: 'change'
|
|
}],
|
|
}],
|
|
educationalShow: [{
|
|
educationalShow: [{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择是否教务端展示',
|
|
|
|
|
|
+ message: '请选择教务端是否展示',
|
|
|
|
+ trigger: 'change'
|
|
|
|
+ }],
|
|
|
|
+ musicGroupShow: [{
|
|
|
|
+ required: true,
|
|
|
|
+ message: '请选择乐团是否展示',
|
|
trigger: 'change'
|
|
trigger: 'change'
|
|
}],
|
|
}],
|
|
stockWarning: [{
|
|
stockWarning: [{
|
|
@@ -827,6 +883,7 @@ export default {
|
|
groupPurchasePrice: null,
|
|
groupPurchasePrice: null,
|
|
clientShow: null,
|
|
clientShow: null,
|
|
educationalShow: null,
|
|
educationalShow: null,
|
|
|
|
+ musicGroupShow: null,
|
|
stockWarning: null,
|
|
stockWarning: null,
|
|
image: null,
|
|
image: null,
|
|
complementGoodsIdList: null,
|
|
complementGoodsIdList: null,
|