Commit 9fef3196 by Jony.L

fix解决方案管理页面查询

parent 239cbdd4
...@@ -47,8 +47,13 @@ ...@@ -47,8 +47,13 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="状态" prop="status"> <el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px"> <el-select v-model="queryParams.showStatus" placeholder="请选择状态" clearable class="!w-240px">
<el-option label="请选择字典生成" value="" /> <el-option
v-for="dict in getIntDictOptions(DICT_TYPE.GROUNDING_STATUS)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select> </el-select>
</el-form-item> </el-form-item>
<!-- <el-form-item label="创建时间" prop="createTime">--> <!-- <el-form-item label="创建时间" prop="createTime">-->
...@@ -202,7 +207,7 @@ const queryParams = reactive({ ...@@ -202,7 +207,7 @@ const queryParams = reactive({
title: undefined, title: undefined,
category: undefined, category: undefined,
industryCategory: undefined, industryCategory: undefined,
status: undefined showStatus: undefined
// createTime: [] // createTime: []
}) })
const queryFormRef = ref() // 搜索的表单 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