头部搜索对接开源软件列表

This commit is contained in:
付民康
2025-03-20 20:51:16 +08:00
parent 2e46635146
commit 61b7acc34c
6 changed files with 188 additions and 51 deletions

View File

@@ -53,7 +53,13 @@
</d-col>
<d-col :span="8">
<d-form-item field="industry" label="行业">
<d-input v-model="formData.industry" placeholder="请输入行业" />
<d-select
:options="industryList"
:allow-clear="true"
v-model="formData.industry"
placeholder="请选择行业"
></d-select>
<!-- <d-input v-model="formData.industry" placeholder="请输入行业" />-->
</d-form-item>
</d-col>
</d-row>
@@ -70,6 +76,9 @@
<script setup lang="ts">
import { ref, defineEmits, defineProps, watch, onMounted } from 'vue';
import { searchLanguageList } from '@/api/jyh';
import { useGlobalInfoStore } from '@/stores/Global';
const globalInfo = useGlobalInfoStore();
const industryList = globalInfo.industryList;
const props = defineProps({
layout: {
type: String,