|
|
@@ -9,6 +9,11 @@
|
|
|
<el-option v-for="b in batchList" :label="b.name" :value="b.batchId"/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="班级" prop="classId">
|
|
|
+ <el-select v-model="queryParams.classId" clearable @change="handleQuery" style="width: 172px">
|
|
|
+ <el-option v-for="c in classList" :label="c.className" :value="c.classId"/>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="发送状态" prop="state">
|
|
|
<el-select v-model="queryParams.state" clearable @change="handleQuery" style="width: 172px">
|
|
|
<el-option v-for="s in stateList" :label="s" :value="s"/>
|
|
|
@@ -54,6 +59,7 @@ const actions = [
|
|
|
|
|
|
const type = consts.enums.buildType.ExactIntelligent
|
|
|
const stateList = consts.config.exactColumns.map(c => c.label)
|
|
|
+const classList = ref([])
|
|
|
const {batchList} = useProvidePaperBatchCondition(type)
|
|
|
const {queryParams, rules, handleQuery, resetQuery, list, total, getList} = useProvidePaperList(options)
|
|
|
const drawer = ref(false)
|