| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <template>
- <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-progress adfac">
- <view class="top-progress-text">测评进度</view>
- <view class="top-progress-box">
- <view class="top-progress-box-current" :style="{'width':(answerNum/list.length*100)+'%'}"></view>
- </view>
- <view class="top-progress-num"><span>{{answerNum}}</span>/{{list.length}}</view>
- </view>
- </view>
- <view class="memo adfac" v-if="type==='questionnaire'" @click="noticeShow=true">
- <text>问卷答题说明</text>
- <image :src="imgBase+'icon_memo.png'"></image>
- </view>
- <scroll-view class="list" scroll-y="true" :scroll-top="scrollTop" :style="{ height: h - 203 - mt + 'px' }">
- <div v-if="isLoading" class="loading-container adfacjc">
- <div class="adfac">
- <u-loading-icon size="42"></u-loading-icon>
- <text style="margin-left: 10rpx; font-size: 34rpx; color: #666666">问卷加载中...</text>
- </div>
- </div>
- <template v-else>
- <view>
- <div class="l_item" v-for="(item, index) in list" :key="item.id" :id="'question-' + index">
- <question-item :item="item" :index="index" @change="handleAnswerChange"></question-item>
- </div>
- </view>
- </template>
- </scroll-view>
- <!-- <view class="list">
- <div class="l_item" v-for="(item, index) in list" :key="item.id" :id="'question-' + index">
- <question-item :item="item" :index="index" @change="handleAnswerChange"></<question-item>
- </div>
- </view> -->
- <view class="bottom adfacjb">
- <view class="bottom-left adffcac" @click="showTeamInfo" v-if="type==1">
- <image :src="imgBase+'questionnaire_info.png'"></image>
- <text>团队信息</text>
- </view>
- <view class="bottom-left adfac" v-else-if="type==='questionnaire'">
- <view class="bottom-left-pre adffcac" @click="showTeamInfo">
- <image :src="imgBase+'questionnaire_info.png'"></image>
- <text>团队信息</text>
- </view>
- <view class="bottom-left-pre adffcac" @click="userShow=true">
- <image :src="imgBase+'questionnaire_users.png'"></image>
- <text>团队人员</text>
- </view>
- </view>
- <view class="bottom-right" :class="{'questionnaire':type==='questionnaire'}" @click="confirmSubmit">提交问卷</view>
- </view>
- <cus-notice title="问卷答题说明" :show="noticeShow" :content="noticeContent"
- @close="noticeShow=false" @handleKnow="noticeShow=false"></cus-notice>
- <cus-team-info :show="teamShow" :teamInfo="teamInfo" @close="teamShow=false"></cus-team-info>
- <cus-team-user :show="userShow" :list="teamUserList" @close="userShow=false"></cus-team-user>
- </view>
- </template>
- <script>
- import QuestionItem from '@/components/QuestionItem/index3.vue'
- import CusNotice from '@/components/CusNotice/index.vue'
- import CusTeamInfo from '@/components/CusTeamInfo/index.vue'
- import CusTeamUser from '@/components/CusTeamUser/index.vue'
- export default {
- components:{ CusNotice, QuestionItem, CusTeamInfo, CusTeamUser },
- data(){
- return {
- type:'',
- questionnaireId:'',
- noticeShow:false,
- noticeContent:`问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明<br/><br/>问卷答题说明`,
- teamShow:false,
- userShow:false,
- teamUserList:[],
- teamQuestionnaireId: '',
- list: [],
- questionnaire: null,
- isLoading: true,
- isSubmitting: false,
- scrollTop: 0, // scroll-view 的滚动位置
- oldScrollTop: 0, // 辅助值,确保即使滚动到相同位置也能触发
- userAnswerTemp: [],
- teamId:'',
- teamInfo:{},
- teamScaleData:[],
- teamLevelData:[],
- }
- },
- onLoad(options) {
- this.type = options.type;
- this.teamQuestionnaireId = options.teamQuestionnaireId;
- this.teamId = options.teamId;
- this.getList();
- },
- computed: {
- answerNum() {
- return this.list.filter(l => l?.answer.filter(a => a?.value).length == this.userAnswerTemp.length).length || 0;
- }
- },
- methods:{
- handleAnswerChange(e) {
- const item = this.list[e.index];
- if (item) {
- let answer = JSON.parse(JSON.stringify(item.answer));
- answer.forEach(a=>{
- a.value = a.assessmentMethod==e.assessmentMethod?e.value:a.value
- })
- this.$set(item, 'answer', answer);
- if (item.warn) {
- this.$set(item, 'warn', false);
- }
- }
- this.setQuestionnaireCache();
- },
- getList() {
- let questionnaire = null;
- try {
- const cacheStr = uni.getStorageSync('questionnaire');
- if (cacheStr) {
- questionnaire = JSON.parse(cacheStr);
- }
- } catch (e) {
- console.error('解析问卷缓存失败:', e);
- uni.removeStorageSync('questionnaire');
- }
-
- this.isLoading = true;
- this.$api
- .get('/core/team/member/answer/listByUser/' + this.teamQuestionnaireId)
- .then((res) => {
- if (res.data.code !== 0) return this.$showToast(res.data.msg);
- const answerMap = new Map();
- if (questionnaire && this.teamQuestionnaireId == questionnaire.key) {
- questionnaire.list.forEach((q) => answerMap.set(q.id, q.answer));
- }
-
- this.userAnswerTemp = res.data.data[0].userAnswer.map(u=>{
- return {
- assessmentMethod:u.assessmentMethod,
- value:''
- }
- })
- let uaTemp = JSON.parse(JSON.stringify(this.userAnswerTemp))
- this.list = res.data.data.map(item => {
- let _a = answerMap.get(item.id);
- return {
- ...item,
- answer:_a?uaTemp.map(u=>{
- return {
- assessmentMethod:u.assessmentMethod,
- value:_a.find(a=>a.assessmentMethod==u.assessmentMethod)?.value||''
- }
- }):this.userAnswerTemp,
- warn: false
- }
- });
- this.list.forEach(l=>{
- let _a = answerMap.get(l.id);
- l.userAnswer.forEach(u=>{
- u.answer = _a?(_a.find(a=>a.assessmentMethod==u.assessmentMethod)?.value||''):''
- })
- })
- })
- .catch(() => {
- this.isLoading = false;
- this.$showToast('网络异常,请稍后重试');
- })
- .finally(() => {
- this.isLoading = false;
- });
- },
- scrollToQuestion(index) {
- const query = uni.createSelectorQuery().in(this);
- const targetId = `#question-${index}`;
- query.select(targetId).boundingClientRect();
- query.select('.list').scrollOffset(); // 获取 scroll-view 的滚动信息
- query.select('.list').boundingClientRect(); // 获取 scroll-view 自身的位置信息
- query.exec((res) => {
- // 增加安全校验
- if (!res || !res[0] || !res[1] || !res[2]) {
- return;
- }
-
- // res[0]: 目标元素 (#question-N) 的位置信息
- const itemRect = res[0];
- // res[1]: 滚动容器 (.list) 的滚动信息
- const scrollViewScroll = res[1];
- // res[2]: 滚动容器 (.list) 自身的位置信息
- const scrollViewRect = res[2];
-
- // 计算目标滚动位置 = 当前滚动距离 + (目标元素顶部 - 滚动容器顶部) - 预留间距
- const targetPosition = scrollViewScroll.scrollTop + itemRect.top - scrollViewRect.top - 10; // 减10px作为顶部留白
-
- // 通过先设置为旧值,再在 nextTick 中设置为新值的方式,确保滚动能够触发
- this.scrollTop = this.oldScrollTop;
- this.$nextTick(() => {
- this.scrollTop = targetPosition;
- this.oldScrollTop = targetPosition;
- });
- });
- },
- confirmSubmit() {
- if (this.isSubmitting) return;
-
- let firstUnansweredIndex = -1;
- this.list.forEach((l, i) => {
- const isAnswered = l.answer.filter(a => a?.value).length==this.userAnswerTemp.length?true:false;
- this.$set(l, 'warn', !isAnswered);
- if (!isAnswered && firstUnansweredIndex === -1) {
- firstUnansweredIndex = i;
- }
- });
-
- if (firstUnansweredIndex > -1) {
- uni.showModal({
- title: '提示',
- content: `第 ${firstUnansweredIndex + 1} 项未选择答案,请选择。`,
- showCancel: false,
- success: (res) => {
- if (res.confirm) {
- // 调用新的滚动方法
- this.scrollToQuestion(firstUnansweredIndex);
- }
- }
- });
- return; // 终止提交
- }
-
- const submitList = this.list.map((l) => {
- let {answer,userAnswer,warn,...other} = JSON.parse(JSON.stringify(l));
- userAnswer.forEach(u=>{
- u.questionOption.forEach(q=>{
- q.userAnswer=answer.find(a=>a.assessmentMethod==u.assessmentMethod)?.value==q.questionOption;
- })
- })
- return {
- ...other,
- isAnswer: '1',
- userAnswer
- };
- });
-
- this.isSubmitting = true;
- this.$api
- .post('/core/team/member/answer/submit', submitList)
- .then((res) => {
- if (res.data.code !== 0) {
- this.isSubmitting = false;
- return this.$showToast(res.data.msg);
- }
- uni.removeStorageSync('questionnaire');
- let url = '/pagesPublish/questionnaireResult'
- if(this.type == 2) url = '/pagesPublish/submitResult'
- uni.navigateTo({ url })
- })
- .catch((err) => {
- this.$showToast('网络异常,请稍后重试');
- })
- .finally(() => {
- this.isSubmitting = false;
- });
- },
- setQuestionnaireCache() {
- const answeredList = this.list.filter((l) => l.answer.filter(a => a?.value).length>0).map((l) => ({ id: l.id, answer: l.answer }));
- if (answeredList.length === 0) {
- uni.removeStorageSync('questionnaire');
- return;
- }
-
- const qinfo = {
- key: this.teamQuestionnaireId,
- list: answeredList
- };
- uni.setStorageSync('questionnaire', JSON.stringify(qinfo));
- },
- async getTeamScaleData(){
- return new Promise((resolve,reject)=>{
- this.$api.get('/getListByType/team_scale').then(({data:res})=>{
- if(res.code!==0) return this.$showToast(res.msg)
- this.teamScaleData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
- resolve()
- })
- })
- },
- async getTeamHierarchyData(){
- return new Promise((resolve,reject)=>{
- this.$api.get('/getListByType/team_hierarchy').then(({data:res})=>{
- if(res.code!==0) return this.$showToast(res.msg)
- this.teamLevelData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
- resolve()
- })
- })
- },
- async showTeamInfo(){
- await this.getTeamScaleData()
- await this.getTeamHierarchyData()
- this.$api.get(`/core/user/team/${this.teamId}`).then(({data:res})=>{
- if(res.code!==0) return this.$showToast(res.msg)
- this.teamInfo = res.data;
- this.teamInfo.functionsName = res.data.functions.map(f=>f.functionName).join('、');
- this.teamInfo.organizationsName = res.data.organizations.map(f=>f.orgName).join('、');
- this.teamInfo.address = res.data.provinceName+res.data.cityName;
- this.teamInfo.scaleName = this.teamScaleData.find(d=>d.id==res.data.scale).name;
- this.teamInfo.hierarchyName = this.teamLevelData.find(d=>d.id==res.data.hierarchy).name;
- this.teamShow = true;
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .loading-container {
- width: 100%;
- height: 100%;
- }
- .default_page{
- padding: 0 0 192rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
-
- .top{
- padding: 40rpx 24rpx 50rpx;
- &-title{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 40rpx;
- color: #002846;
- line-height: 51rpx;
- }
- &-progress{
- margin-top: 35rpx;
- &-text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #002846;
- line-height: 30rpx;
- }
- &-box{
- flex: 1;
- width: 100%;
- height: 14rpx;
- margin: 0 20rpx;
- background: #F0F2F8;
- border-radius: 8rpx;
- position: relative;
- &-current{
- height: 14rpx;
- background: #FFD750;
- border-radius: 8rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
- }
- &-num{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #667E90;
- line-height: 26rpx;
- span{
- font-size: 36rpx;
- color: #199C9C;
- line-height: 36rpx;
- }
- }
- }
- }
-
- .memo{
- margin: -20rpx 0 50rpx 24rpx;
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #BA9B31;
- line-height: 30rpx;
- }
- image{
- width: 24rpx;
- height: 24rpx;
- margin-left: 9rpx;
- }
- }
-
- .list{
- width: 100%;
- padding: 0 24rpx;
- box-sizing: border-box;
- // flex: 1;
- // overflow-y: auto;
- }
-
- .bottom{
- width: 100%;
- background: #FFFFFF;
- box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0,0,0,0.07);
- padding: 20rpx 40rpx 54rpx;
- box-sizing: border-box;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 1000;
- &-left{
- image{
- width: 42rpx;
- height: 42rpx;
- }
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #536387;
- line-height: 40rpx;
- margin-top: 2rpx;
- }
- &-pre{
- &:last-child{
- margin-left: 40rpx;
- }
- }
- }
- &-right{
- width: 448rpx;
- height: 88rpx;
- background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
- border-radius: 44rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- letter-spacing: 2rpx;
- &.questionnaire{
- width: 383rpx;
- }
- }
- }
- }
- </style>
|