askbot-dragon 0.7.52 → 0.7.53
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
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
:placeholder="item.formField.extInfo&&item.formField.extInfo.placeholder?item.formField.extInfo.placeholder:'请选择'"
|
|
117
117
|
style="width: 100%"
|
|
118
118
|
filterable
|
|
119
|
-
v-if="item.formField.extInfo.option"
|
|
119
|
+
v-if="item.formField.extInfo && item.formField.extInfo.option"
|
|
120
120
|
>
|
|
121
121
|
<el-option
|
|
122
122
|
v-for="(items,index) in item.formField.extInfo.option"
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
:placeholder="item.formField.extInfo&&item.formField.extInfo.placeholder?item.formField.extInfo.placeholder:'请选择'"
|
|
131
131
|
style="width: 100%"
|
|
132
132
|
filterable
|
|
133
|
-
v-else-if="item.formField.extInfo.options"
|
|
133
|
+
v-else-if="item.formField.extInfo && item.formField.extInfo.options"
|
|
134
134
|
>
|
|
135
135
|
<el-option
|
|
136
136
|
v-for="(items,index) in item.formField.extInfo.options"
|