diff --git a/src/views/Home/components/CreateSurvey/Index.vue b/src/views/Home/components/CreateSurvey/Index.vue index 484ee39..22e6daf 100644 --- a/src/views/Home/components/CreateSurvey/Index.vue +++ b/src/views/Home/components/CreateSurvey/Index.vue @@ -30,7 +30,7 @@ const createdQuestion = (item) => { const query = { group_id: 0, source: 1, - project_name: `${item.title ? item.title : 'z'} `, + project_name: `${item.title ? item.title : '请输入问卷标题'} `, remarks: item.title ? '为优化活动服务品质,烦请完成问卷,感谢配合!您的反馈至关重要!' : '请输入问卷描述', diff --git a/src/views/Home/components/MineTask/components/QuestionList.vue b/src/views/Home/components/MineTask/components/QuestionList.vue index 3ea9edf..febc595 100644 --- a/src/views/Home/components/MineTask/components/QuestionList.vue +++ b/src/views/Home/components/MineTask/components/QuestionList.vue @@ -20,7 +20,7 @@ const disableInsight = ref(true); // 定义事件 const emit = defineEmits(['slideChange']); -const slideChange = function (swiper) { +const slideChange = function (swiper: any) { parentRef.value.resize(); emit('slideChange', { swiper, activeIndex: swiper.activeIndex }); };