fix : 修复细节

This commit is contained in:
2024-05-12 14:44:04 +08:00
parent 416fa2ed53
commit eeab66d8fb
6 changed files with 48 additions and 57 deletions

View File

@@ -4,9 +4,7 @@
</template>
<script setup lang="jsx">
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
import Tag from '@/components/Tag.vue'
import {getDemandInfo} from "@/api/project-demand";
const router = useRouter()
const searchConfig = reactive([
@@ -16,7 +14,9 @@ const searchConfig = reactive([
component: 'el-input',
props: {
placeholder: '请输入名称查询',
clearable: true
clearable: true,
filterable: true,
checkStrictly: true
}
},
{
@@ -25,7 +25,9 @@ const searchConfig = reactive([
component: 'el-input',
props: {
placeholder: '请输入名称查询',
clearable: true
clearable: true,
filterable: true,
checkStrictly: true
}
}
])