cloud-web-corejs 1.0.249 → 1.0.250
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
|
@@ -227,6 +227,9 @@
|
|
|
227
227
|
<el-form-item :label="i18nt('启用其他标签页')">
|
|
228
228
|
<el-switch v-model="formConfig.otherTabEnabled"></el-switch>
|
|
229
229
|
</el-form-item>
|
|
230
|
+
<el-form-item :label="i18nt('隐藏常规标签')">
|
|
231
|
+
<el-switch v-model="formConfig.hideNormalTab"></el-switch>
|
|
232
|
+
</el-form-item>
|
|
230
233
|
<el-form-item :label="i18nt('其他标签页配置')"> </el-form-item>
|
|
231
234
|
<el-form-item label-width="0">
|
|
232
235
|
<div>
|
|
@@ -1004,6 +1004,7 @@ export function getDefaultFormConfig() {
|
|
|
1004
1004
|
wfTheme: null,
|
|
1005
1005
|
otherTabEnabled: false,
|
|
1006
1006
|
otherTabList: [],
|
|
1007
|
+
hideNormalTab: false,
|
|
1007
1008
|
customListTabLabel: null,
|
|
1008
1009
|
globalConfig: null,
|
|
1009
1010
|
// 表单级动态字段规则:按本地规则/后台脚本动态控制整个表单内任意字段/容器的显隐/必填/只读/禁用/取值
|