|
|
@@ -10,11 +10,6 @@
|
|
|
<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"/>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
@@ -37,8 +32,7 @@ import ClassDetail from "@/views/dz/papers/components/plugs/class-detail.vue";
|
|
|
const options = {
|
|
|
queryDefine: {
|
|
|
batchId: '',
|
|
|
- classId: '',
|
|
|
- state: ''
|
|
|
+ classId: ''
|
|
|
}
|
|
|
}
|
|
|
const columns = [
|
|
|
@@ -53,7 +47,6 @@ 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)
|