doway-coms 1.6.12 → 1.6.13
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
|
@@ -1038,9 +1038,11 @@ export default {
|
|
|
1038
1038
|
}catch (err) {
|
|
1039
1039
|
console.debug(err)
|
|
1040
1040
|
}
|
|
1041
|
-
|
|
1042
1041
|
XEUtils.each(columns, item => {
|
|
1043
1042
|
let col= vm.columns.find(x=>x.field === item.field)
|
|
1043
|
+
if(!col.controlType) {
|
|
1044
|
+
col.controlType = 'text'
|
|
1045
|
+
}
|
|
1044
1046
|
switch(col.controlType) {
|
|
1045
1047
|
case 'select':
|
|
1046
1048
|
if(item.filters && item.filters[0].checked) {
|