doway-coms 1.8.8 → 1.8.9
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
|
@@ -39,7 +39,13 @@
|
|
|
39
39
|
class="drag-row"
|
|
40
40
|
>
|
|
41
41
|
<div>{{ item.title }}</div>
|
|
42
|
-
<div style="margin-left: auto;"
|
|
42
|
+
<div style="margin-left: auto;">
|
|
43
|
+
<a-switch
|
|
44
|
+
:disabled="!item.sysVisible"
|
|
45
|
+
v-model="item.visible"
|
|
46
|
+
@change="onCheckboxChange(item)"
|
|
47
|
+
size="small"
|
|
48
|
+
/></div>
|
|
43
49
|
</div>
|
|
44
50
|
</div>
|
|
45
51
|
</div>
|
|
@@ -135,6 +141,7 @@ export default {
|
|
|
135
141
|
field: item.field,
|
|
136
142
|
title: item.title,
|
|
137
143
|
visible: item.visible,
|
|
144
|
+
sysVisible: item.params.sysVisible, // 系统隐藏字段不可操作
|
|
138
145
|
width: item.width,
|
|
139
146
|
filters: item.filters,
|
|
140
147
|
order: item.order,
|