Commit 9fef3196 by Jony.L

fix解决方案管理页面查询

parent 239cbdd4
......@@ -47,8 +47,13 @@
</el-select>
</el-form-item>
<el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px">
<el-option label="请选择字典生成" value="" />
<el-select v-model="queryParams.showStatus" placeholder="请选择状态" clearable class="!w-240px">
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.GROUNDING_STATUS)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="创建时间" prop="createTime">-->
......@@ -202,7 +207,7 @@ const queryParams = reactive({
title: undefined,
category: undefined,
industryCategory: undefined,
status: undefined
showStatus: undefined
// createTime: []
})
const queryFormRef = ref() // 搜索的表单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment