Kaynağa Gözat

首页文字修改、提交结果页文字修改

htc 1 hafta önce
ebeveyn
işleme
89d016ce4b

+ 2 - 2
http/baseApi.js

@@ -1,5 +1,5 @@
-const BaseApi = 'https://transcend.ringzle.com/chuangheng-app/app' //线上
-// const BaseApi = 'https://wxapp.transcend-intl.cn/chuangheng-app/app' //生产
+// const BaseApi = 'https://transcend.ringzle.com/chuangheng-app/app' //线上
+const BaseApi = 'https://wxapp.transcend-intl.cn/chuangheng-app/app' //生产
 // const BaseApi = 'http://192.168.2.19:9023/chuangheng-app/app' //李勇
 // const BaseApi = 'http://192.168.2.16:9023/chuangheng-app/app' //严总
 

+ 1 - 1
manifest.json

@@ -102,7 +102,7 @@
     "quickapp" : {},
     /* 小程序特有相关 */
     "mp-weixin" : {
-        "appid" : "wxe6afb089695f90e7",
+        "appid" : "wxb0ecfcf0c3e50402",
         "setting" : {
             "urlCheck" : false,
             "es6" : false,

+ 4 - 2
pages/home.vue

@@ -42,7 +42,8 @@
 				<view class="preill-box-title">我的PREILL报告:<span>{{perillBG.sum||0}}</span></view>
 				<view class="preill-box-state adfacjb">
 					<view class="preill-box-state-pre adfac green">我收到:<span>{{perillBG.received||0}}</span></view>
-					<view class="preill-box-state-pre adfac grey">我发送:<span>{{perillBG.sent||0}}</span></view>
+					<!-- <view class="preill-box-state-pre adfac grey">我发送:<span>{{perillBG.sent||0}}</span></view> -->
+					<view class="preill-box-state-pre adfac grey">我生成:<span>{{perillBG.generated||0}}</span></view>
 				</view>
 				<view class="preill-box-progress">
 					<view class="preill-box-progress-current pbp-green" :style="{'width':((perillBG.received||0)/(perillBG.sum||9999)*100)+'%'}"></view>
@@ -242,7 +243,8 @@
 				this.$api.get('/core/report/reportStats').then(res=>{
 					if(res.data.code!==0) return
 					this.perillBG = res.data.data||{};
-					this.perillBG.sum = (this.perillBG?.received||0)+(this.perillBG?.sent||0);
+					// this.perillBG.sum = (this.perillBG?.received||0)+(this.perillBG?.sent||0);
+					this.perillBG.sum = (this.perillBG?.received||0)+(this.perillBG?.generated||0);
 				})
 			},
 			getWjList(){

+ 1 - 1
pagesPublish/questionnaireResult.vue

@@ -3,7 +3,7 @@
 		<cus-header title='问卷结果'></cus-header>
 		<image :src="imgBase+'pay_success.png'"></image>
 		<view class="title">问卷提交成功</view>
-		<view class="tip">感谢您的积极参与!作答完成后,由系统生成个人报告,谢谢。</view>
+		<view class="tip">感谢您的积极参与!作答完成后,请返回首页“问卷管理”申请生成报告,谢谢。</view>
 		<view class="btn back" @click="returnHome">返回首页</view>
 	</view>
 </template>

+ 1 - 1
pagesPublish/submitResult.vue

@@ -3,7 +3,7 @@
 		<cus-header title='提交问卷' bgColor="transparent"></cus-header>
 		<image :src="imgBase+'pay_success.png'"></image>
 		<view class="title">提交成功</view>
-		<view class="tip">感谢您的积极参与!待所有团队成员完成作答后,由系统生成团队报告,谢谢。</view>
+		<view class="tip">感谢您的积极参与!待所有团队成员完成作答后,评估发起者请返回首页“问卷管理”申请生成报告,谢谢。</view>
 		<view class="btn" @click="returnHome">返回首页</view>
 	</view>
 </template>