|
@@ -14,6 +14,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
v-model="searchForm.eventId"
|
|
v-model="searchForm.eventId"
|
|
|
placeholder="请选择来源赛事"
|
|
placeholder="请选择来源赛事"
|
|
|
|
|
+ filterable
|
|
|
clearable
|
|
clearable
|
|
|
@change="handleSearch"
|
|
@change="handleSearch"
|
|
|
>
|
|
>
|
|
@@ -37,6 +38,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
v-model="searchForm.projectType"
|
|
v-model="searchForm.projectType"
|
|
|
placeholder="请选择项目类型"
|
|
placeholder="请选择项目类型"
|
|
|
|
|
+ filterable
|
|
|
clearable
|
|
clearable
|
|
|
@change="handleSearch"
|
|
@change="handleSearch"
|
|
|
>
|
|
>
|
|
@@ -52,6 +54,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
v-model="searchForm.classification"
|
|
v-model="searchForm.classification"
|
|
|
placeholder="请选择归类"
|
|
placeholder="请选择归类"
|
|
|
|
|
+ filterable
|
|
|
clearable
|
|
clearable
|
|
|
@change="handleSearch"
|
|
@change="handleSearch"
|
|
|
>
|
|
>
|
|
@@ -142,7 +145,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="ProjectLibraryDialog" lang="ts">
|
|
<script setup name="ProjectLibraryDialog" lang="ts">
|
|
|
-import { ref, reactive, defineExpose, onMounted } from 'vue';
|
|
|
|
|
|
|
+import { ref, reactive, onMounted } from 'vue';
|
|
|
import { listAllGameEventProject } from '@/api/system/gameEventProject';
|
|
import { listAllGameEventProject } from '@/api/system/gameEventProject';
|
|
|
import { listGameEvent } from '@/api/system/gameEvent';
|
|
import { listGameEvent } from '@/api/system/gameEvent';
|
|
|
import { GameEventProjectVO, GameEventProjectQuery } from '@/api/system/gameEventProject/types';
|
|
import { GameEventProjectVO, GameEventProjectQuery } from '@/api/system/gameEventProject/types';
|