|
|
@@ -97,7 +97,7 @@
|
|
|
v-if="taskType == 1 || taskType == 4">
|
|
|
<van-form ref="tabstoreVal">
|
|
|
<div v-for="(item, index) in collectionItemList" :key="index">
|
|
|
- <div v-if="item.answerType == 'tel_send_code'" class="formLabel z-cell">
|
|
|
+ <div v-if="item.answerType == 'tel_send_code'" class="formLabel z-cell z-cells">
|
|
|
<van-cell>
|
|
|
<template #title> {{ index + 1 }}.{{ item.collectionName }} </template>
|
|
|
</van-cell>
|
|
|
@@ -395,13 +395,15 @@ export default {
|
|
|
} else {
|
|
|
this.showCode = false;
|
|
|
}
|
|
|
- if (this.$route.query.taskType == 1) {
|
|
|
+ if (this.$route.query.taskType == 1 || this.$route.query.taskType == 4) {
|
|
|
for (var q = 0; q < collectionItemLists.length; q++) {
|
|
|
if (
|
|
|
collectionItemLists[q].answerType == 'sz' ||
|
|
|
collectionItemLists[q].answerType == 'wb' ||
|
|
|
collectionItemLists[q].answerType == 'tel' ||
|
|
|
- collectionItemLists[q].answerType == 'date'
|
|
|
+ collectionItemLists[q].answerType == 'date' ||
|
|
|
+ collectionItemLists[q].answerType == 'tel_send_code' ||
|
|
|
+ collectionItemLists[q].answerType == 'check_code'
|
|
|
) {
|
|
|
collectionItemLists[q].answerValue =
|
|
|
collectionItemLists[q].collectionOptionList[0].answerValue;
|