|
|
@@ -64,6 +64,11 @@
|
|
|
<el-option v-for="item in lm_signup_status_app_show" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="报名方式:" prop="tempJoin">
|
|
|
+ <el-select v-model="queryParams.tempJoin" placeholder="请选择报名方式" clearable style="width: 180px">
|
|
|
+ <el-option v-for="item in temp_join_type" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
@@ -153,7 +158,7 @@ import { colNoData } from '@/utils/noData';
|
|
|
import registrationInfo from './registration-info.vue';
|
|
|
import { debounce } from 'lodash';
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
-const { cpy_res_status, lm_signup_status_app_show, lm_check_join_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'lm_signup_status_app_show', 'lm_check_join_type'));
|
|
|
+const { cpy_res_status, lm_signup_status_app_show, lm_check_join_type,temp_join_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'lm_signup_status_app_show', 'lm_check_join_type','temp_join_type'));
|
|
|
// 获取详情
|
|
|
const props = defineProps({
|
|
|
form: {
|