|
@@ -11,7 +11,7 @@
|
|
|
<view class="top-progress-num"><span>{{answerNum}}</span>/{{list.length}}</view>
|
|
<view class="top-progress-num"><span>{{answerNum}}</span>/{{list.length}}</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="memo adfac" v-if="type==='questionnaire'" @click="noticeShow=true">
|
|
|
|
|
|
|
+ <view class="memo adfac" v-if="turnType==='questionnaire'" @click="noticeShow=true">
|
|
|
<text>问卷答题说明</text>
|
|
<text>问卷答题说明</text>
|
|
|
<image :src="imgBase+'icon_memo.png'"></image>
|
|
<image :src="imgBase+'icon_memo.png'"></image>
|
|
|
</view>
|
|
</view>
|
|
@@ -40,7 +40,7 @@
|
|
|
<image :src="imgBase+'questionnaire_info.png'"></image>
|
|
<image :src="imgBase+'questionnaire_info.png'"></image>
|
|
|
<text>团队信息</text>
|
|
<text>团队信息</text>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="bottom-left adfac" v-else-if="type==='questionnaire'">
|
|
|
|
|
|
|
+ <view class="bottom-left adfac" v-else-if="turnType==='questionnaire'">
|
|
|
<view class="bottom-left-pre adffcac" @click="showTeamInfo">
|
|
<view class="bottom-left-pre adffcac" @click="showTeamInfo">
|
|
|
<image :src="imgBase+'questionnaire_info.png'"></image>
|
|
<image :src="imgBase+'questionnaire_info.png'"></image>
|
|
|
<text>团队信息</text>
|
|
<text>团队信息</text>
|
|
@@ -50,7 +50,7 @@
|
|
|
<text>团队人员</text>
|
|
<text>团队人员</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="bottom-right" :class="{'questionnaire':type==='questionnaire'}" @click="confirmSubmit">提交问卷</view>
|
|
|
|
|
|
|
+ <view class="bottom-right" :class="{'questionnaire':turnType==='questionnaire'}" @click="confirmSubmit">提交问卷</view>
|
|
|
</view>
|
|
</view>
|
|
|
<cus-notice title="问卷答题说明" :show="noticeShow" :content="noticeContent"
|
|
<cus-notice title="问卷答题说明" :show="noticeShow" :content="noticeContent"
|
|
|
@close="noticeShow=false" @handleKnow="noticeShow=false"></cus-notice>
|
|
@close="noticeShow=false" @handleKnow="noticeShow=false"></cus-notice>
|
|
@@ -69,6 +69,7 @@
|
|
|
data(){
|
|
data(){
|
|
|
return {
|
|
return {
|
|
|
type:'',
|
|
type:'',
|
|
|
|
|
+ turnType:'',
|
|
|
questionnaireId:'',
|
|
questionnaireId:'',
|
|
|
noticeShow:false,
|
|
noticeShow:false,
|
|
|
noticeContent:`问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明`,
|
|
noticeContent:`问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明`,
|
|
@@ -91,6 +92,7 @@
|
|
|
},
|
|
},
|
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
|
this.type = options.type;
|
|
this.type = options.type;
|
|
|
|
|
+ this.turnType = options.turnType;
|
|
|
this.teamQuestionnaireId = options.teamQuestionnaireId;
|
|
this.teamQuestionnaireId = options.teamQuestionnaireId;
|
|
|
this.teamId = options.teamId;
|
|
this.teamId = options.teamId;
|
|
|
this.getList();
|
|
this.getList();
|