|
|
@@ -2,7 +2,7 @@
|
|
|
<view class="default_page adffc" :style="{'height':h+'px', 'padding-top':mt+'px'}">
|
|
|
<cus-header title='填写问卷'></cus-header>
|
|
|
<view class="top">
|
|
|
- <view class="top-title">{{'GW+MC PREILL36测评题库版本'}}</view>
|
|
|
+ <view class="top-title">{{title||''}}</view>
|
|
|
<view class="top-progress adfac">
|
|
|
<view class="top-progress-text">测评进度</view>
|
|
|
<view class="top-progress-box">
|
|
|
@@ -67,11 +67,11 @@
|
|
|
components:{ CusNotice, QuestionItem, CusTeamInfo, CusTeamUser },
|
|
|
data(){
|
|
|
return {
|
|
|
+ title:'',
|
|
|
type:'',
|
|
|
turnType:'',
|
|
|
questionnaireId:'',
|
|
|
noticeShow:false,
|
|
|
- noticeContent:`问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明`,
|
|
|
teamShow:false,
|
|
|
userShow:false,
|
|
|
teamUserList:[],
|
|
|
@@ -91,6 +91,7 @@
|
|
|
}
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
+ this.title = options.title||'';
|
|
|
this.type = options.type;
|
|
|
this.turnType = options.turnType;
|
|
|
this.teamQuestionnaireId = options.teamQuestionnaireId;
|