|
@@ -23,7 +23,7 @@
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px">
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px">
|
|
<el-option
|
|
<el-option
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
- :key="dict.value"
|
|
|
|
|
|
+ :key="dict.value as number"
|
|
:label="dict.label"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
:value="dict.value"
|
|
/>
|
|
/>
|
|
@@ -137,7 +137,7 @@ const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
name: null,
|
|
name: null,
|
|
- status: null
|
|
|
|
|
|
+ status: undefined
|
|
})
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
|