瀏覽代碼

修改bug

lisy 5 月之前
父節點
當前提交
2b8938202a
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/views/training/models/meeting-detail-attend.vue

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

@@ -63,6 +63,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>
@@ -152,7 +157,7 @@ import { debounce } from 'lodash';
 import { onMounted, reactive, ref } from 'vue';
 import registrationInfo from './registration-info.vue';
 const { proxy } = getCurrentInstance() as ComponentInternalInstance;
-const { cpy_res_status, lm_signup_status_app_show, dm_check_join_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'lm_signup_status_app_show', 'dm_check_join_type'));
+const { cpy_res_status, lm_signup_status_app_show, dm_check_join_type,temp_join_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'lm_signup_status_app_show', 'dm_check_join_type','temp_join_type'));
 // 获取详情
 const props = defineProps({
     form: {