diff --git a/src/views/Home/components/CreateSurvey/CreateQuestion.vue b/src/views/Home/components/CreateSurvey/CreateQuestion.vue index f7a16ba..f3744c2 100644 --- a/src/views/Home/components/CreateSurvey/CreateQuestion.vue +++ b/src/views/Home/components/CreateSurvey/CreateQuestion.vue @@ -29,8 +29,8 @@ const createdQuestion = (item) => { const query = { group_id: 0, source: 1, - project_name: `${item.title ? item.title + '问卷' : '请输入问卷标题'}`, - remarks: '请输入问卷描述', + project_name: `${item.title ? item.title : '请输入问卷标题'}`, + remarks: item.title ? '为优化活动服务品质,烦请完成问卷,感谢配合' : '请输入问卷描述', scene_code: item.parentCode, scene_code_info: item.code, // 很迷茫 模板新增 tag 空数组 非模板 就是k diff --git a/src/views/Home/components/CreateSurvey/Index.vue b/src/views/Home/components/CreateSurvey/Index.vue index f7645ae..77fa9eb 100644 --- a/src/views/Home/components/CreateSurvey/Index.vue +++ b/src/views/Home/components/CreateSurvey/Index.vue @@ -30,8 +30,8 @@ const createdQuestion = (item) => { const query = { group_id: 0, source: 1, - project_name: `${item.title ? item.title + '问卷' : '请输入问卷标题'} `, - remarks: '请输入问卷描述', + project_name: `${item.title ? item.title : '请输入问卷标题'} `, + remarks: item.title ? '为优化活动服务品质,烦请完成问卷,感谢配合' : '请输入问卷描述', scene_code: item.parentCode, scene_code_info: item.code, tags: '' diff --git a/src/views/Survey/views/Analysis/components/LogicInfo/Index.vue b/src/views/Survey/views/Analysis/components/LogicInfo/Index.vue index f154ff5..a550e15 100644 --- a/src/views/Survey/views/Analysis/components/LogicInfo/Index.vue +++ b/src/views/Survey/views/Analysis/components/LogicInfo/Index.vue @@ -29,7 +29,7 @@ const tabs = computed(() => [ { title: '随机题组配额', props: [ - { prop: 'title', label: '题组', width: 120 }, + { prop: 'groupTitle', label: '题组', width: 120 }, { prop: 'group_info', label: '题组位置', width: 120 }, { prop: 'sample_num', label: '样本量', width: 120 }, { prop: 'precent', label: '进度', width: 120 } @@ -41,7 +41,7 @@ const tabs = computed(() => [ props: [ { prop: 'question_title', label: '关联题目', width: 150 }, { prop: 'group_info', label: '题组', width: 100 }, - { prop: 'sample_num', label: '样本量', width: 80 }, + { prop: 'quota_num', label: '样本量', width: 80 }, { prop: 'precent', label: '进度', width: 120 } ], data: cycle.value @@ -60,12 +60,12 @@ const debug = ref(false);