lisy 5 місяців тому
батько
коміт
fb2a48d463
1 змінених файлів з 6 додано та 1 видалено
  1. 6 1
      src/views/training/models/meeting-detail-attend.vue

+ 6 - 1
src/views/training/models/meeting-detail-attend.vue

@@ -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: {