|
|
@@ -119,6 +119,13 @@
|
|
|
placeholder="请选择开营日期结束时间">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="营期状态" prop="periodStatus">
|
|
|
+ <el-select v-model="queryParams.periodStatus" placeholder="请选择营期状态" clearable size="small" style="width: 180px">
|
|
|
+ <el-option label="未开始" :value="1" />
|
|
|
+ <el-option label="进行中" :value="2" />
|
|
|
+ <el-option label="已结束" :value="3" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery" v-hasPermi="['course:period:list']">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
@@ -776,7 +783,8 @@ export default {
|
|
|
periodName: null,
|
|
|
periodStartingTime: null,
|
|
|
periodEndTime: null,
|
|
|
- companyIdList: []
|
|
|
+ companyIdList: [],
|
|
|
+ periodStatus: null
|
|
|
},
|
|
|
// 左侧查询参数
|
|
|
leftQueryParams: {
|
|
|
@@ -1072,6 +1080,7 @@ export default {
|
|
|
resetQuery() {
|
|
|
this.resetForm("queryForm");
|
|
|
this.queryParams.companyIdList = [];
|
|
|
+ this.queryParams.periodStatus = null;
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
/** 多选框选中数据 */
|