mooho-base-admin-plus 2.10.68 → 2.10.70
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
|
@@ -111,6 +111,7 @@
|
|
|
111
111
|
if (column.controlType === 'DialogSelect' && !column.readonly) {
|
|
112
112
|
this.$refs.dialogTable.init(column.source, () => {
|
|
113
113
|
this.$refs.dialogTable.open(this.getParam(this.staticData[coords.row], column, this.parentData));
|
|
114
|
+
this.$refs.dialogTable.resetFilter();
|
|
114
115
|
});
|
|
115
116
|
}
|
|
116
117
|
}
|
|
@@ -872,7 +873,9 @@
|
|
|
872
873
|
let isReadonly = column.isReadonly;
|
|
873
874
|
|
|
874
875
|
// 判断是否只读
|
|
875
|
-
if (
|
|
876
|
+
if (column.controlType == 'Label') {
|
|
877
|
+
isReadonly = true;
|
|
878
|
+
} else if (!!(column.readonlyJson || '').trim()) {
|
|
876
879
|
let setting = JSON.parse(column.readonlyJson);
|
|
877
880
|
|
|
878
881
|
if (setting.type == 'Condition' || setting.type == 'Expression') {
|