vue2-client 1.4.60 → 1.4.61
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -358,7 +358,7 @@ export default {
|
|
|
358
358
|
columnItem.lazyLoad = 'false'
|
|
359
359
|
}
|
|
360
360
|
// 下拉框数据源兼容处理
|
|
361
|
-
if ((columnItem.formType === 'select' || columnItem.formType === 'cascader') && columnItem.selectKey) {
|
|
361
|
+
if ((columnItem.formType === 'select' || columnItem.formType === 'cascader' || columnItem.formType === 'treeSelect') && columnItem.selectKey) {
|
|
362
362
|
// 数据源为logic
|
|
363
363
|
if (columnItem.selectKey.toString().startsWith('logic@')) {
|
|
364
364
|
columnItem.selectType = 'logic'
|
|
@@ -678,8 +678,8 @@ export default {
|
|
|
678
678
|
if (['FilesId', 'Images'].includes(this.item.key)) { this.item.key = '' }
|
|
679
679
|
this.resetDataMode()
|
|
680
680
|
// 表单查询方式有预选项时
|
|
681
|
-
if (this.queryTypeV.length
|
|
682
|
-
this.item.queryType = this.queryTypeV[0].
|
|
681
|
+
if (this.queryTypeV.length) {
|
|
682
|
+
this.item.queryType = this.queryTypeV[0].key
|
|
683
683
|
}
|
|
684
684
|
}
|
|
685
685
|
},
|