|
|
@@ -60,7 +60,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="参会状态:" prop="signupStatus">
|
|
|
<el-select v-model="queryParams.signupStatus" placeholder="请选择参会状态" clearable style="width: 180px">
|
|
|
- <el-option v-for="item in lm_training_signup_status_list" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
+ <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>
|
|
|
@@ -93,7 +93,8 @@
|
|
|
</vxe-column>
|
|
|
<vxe-column title="参会状态" min-width="100" fixed="right">
|
|
|
<template #default="{ row }">
|
|
|
- <DictTag :options="lm_training_signup_status_list" :value="row?.signupStatusForPc"></DictTag>
|
|
|
+ <DictTag v-if="row?.signupStatusForPc" :options="lm_signup_status_app_show" :value="row?.signupStatusForPc"></DictTag>
|
|
|
+ <div v-else>-</div>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
<vxe-column v-if="form?.conditions?.totalCheck == '1'" title="审核状态" min-width="100" fixed="right">
|
|
|
@@ -110,7 +111,7 @@
|
|
|
</vxe-column>
|
|
|
<vxe-column v-if="form?.conditions?.totalCheck == '1'" title="操作" width="250" align="center" fixed="right">
|
|
|
<template #default="{ row }">
|
|
|
- <el-button type="danger" size="small" v-if="row?.res !== '0'" @click="openDialog(row)" style="color: white">重审</el-button>
|
|
|
+ <el-button type="danger" size="small" v-if="row?.res !== '0' || row?.signInFlag =='1'" @click="openDialog(row)" style="color: white">重审</el-button>
|
|
|
<el-button size="small" color="#33aeeb" @click="openDialog(row)" style="color: white" v-else>审核</el-button>
|
|
|
</template>
|
|
|
</vxe-column>
|
|
|
@@ -146,7 +147,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_training_signup_status_list, dm_check_join_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'lm_training_signup_status_list', 'dm_check_join_type'));
|
|
|
+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 props = defineProps({
|
|
|
form: {
|