askbot-dragon 0.7.40 → 0.7.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.40",
3
+ "version": "0.7.43",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -335,7 +335,7 @@
335
335
  </template>
336
336
  </van-field>
337
337
  </div>
338
- <div v-else-if="item.formField.type==='SELECT'" class="form-field-item-value">
338
+ <div v-else-if="item.formField.type==='SELECT' || item.formField.type==='OPTION'" class="form-field-item-value">
339
339
  <van-field
340
340
  readonly
341
341
  clickable
@@ -915,7 +915,7 @@ export default {
915
915
 
916
916
  }
917
917
  }
918
- if (this.formList.form.formFieldRelation[i].formField.type === 'SELECT') {
918
+ if (this.formList.form.formFieldRelation[i].formField.type === 'SELECT' || this.formList.form.formFieldRelation[i].formField.type === 'OPTION') {
919
919
  if ( this.formList.form.formFieldRelation[i].formField.extInfo.option){
920
920
  for (let j = 0; j < this.formList.form.formFieldRelation[i].formField.extInfo.option.length; j++) {
921
921
  if (this.formList.form.formFieldRelation[i].formField.extInfo.option[j].value === '') {