cloud-web-corejs 1.0.54-dev.571 → 1.0.54-dev.573
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 +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +3 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -1
- package/src/components/xform/form-render/indexMixin.js +1 -1
- package/src/resources/js/base/common.js +2 -2
- package/src/views/user/form/vform/render.vue +8 -0
- package/src/views/user/form/view/list.vue +9 -0
package/package.json
CHANGED
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
<el-form-item label="查询列表">
|
|
26
26
|
<el-switch v-model="optionModel.isQueryTable"></el-switch>
|
|
27
27
|
</el-form-item>
|
|
28
|
+
<el-form-item label="切换tab时自动查询">
|
|
29
|
+
<el-switch v-model="optionModel.searchOnSwitchTab"></el-switch>
|
|
30
|
+
</el-form-item>
|
|
28
31
|
<el-form-item label="是否显示查询按钮">
|
|
29
32
|
<el-switch v-model="isShowQueryButton"></el-switch>
|
|
30
33
|
</el-form-item>
|