提交 9f16bbc8 编写于 作者: ibizdev's avatar ibizdev

ShineKOT 发布系统代码 [后台服务,演示应用]

上级 71484ba5
<template> <template>
<div :class="curClassName" :style="curStyle"> <div :class="curClassName" :style="curStyle">
<slot></slot> <template v-if="Object.is(renderMode, 'TEXT')">
<span class="view__caption__info">
<slot></slot>
</span>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING1')">
<h1 class="view__caption__info">
<slot></slot>
</h1>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING2')">
<h2 class="view__caption__info">
<slot></slot>
</h2>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING3')">
<h3 class="view__caption__info">
<slot></slot>
</h3>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING4')">
<h4 class="view__caption__info">
<slot></slot>
</h4>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING5')">
<h5 class="view__caption__info">
<slot></slot>
</h5>
</template>
<template v-else-if="Object.is(renderMode, 'HEADING6')">
<h6 class="view__caption__info">
<slot></slot>
</h6>
</template>
<template v-else-if="Object.is(renderMode, 'PARAGRAPH')">
<p class="view__caption__info">
<slot></slot>
</p>
</template>
</div> </div>
</template> </template>
...@@ -9,7 +48,6 @@ import { Vue, Component, Prop } from "vue-property-decorator"; ...@@ -9,7 +48,6 @@ import { Vue, Component, Prop } from "vue-property-decorator";
@Component({}) @Component({})
export default class AppPresetCaption extends Vue { export default class AppPresetCaption extends Vue {
/** /**
* 名称 * 名称
* *
...@@ -44,6 +82,19 @@ export default class AppPresetCaption extends Vue { ...@@ -44,6 +82,19 @@ export default class AppPresetCaption extends Vue {
return this.index ? `${this.name}_${this.index}` : this.name; return this.index ? `${this.name}_${this.index}` : this.name;
} }
/**
* 绘制模式
*
* @type {*}
* @memberof AppPresetCaption
*/
get renderMode() {
const layoutModel = this.layoutModelDetails[this.itemName];
if (layoutModel) {
return layoutModel.renderMode || "TEXT";
}
}
/** /**
* 类名 * 类名
* *
...@@ -58,7 +109,7 @@ export default class AppPresetCaption extends Vue { ...@@ -58,7 +109,7 @@ export default class AppPresetCaption extends Vue {
/** /**
* 当前容器样式 * 当前容器样式
* *
* @memberof AppPresetCaption * @memberof AppPresetCaption
*/ */
get curStyle() { get curStyle() {
......
...@@ -408,6 +408,7 @@ function getAppLocale(){ ...@@ -408,6 +408,7 @@ function getAppLocale(){
menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null), menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null),
menuitem227: commonLogic.appcommonhandle("其他视图",null), menuitem227: commonLogic.appcommonhandle("其他视图",null),
menuitem230: commonLogic.appcommonhandle("自定义视图",null), menuitem230: commonLogic.appcommonhandle("自定义视图",null),
menuitem201: commonLogic.appcommonhandle("测试界面逻辑",null),
}, },
}, },
formpage:{ formpage:{
......
...@@ -408,6 +408,7 @@ function getAppLocale(){ ...@@ -408,6 +408,7 @@ function getAppLocale(){
menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null), menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null),
menuitem227: commonLogic.appcommonhandle("其他视图",null), menuitem227: commonLogic.appcommonhandle("其他视图",null),
menuitem230: commonLogic.appcommonhandle("自定义视图",null), menuitem230: commonLogic.appcommonhandle("自定义视图",null),
menuitem201: commonLogic.appcommonhandle("测试界面逻辑",null),
}, },
}, },
formpage:{ formpage:{
......
...@@ -408,6 +408,7 @@ function getAppLocale(){ ...@@ -408,6 +408,7 @@ function getAppLocale(){
menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null), menuitem226: commonLogic.appcommonhandle("工作流动态操作视图",null),
menuitem227: commonLogic.appcommonhandle("其他视图",null), menuitem227: commonLogic.appcommonhandle("其他视图",null),
menuitem230: commonLogic.appcommonhandle("自定义视图",null), menuitem230: commonLogic.appcommonhandle("自定义视图",null),
menuitem201: commonLogic.appcommonhandle("测试界面逻辑",null),
}, },
}, },
formpage:{ formpage:{
......
...@@ -11,7 +11,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -11,7 +11,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
name: 'appmenu', name: 'appmenu',
items: [ items: [
{ {
id: '71E704A8-1FA7-4284-B849-C27C877AF262', id: 'D9ED4124-D1E7-419D-A3BA-A975E5144966',
name: 'menuitem1', name: 'menuitem1',
text: '工作台', text: '工作台',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -29,7 +29,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -29,7 +29,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'D7354808-713F-4DB0-BF08-3882C42F897C', id: '993EB242-5B31-4B91-A22C-32B4138770C4',
name: 'menuitem3', name: 'menuitem3',
text: '控件', text: '控件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -47,7 +47,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -47,7 +47,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '39B8433A-EF3C-48DF-AA21-396F8F0E630A', id: '6D0F78A1-CF2A-4742-8550-E775F936B14B',
name: 'menuitem6', name: 'menuitem6',
text: '默认数据类型', text: '默认数据类型',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -65,7 +65,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -65,7 +65,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F25148AE-E549-4719-BEB3-7609162D43EF', id: '07CC7586-4A3F-4B29-A03A-F0C7F5473149',
name: 'menuitem7', name: 'menuitem7',
text: '默认编辑器类型', text: '默认编辑器类型',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -83,7 +83,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -83,7 +83,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '722DEB4F-026F-41E3-BA30-E886ECF75CCA', id: 'B82959D5-89FA-4B61-B7D5-7B45F4588B61',
name: 'menuitem72', name: 'menuitem72',
text: '扩展编辑器', text: '扩展编辑器',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -101,7 +101,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -101,7 +101,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F725A53B-13AF-4B18-88EC-8C840230DCE4', id: 'A23AA3F2-C248-4106-9712-D3D5726FB1EB',
name: 'menuitem65', name: 'menuitem65',
text: '微服务组件', text: '微服务组件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -119,7 +119,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -119,7 +119,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'D206E0D3-BCF1-43D2-9713-283E375553D5', id: 'FDCF3484-A4C9-4170-BC5A-35CA53C4B533',
name: 'menuitem151', name: 'menuitem151',
text: '编辑器插件示例', text: '编辑器插件示例',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -139,7 +139,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -139,7 +139,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'C0AFE6C1-CB05-4437-A246-0041919BFD14', id: '96AEAC0F-1046-49D4-B430-0B4D213CE876',
name: 'menuitem4', name: 'menuitem4',
text: '部件', text: '部件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -157,7 +157,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -157,7 +157,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '58C34F23-3612-4861-A0D0-96C4B7790F40', id: '355F58FA-9D3D-4A8D-86A9-96AA54F08AA0',
name: 'menuitem112', name: 'menuitem112',
text: '应用类', text: '应用类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -175,7 +175,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -175,7 +175,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '0D05FB56-33A0-4033-854C-96BDA59FF0AE', id: '2A433553-1CD9-424E-B743-4CAF821636BC',
name: 'menuitem186', name: 'menuitem186',
text: '数据看板', text: '数据看板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -193,7 +193,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -193,7 +193,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '6A9A090E-02F7-4E12-842E-B545784FD39E', id: 'E22F7C00-F192-4EBE-9F49-9EDA7026DE49',
name: 'menuitem129', name: 'menuitem129',
text: '门户部件', text: '门户部件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -213,7 +213,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -213,7 +213,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '40B23D41-2F80-4EBB-9795-841AC5F7A0D0', id: 'F97180DC-497C-4CF8-82BB-B402ABA47CEC',
name: 'menuitem156', name: 'menuitem156',
text: '表单类', text: '表单类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -231,7 +231,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -231,7 +231,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'CADFAB00-919E-4E72-970B-66A0CB351261', id: 'C75444B9-857C-4369-8592-3EECF8A8EA6C',
name: 'menuitem12', name: 'menuitem12',
text: '编辑表单', text: '编辑表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -249,7 +249,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -249,7 +249,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '810CDF90-AED5-4075-BA05-760BBAAC8001', id: '65044C5A-C883-4248-8C2F-87F2F9F1AD97',
name: 'menuitem15', name: 'menuitem15',
text: '基础表单项', text: '基础表单项',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -267,7 +267,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -267,7 +267,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '58AA2683-32E6-4E59-A24B-F3B9EFB86C7F', id: '2B046E9B-EECB-4916-A6E6-2B7AC13EA0CF',
name: 'menuitem107', name: 'menuitem107',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -285,7 +285,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -285,7 +285,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C00AA274-AA05-4E12-BFA4-282AB0FE881D', id: 'C72B5DDB-7D10-46EE-A7D3-845A71B2D46D',
name: 'menuitem47', name: 'menuitem47',
text: '新建默认值', text: '新建默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -303,7 +303,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -303,7 +303,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'B677F1FD-CACB-4651-A97A-244897AAE17E', id: '474EE83E-71B7-42E9-9DCE-EAEDAB9F8C4B',
name: 'menuitem99', name: 'menuitem99',
text: '更新默认值', text: '更新默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -321,7 +321,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -321,7 +321,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '7118FC7B-4045-4DEC-AFF2-4CD0DC2B80A4', id: '54FC50BA-5B71-4B32-848D-8934A57A27E9',
name: 'menuitem48', name: 'menuitem48',
text: '输入提示', text: '输入提示',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -339,7 +339,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -339,7 +339,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CAD1C3DE-F0CA-42DC-A9B6-05FB36DFFF4D', id: '7DA2192A-DF0B-48D0-A1B4-55B3BA6B6340',
name: 'menuitem49', name: 'menuitem49',
text: '辅助输入', text: '辅助输入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -357,7 +357,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -357,7 +357,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A10BF311-BD12-4199-A0F6-1CB3947021C3', id: '45D8D3EA-29AE-493D-8F80-D643A9049DC7',
name: 'menuitem50', name: 'menuitem50',
text: '自动填充', text: '自动填充',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -375,7 +375,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -375,7 +375,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '98A7A2B3-1560-48BE-B38D-DDB0540422BC', id: '37C1507C-566D-4AF2-A4BF-75D824D77A28',
name: 'menuitem51', name: 'menuitem51',
text: '超链接', text: '超链接',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -393,7 +393,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -393,7 +393,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'E6310F2E-C744-4977-827A-072299A9F3D8', id: '5FBBB62D-2F19-4C08-85B9-000831A14212',
name: 'menuitem52', name: 'menuitem52',
text: '表单值重置', text: '表单值重置',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -411,7 +411,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -411,7 +411,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '919AD260-AA91-4677-A8F2-4A9EE1F571F8', id: '3EA33D4E-8C0F-4D25-BFEC-2B0110AA3110',
name: 'menuitem55', name: 'menuitem55',
text: '动态显示', text: '动态显示',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -429,7 +429,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -429,7 +429,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0D994CF9-F826-47BF-8E4F-691A7F4DD82F', id: 'D2855975-9937-45AF-B8D6-A2E88DDD0C12',
name: 'menuitem53', name: 'menuitem53',
text: '动态启用', text: '动态启用',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -447,7 +447,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -447,7 +447,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'E2ADEAFA-D391-4F14-AE6D-AF9D46D86433', id: '2301F55C-6557-4E41-8FD9-96427703723F',
name: 'menuitem54', name: 'menuitem54',
text: '动态空输入', text: '动态空输入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -465,7 +465,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -465,7 +465,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'DB45B6C4-EDA0-4DF5-89DC-E7ECE0EDB4BE', id: '7FF1031A-9E04-40D7-A4F2-8ED79B7DA658',
name: 'menuitem56', name: 'menuitem56',
text: '表单项更新', text: '表单项更新',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -483,7 +483,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -483,7 +483,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '3DF6CC9C-9BC6-49B5-A512-19E9A3D4F0BD', id: '2B2D5166-8778-438D-8C1E-740F9BFA3774',
name: 'menuitem108', name: 'menuitem108',
text: '表单值规则', text: '表单值规则',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -503,7 +503,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -503,7 +503,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '2D556A5D-7AA7-41AB-9D77-1C247E27D5B7', id: 'ACAC251D-92FD-4592-B47D-28647CA82529',
name: 'menuitem16', name: 'menuitem16',
text: '搜索表单', text: '搜索表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -523,7 +523,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -523,7 +523,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'AAF996B1-5853-44A1-B723-915B589884DF', id: '1BAC928C-E809-48D4-B43D-42A3A9351C61',
name: 'menuitem157', name: 'menuitem157',
text: '导航类', text: '导航类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -541,7 +541,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -541,7 +541,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '146EDAAB-5F0B-43C5-8117-5945978CBCBC', id: 'A5439F9B-D8FA-4B28-B7BC-2C9D4E0D5341',
name: 'menuitem120', name: 'menuitem120',
text: '分页导航', text: '分页导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -559,7 +559,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -559,7 +559,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '750AF27A-C35B-48B9-B42E-B20DF5BCF40D', id: '5419AA53-A0D8-4927-8E50-440DB24D1FAC',
name: 'menuitem128', name: 'menuitem128',
text: '表格导航', text: '表格导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -577,7 +577,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -577,7 +577,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0CA3B649-C4BA-487E-8EA6-6EEA7A5FDF3A', id: '28DC72C0-3132-4698-8203-02B75F749934',
name: 'menuitem114', name: 'menuitem114',
text: '列表导航', text: '列表导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -595,7 +595,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -595,7 +595,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '88E0FBED-9969-4E70-B8C0-58445F306C95', id: '98FA5C20-9EF2-4F91-9EEB-1A679A12222B',
name: 'menuitem137', name: 'menuitem137',
text: '卡片导航', text: '卡片导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -613,7 +613,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -613,7 +613,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C54D8B7C-3852-4334-B901-22DDBFF00822', id: 'C5CA0DBB-3CCD-42E3-A133-662D1C232C11',
name: 'menuitem136', name: 'menuitem136',
text: '树导航', text: '树导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -631,7 +631,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -631,7 +631,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '7CB4BA19-A758-4787-8D25-DFDC3704A947', id: '43752D38-BF3B-45E5-A31F-0D1F17EEEF04',
name: 'menuitem138', name: 'menuitem138',
text: '日历导航', text: '日历导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -649,7 +649,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -649,7 +649,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '760A1391-ECAB-425D-A2B1-6FEAF38C8DE4', id: '8525A910-7ECC-4496-8AA8-11D3607F26FB',
name: 'menuitem139', name: 'menuitem139',
text: '时间轴导航', text: '时间轴导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -667,7 +667,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -667,7 +667,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '28645156-B04A-4EF8-B759-2A8F0DC8A54F', id: '07C59C67-FEC1-49A7-9330-F84F9AB4F0AF',
name: 'menuitem20', name: 'menuitem20',
text: '数据关系分页', text: '数据关系分页',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -685,7 +685,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -685,7 +685,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '4C7AE630-07CA-4591-85AE-61DEF12686D2', id: '93FFE50A-2ABB-49A4-89C8-BC09FC71C092',
name: 'menuitem117', name: 'menuitem117',
text: '数据关系分页(上下关系)', text: '数据关系分页(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -703,7 +703,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -703,7 +703,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'AC097D44-BED6-46BB-B5CB-87617043F3F0', id: '8B3F6885-1F4A-4968-B1A0-3AEE107E79B4',
name: 'menuitem118', name: 'menuitem118',
text: '数据关系分页(分页关系)', text: '数据关系分页(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -723,7 +723,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -723,7 +723,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'A934AA38-8228-4F0F-BF6C-651B781B996E', id: '37BB5AC5-EABE-4867-81B2-C34302DED238',
name: 'menuitem116', name: 'menuitem116',
text: ' 数据关系栏', text: ' 数据关系栏',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -743,7 +743,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -743,7 +743,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'C673C53D-7FE3-4563-877F-8E6B7C8B6918', id: 'B62C6578-C4E4-4B0E-AD64-9556DAEC7953',
name: 'menuitem158', name: 'menuitem158',
text: '面板类', text: '面板类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -761,7 +761,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -761,7 +761,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'EF9BA155-E802-45BE-81FE-AB41E185FD44', id: 'CFD7096E-6EE8-4790-B888-A6CDB48E06B2',
name: 'menuitem145', name: 'menuitem145',
text: '选择视图面板', text: '选择视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -779,7 +779,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -779,7 +779,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A6183132-8339-48FE-92DF-87991DD51D1E', id: 'F083F5A4-9733-4159-9F66-630FD2CBE937',
name: 'menuitem17', name: 'menuitem17',
text: '向导面板', text: '向导面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -797,7 +797,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -797,7 +797,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '70BE4F5F-DA41-4271-B097-70EF20E8F8F6', id: '6510EAB0-C65D-4F34-9D1B-FB4B1CDD1862',
name: 'menuitem134', name: 'menuitem134',
text: '基础用法', text: '基础用法',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -815,7 +815,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -815,7 +815,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '1AF2930E-F982-4D68-AED0-9EAE59CCEB84', id: '498947E5-86EF-434C-9381-D2CF6B69AD0A',
name: 'menuitem135', name: 'menuitem135',
text: '状态属性', text: '状态属性',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -835,7 +835,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -835,7 +835,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '569EC818-A826-48D4-B30F-8DB43DB39FFF', id: 'B2605A1B-A91F-480F-AC48-707FFA5DCA91',
name: 'menuitem121', name: 'menuitem121',
text: '多编辑视图面板', text: '多编辑视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -853,7 +853,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -853,7 +853,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '0F9FF51D-C672-4B55-8BEE-43BCEC15A127', id: '1EC6115F-FAC2-467F-B06F-4742A330D480',
name: 'menuitem115', name: 'menuitem115',
text: '多表单(行记录)', text: '多表单(行记录)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -871,7 +871,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -871,7 +871,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '5FE3776A-FA56-4C53-AD95-32585F4B54C9', id: 'A7AE1C68-22AB-4CC3-9DBD-487ADD457A79',
name: 'menuitem123', name: 'menuitem123',
text: '多表单(上分页)', text: '多表单(上分页)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -893,7 +893,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -893,7 +893,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '8D1F6398-362F-4965-88FC-27840DC00BEA', id: 'C2AEB74A-9CA4-43C3-AEB6-A9A41B7B26AE',
name: 'menuitem119', name: 'menuitem119',
text: '多数据类', text: '多数据类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -911,7 +911,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -911,7 +911,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'ADD6DA57-172D-40B7-A033-3A3DF87717CF', id: '36ABAC78-40A9-4639-8E5B-670BFD6C80B9',
name: 'menuitem13', name: 'menuitem13',
text: '表格', text: '表格',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -929,7 +929,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -929,7 +929,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '50F70D09-5056-4CC1-8AC4-11641383A6A3', id: '8BC1B6FE-0C7F-43E5-A39B-B405A68D96B9',
name: 'menuitem57', name: 'menuitem57',
text: '禁用排序', text: '禁用排序',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -947,7 +947,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -947,7 +947,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C5EED469-2977-4B23-B0ED-75245941842E', id: '3B3BC8F3-16C2-4CC0-9F02-1DA4F6D96A81',
name: 'menuitem59', name: 'menuitem59',
text: '行操作', text: '行操作',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -965,7 +965,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -965,7 +965,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0560E8C6-697E-4AAB-B9D5-056553820FF6', id: '7FD9D2A0-91CA-4368-9195-36AC9FDAFC20',
name: 'menuitem58', name: 'menuitem58',
text: '行编辑', text: '行编辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -983,7 +983,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -983,7 +983,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CE42EEE7-214C-4263-8843-6BD139A7340E', id: '178EA929-8BBD-4F66-8B65-BCB7BAE07B47',
name: 'menuitem73', name: 'menuitem73',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1001,7 +1001,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1001,7 +1001,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '38779239-111D-44DD-B807-0093F6120B44', id: '2C8BD0B6-2D55-49B4-BF1A-4DE2C6082E35',
name: 'menuitem74', name: 'menuitem74',
text: '表格行编辑', text: '表格行编辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1019,7 +1019,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1019,7 +1019,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'E4F988B7-C18E-4A80-948A-9A95722A747A', id: '4E8C2C6A-D6C3-4DB6-848C-B36272359B87',
name: 'menuitem75', name: 'menuitem75',
text: '新建默认值', text: '新建默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1037,7 +1037,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1037,7 +1037,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '01F22C4E-A274-4FDC-A420-850367D10C81', id: '31BFCBE9-5C1B-4940-8939-A7E32B7504B4',
name: 'menuitem76', name: 'menuitem76',
text: '更新默认值', text: '更新默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1055,7 +1055,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1055,7 +1055,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0BCF56A4-D198-4926-9AE3-A3DC906D2E8E', id: '7D4387F7-3455-4816-A943-ACEB9654C981',
name: 'menuitem77', name: 'menuitem77',
text: '表格值规则', text: '表格值规则',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1073,7 +1073,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1073,7 +1073,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '6FA939C5-BA28-45E4-95F0-E4A8EB61296A', id: '759F4AEE-EDF7-4716-A425-3F41DEFCD818',
name: 'menuitem132', name: 'menuitem132',
text: '表格列更新', text: '表格列更新',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1091,7 +1091,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1091,7 +1091,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'BFC0EE2E-9745-4AA2-BE46-C9DA35632362', id: '5C6D9383-8FFB-472E-9601-57D228E425DD',
name: 'menuitem133', name: 'menuitem133',
text: '表格列重置', text: '表格列重置',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1109,7 +1109,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1109,7 +1109,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '8EFB4844-EEF7-4715-8656-9CD7CC08D425', id: 'A9B9BC3C-5676-4287-984D-CF916C110C9A',
name: 'menuitem78', name: 'menuitem78',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1127,7 +1127,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1127,7 +1127,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '95BEC46B-BCE9-4E25-B898-7286247BC133', id: '57D9C9D1-120F-4628-AF03-4181EE921BCC',
name: 'menuitem80', name: 'menuitem80',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1145,7 +1145,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1145,7 +1145,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '544DA55D-52E3-4314-8E5C-C3E8BD0679AC', id: '30BD17EB-91ED-430F-8D12-59D5D9676B8D',
name: 'menuitem81', name: 'menuitem81',
text: '当前页聚合', text: '当前页聚合',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1163,7 +1163,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1163,7 +1163,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '122C5DAE-36F2-467B-8C47-70898BD571B8', id: '288D4E37-768C-44C4-A62B-72C96E872D1F',
name: 'menuitem82', name: 'menuitem82',
text: '远程聚合', text: '远程聚合',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1183,7 +1183,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1183,7 +1183,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'A5B590DA-7D1D-460A-A7C0-7A21ACC383B0', id: 'E17AEC0B-F569-4FDC-8BE8-1F92D23C7D20',
name: 'menuitem83', name: 'menuitem83',
text: '列表', text: '列表',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1201,7 +1201,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1201,7 +1201,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '493F633C-A744-48E2-8882-F196E1495B0F', id: 'EB026E87-8229-46F2-B765-C3F89DCC58AB',
name: 'menuitem84', name: 'menuitem84',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1219,7 +1219,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1219,7 +1219,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A194C265-8776-4159-9E62-6A13621ECC5F', id: 'C8043266-E3AA-425B-A3B2-FABBC0D6837A',
name: 'menuitem85', name: 'menuitem85',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1237,7 +1237,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1237,7 +1237,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '95824A46-88CC-4AFD-B829-DB29016C6F98', id: 'B1A610F2-18FF-4765-B05A-219234402BD9',
name: 'menuitem86', name: 'menuitem86',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1255,7 +1255,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1255,7 +1255,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'E995CF0B-68F3-4024-B0A6-C8A942B6E93F', id: '1EA396EA-581F-4AB7-9EA5-5165F73D1A69',
name: 'menuitem91', name: 'menuitem91',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1273,7 +1273,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1273,7 +1273,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '01757FCC-44E6-4D2E-A752-B90BAFAB7AFE', id: 'FF55CFFB-B9CC-43EF-9F61-F32070EC75EF',
name: 'menuitem143', name: 'menuitem143',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1293,7 +1293,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1293,7 +1293,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '5FF167EE-55B0-4C6B-97FB-6800D3C5248C', id: '2F4CFE55-5E29-431F-A090-0C58867B4201',
name: 'menuitem95', name: 'menuitem95',
text: '日历', text: '日历',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1311,7 +1311,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1311,7 +1311,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'AECC8A63-F6F1-4A05-A735-5742A854599A', id: 'B9064D3A-1F2A-4481-BEC3-59B023E273A7',
name: 'menuitem96', name: 'menuitem96',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1329,7 +1329,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1329,7 +1329,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '59DC125D-5F79-427B-966E-444F067A034E', id: '4BB67945-E582-4737-ABB1-83E4735B794B',
name: 'menuitem97', name: 'menuitem97',
text: '时间轴样式', text: '时间轴样式',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1347,7 +1347,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1347,7 +1347,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '7D199598-3151-4E9A-8C78-DC576F58035C', id: '1379EA76-9160-4FD3-9807-DB51CB3B14F5',
name: 'menuitem109', name: 'menuitem109',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1365,7 +1365,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1365,7 +1365,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'AF9A2B4F-788A-448F-94C9-5E286D39A510', id: 'C51B8C4F-A9E2-4005-954F-B4CBC674C9DE',
name: 'menuitem64', name: 'menuitem64',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1385,7 +1385,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1385,7 +1385,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '1F58564C-8CFE-4D95-B64A-26ABA083851E', id: 'B7F0403C-C40C-47C4-8AAB-348960B35C42',
name: 'menuitem14', name: 'menuitem14',
text: '树视图', text: '树视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1403,7 +1403,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1403,7 +1403,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '39F6D43E-003C-4402-AF95-6DFA49567765', id: 'D974FA09-314A-4736-A446-6828086ADEFA',
name: 'menuitem60', name: 'menuitem60',
text: '静态节点', text: '静态节点',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1421,7 +1421,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1421,7 +1421,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F75C184D-442F-4F64-AC6B-AD97D4B6C2EF', id: 'FCA391E4-0E6F-4E7D-9422-3DBF10F101B9',
name: 'menuitem61', name: 'menuitem61',
text: '动态节点(代码表)', text: '动态节点(代码表)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1439,7 +1439,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1439,7 +1439,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'B4D9E831-A15D-45E7-B9C0-53184CDC3A79', id: '5C76924B-3C3B-4AF4-BD0D-0121B35D8411',
name: 'menuitem62', name: 'menuitem62',
text: '动态节点(实体)', text: '动态节点(实体)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1457,7 +1457,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1457,7 +1457,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '46F90EA0-C985-427A-ABF2-F63BB0461638', id: '0DA74AB5-7221-4129-9B50-0F496070546C',
name: 'menuitem63', name: 'menuitem63',
text: '右键操作', text: '右键操作',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1477,7 +1477,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1477,7 +1477,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'DBE2DE84-1718-4FDF-AE40-B0495F4A89F7', id: '0647E103-6FD7-48B1-B54B-97B0655B3500',
name: 'menuitem111', name: 'menuitem111',
text: '甘特图', text: '甘特图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1495,7 +1495,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1495,7 +1495,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'FD126F61-8AF7-428B-8ED2-92CA893DB327', id: 'D839814F-A805-4756-A1AE-A056BDC9B6B3',
name: 'menuitem110', name: 'menuitem110',
text: '树表格', text: '树表格',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1513,7 +1513,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1513,7 +1513,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'FB8550F8-9441-4AB5-9320-A5BBA5CBA832', id: 'B842419A-2BB2-4CCA-9A20-DC2382551BBC',
name: 'menuitem87', name: 'menuitem87',
text: '数据视图', text: '数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1531,7 +1531,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1531,7 +1531,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '6751EF5D-8BF2-44EA-A9E1-F84BD7914753', id: '167B6A62-0B55-48AA-AF2E-73BBD597CCCF',
name: 'menuitem88', name: 'menuitem88',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1549,7 +1549,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1549,7 +1549,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F552095F-99F5-41DF-B3FB-E86398B492D1', id: '4F6352F1-6F88-4481-9361-1D707B03AE99',
name: 'menuitem89', name: 'menuitem89',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1567,7 +1567,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1567,7 +1567,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '64E26E72-E936-461C-BA6A-645595B0EE91', id: '00F6E3C2-C210-470A-ABBF-8ED48506CCF9',
name: 'menuitem90', name: 'menuitem90',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1585,7 +1585,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1585,7 +1585,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '76177647-B567-451C-B61B-FAB96EBEC972', id: '3A8F7CCF-36F6-49E2-A02F-AFE092B98F3C',
name: 'menuitem94', name: 'menuitem94',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1603,7 +1603,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1603,7 +1603,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'D9B460A9-5A20-4288-8674-35E705BEB0F4', id: 'B9B3D9EC-812B-40E3-AB84-F67517F5082F',
name: 'menuitem152', name: 'menuitem152',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1623,7 +1623,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1623,7 +1623,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '97A41577-785F-4D3B-94AF-46CC9175A091', id: 'DA9284C1-A9C0-4C61-8C05-5C7C200C4C16',
name: 'menuitem101', name: 'menuitem101',
text: '看板视图', text: '看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1641,7 +1641,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1641,7 +1641,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '6DA33081-4104-4221-9872-343C05C6E273', id: 'BC7062A6-46FF-4F24-BA8B-BF786787249D',
name: 'menuitem102', name: 'menuitem102',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1659,7 +1659,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1659,7 +1659,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A59CBABE-740B-4390-AC1C-81D2EF8520B4', id: '51E5EF98-18AE-464D-8786-ED236DC1CA42',
name: 'menuitem104', name: 'menuitem104',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1677,7 +1677,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1677,7 +1677,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '341D7B5C-068B-4BA9-B82F-5274AE108BCA', id: '1390E8ED-0797-4D99-A0E9-3B88C3F0AD96',
name: 'menuitem105', name: 'menuitem105',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1697,7 +1697,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1697,7 +1697,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'A82A579D-A1EE-4A4A-B629-A4082FBB7C7A', id: '9E8A4ADC-482A-484E-A422-13BA37379A39',
name: 'menuitem37', name: 'menuitem37',
text: '数据图表', text: '数据图表',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1715,7 +1715,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1715,7 +1715,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '5E83D67F-979F-4C4F-8E09-85BD6C51860B', id: '1F11772B-512A-40BC-A02E-3B12F88AFE61',
name: 'menuitem38', name: 'menuitem38',
text: '柱状图', text: '柱状图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1733,7 +1733,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1733,7 +1733,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '40AC4D78-6176-433B-8C91-D4F73E062FB8', id: '1DA2C72F-0670-4E8B-B8B1-BF863E4FBC85',
name: 'menuitem39', name: 'menuitem39',
text: '折线图', text: '折线图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1751,7 +1751,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1751,7 +1751,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '59F916FA-B01F-4AC6-AB7A-4B9F4E760EBB', id: '0D50699E-01FF-46C1-8A1E-E03FD4231891',
name: 'menuitem40', name: 'menuitem40',
text: '饼图', text: '饼图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1769,7 +1769,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1769,7 +1769,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '29B7C601-076C-437F-B7A2-D64D89E7A24B', id: '9711790B-CE73-47F5-8500-144A8F71C06C',
name: 'menuitem41', name: 'menuitem41',
text: '区域图', text: '区域图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1787,7 +1787,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1787,7 +1787,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '13630323-4282-42B4-968C-0B249B407089', id: '5B783A3C-1701-48F7-8207-39F378E7D9BD',
name: 'menuitem42', name: 'menuitem42',
text: '雷达图', text: '雷达图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1811,7 +1811,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1811,7 +1811,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '624CC365-C282-40EB-B4E6-B3DB7C856343', id: '6CE7C954-24C9-4667-BF95-02DBA05F3931',
name: 'menuitem5', name: 'menuitem5',
text: '视图', text: '视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1829,7 +1829,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1829,7 +1829,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'BAA6250B-FEA8-4487-B748-AE90B8CFC57B', id: 'B60B510C-A1A9-4A18-A9E9-8EE01CF41FDB',
name: 'menuitem140', name: 'menuitem140',
text: '单数据视图', text: '单数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1847,7 +1847,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1847,7 +1847,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '0227FDD9-AC51-4CBB-AC89-2333C2D790EA', id: '217B9C25-DE59-4C3F-8A7D-8EF6E29E5BAD',
name: 'menuitem161', name: 'menuitem161',
text: '实体向导视图', text: '实体向导视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1865,7 +1865,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1865,7 +1865,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '1D51F230-C243-4F14-A078-FDF283432FC6', id: '6ACFC279-71A2-412B-AAFC-8DFED4EBFA27',
name: 'menuitem8', name: 'menuitem8',
text: '实体编辑视图', text: '实体编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1883,7 +1883,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1883,7 +1883,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C625452F-4C86-483D-B22E-4009D9D426A2', id: 'B589A990-8D08-4225-B704-678D72FCEAD5',
name: 'menuitem162', name: 'menuitem162',
text: '实体编辑视图(分页关系)', text: '实体编辑视图(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1901,7 +1901,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1901,7 +1901,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '3BEA15A2-F444-44D1-872B-51ACA008D6D3', id: 'C3E1F1F0-2692-4439-BEA1-7E373C9F7B26',
name: 'menuitem163', name: 'menuitem163',
text: '实体编辑视图(上下关系)', text: '实体编辑视图(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1919,7 +1919,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1919,7 +1919,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '4F4C3C31-1FA0-41A4-80BA-A27A268FF28B', id: 'D80AE5E9-AF71-4495-8EAB-87B40080DE8C',
name: 'menuitem164', name: 'menuitem164',
text: '实体编辑视图(左右关系)', text: '实体编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1937,7 +1937,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1937,7 +1937,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'AD5407EC-29CC-4988-A81E-276C4C61FE15', id: '9803FA9D-9224-4E85-AFFD-C21BB7404A62',
name: 'menuitem165', name: 'menuitem165',
text: '实体分页导航视图', text: '实体分页导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1955,7 +1955,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1955,7 +1955,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '8964673B-ECA1-4457-9D2D-5164D426BF56', id: '1EB5597B-FC3F-455A-85B6-F96B464263CC',
name: 'menuitem166', name: 'menuitem166',
text: '实体数据看板视图', text: '实体数据看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1973,7 +1973,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1973,7 +1973,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '6B6839A1-FC1A-4444-9ED1-5A87DC003C19', id: '204A2249-70C7-4244-8646-608B279BBEBB',
name: 'menuitem167', name: 'menuitem167',
text: '实体选项操作视图', text: '实体选项操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1993,7 +1993,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -1993,7 +1993,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '1B9A001A-9F53-41DB-BB6E-19916C76E531', id: 'AC1D833A-1A12-4B4A-948E-FDAAA2D222F3',
name: 'menuitem141', name: 'menuitem141',
text: '多数据视图', text: '多数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2011,7 +2011,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2011,7 +2011,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '3036ED0E-8EBF-43D9-A279-19632A061E02', id: '6142A62B-B434-4EAC-AF84-57B6C1243991',
name: 'menuitem79', name: 'menuitem79',
text: '实体表格视图', text: '实体表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2029,7 +2029,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2029,7 +2029,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CB7DEF04-3F48-437E-B40F-EAA6B7797F3C', id: '8583F132-2318-4B6B-97FC-357C70FFEEC7',
name: 'menuitem168', name: 'menuitem168',
text: '实体多表单编辑视图', text: '实体多表单编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2047,7 +2047,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2047,7 +2047,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '6CB46F96-C081-4D7D-A349-DE55FC690979', id: '52785274-CDDB-465E-A2C0-536304F341C1',
name: 'menuitem169', name: 'menuitem169',
text: '实体甘特视图', text: '实体甘特视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2065,7 +2065,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2065,7 +2065,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'B1C6F694-6F6E-431B-AB62-B61D2471D353', id: 'B64C9FA6-7A0C-4C69-98C0-22810A88210F',
name: 'menuitem9', name: 'menuitem9',
text: '实体列表视图', text: '实体列表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2083,7 +2083,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2083,7 +2083,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'DF6B6693-924F-44FE-8F20-3E09BE0CEB2C', id: '7A542E3F-A264-493A-9B3A-1060A711C6A5',
name: 'menuitem170', name: 'menuitem170',
text: '实体日历视图', text: '实体日历视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2101,7 +2101,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2101,7 +2101,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F7BB256F-853F-4074-8CE2-B8DCDBCE7AFC', id: '124EE13D-5E3E-40AC-A214-E647BB45B312',
name: 'menuitem171', name: 'menuitem171',
text: '实体看板视图', text: '实体看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2119,7 +2119,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2119,7 +2119,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '9713109E-76CF-473D-9F51-1F367445ECF0', id: '385B2968-9E7F-4BF5-8837-AC9ED3D51A9C',
name: 'menuitem172', name: 'menuitem172',
text: '实体树表格视图', text: '实体树表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2137,7 +2137,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2137,7 +2137,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '773A49FE-177D-42CB-AC44-26C550C831EB', id: '48F6D664-46FE-41BD-84F8-1FFED96B051B',
name: 'menuitem173', name: 'menuitem173',
text: '实体树视图', text: '实体树视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2155,7 +2155,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2155,7 +2155,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '8C371092-9494-495F-8E70-1888896C5121', id: '735048C0-C135-49D8-AA25-35D7CA23DE55',
name: 'menuitem174', name: 'menuitem174',
text: '实体数据视图', text: '实体数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2173,7 +2173,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2173,7 +2173,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '80541C17-54E5-407A-98A6-FD01BB8BFF23', id: '519A647F-A2AF-467B-B2E8-5499020323CB',
name: 'menuitem175', name: 'menuitem175',
text: '实体图表视图', text: '实体图表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2193,7 +2193,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2193,7 +2193,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '792B06F2-CB59-4B9E-BC85-D8523380A637', id: '38FF8B2E-D41E-4FFF-9016-D86B41295912',
name: 'menuitem10', name: 'menuitem10',
text: '导航视图', text: '导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2211,7 +2211,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2211,7 +2211,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '18A4E896-2C30-48FA-A1C9-51D112076D64', id: '4AF1BC86-0ECA-4101-9239-A409B3328423',
name: 'menuitem176', name: 'menuitem176',
text: '实体表格导航视图', text: '实体表格导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2229,7 +2229,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2229,7 +2229,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0F3BECCE-3A6C-495B-94C8-5B8EDF99B115', id: '7CE8B92E-DB5A-4E51-B447-2641B21C95F4',
name: 'menuitem177', name: 'menuitem177',
text: '实体列表导航视图', text: '实体列表导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2247,7 +2247,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2247,7 +2247,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '3CE3184B-4206-4C00-9F14-9BDD904365DE', id: '9DF43805-9BC5-4C5B-B609-29CC3F89F0DC',
name: 'menuitem178', name: 'menuitem178',
text: '实体卡片导航视图', text: '实体卡片导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2265,7 +2265,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2265,7 +2265,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'D86F6C44-D5DD-4A0B-B6B5-11E41F98ADFF', id: '4E48D024-631C-42C6-9186-55FE9DC71F34',
name: 'menuitem179', name: 'menuitem179',
text: '实体日历导航视图', text: '实体日历导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2283,7 +2283,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2283,7 +2283,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '50241984-FD2D-44FF-A46D-9796EB9572F2', id: 'B5A7FE2C-EC6F-4228-9C45-287E08E94E19',
name: 'menuitem180', name: 'menuitem180',
text: '实体树导航视图', text: '实体树导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2303,7 +2303,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2303,7 +2303,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '3B3452DC-998C-4E28-89F0-2B9C0A63F288', id: '237A663F-4B14-4797-95B3-50B9AB634271',
name: 'menuitem26', name: 'menuitem26',
text: '选择视图', text: '选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2321,7 +2321,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2321,7 +2321,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '49D8C605-2985-4BF6-8105-2D4A30BE9C8F', id: '65C59409-2A54-4ED8-B9E1-8132F2A8180A',
name: 'menuitem18', name: 'menuitem18',
text: '数据选择视图', text: '数据选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2339,7 +2339,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2339,7 +2339,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F02B9326-87A7-4089-988E-0CF7C30722D9', id: 'B2E0242E-ED21-443D-A7D5-ED36CE78B0F4',
name: 'menuitem27', name: 'menuitem27',
text: '索引选择视图', text: '索引选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2359,7 +2359,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2359,7 +2359,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'F100F672-956B-4BDE-9760-7F6CCA391439', id: 'DEB284EE-0C00-40AA-9E2E-74FDB728B49E',
name: 'menuitem69', name: 'menuitem69',
text: '工作流', text: '工作流',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2377,7 +2377,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2377,7 +2377,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'BE4A8990-19E7-446C-AE03-8909A9C0B5B7', id: 'DBA6ACEE-1536-4BB5-B383-F9CFCBDC448D',
name: 'menuitem30', name: 'menuitem30',
text: '工作流动态导航视图', text: '工作流动态导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2395,7 +2395,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2395,7 +2395,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '5A5ADF6D-30C7-422D-AC84-1239242E23E6', id: '74F3F16F-DEB5-46AA-AFCA-6C6B5D96E42D',
name: 'menuitem31', name: 'menuitem31',
text: '工作流启动', text: '工作流启动',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2413,7 +2413,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2413,7 +2413,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '2FA5728D-609E-4F74-90CF-7B53FFBD13AA', id: '51AFEDFF-44FE-4ADC-9DE5-23DAF35EFC57',
name: 'menuitem21', name: 'menuitem21',
text: '工作流动态操作视图', text: '工作流动态操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2433,7 +2433,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2433,7 +2433,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'C9BA0526-73DB-4DB9-8536-E94305079C7F', id: '12C15578-7086-41A9-B87D-FAF31E467E4F',
name: 'menuitem11', name: 'menuitem11',
text: '其他视图', text: '其他视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2451,7 +2451,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2451,7 +2451,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '91EE379B-B8F1-445A-9ABF-D0B5976D7D91', id: '1C50F814-4687-45D3-896A-0A1B61D11987',
name: 'menuitem98', name: 'menuitem98',
text: '自定义视图', text: '自定义视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2473,7 +2473,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2473,7 +2473,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'B0453C23-F1D0-41B7-86EC-732E13FA36F2', id: 'E9C8E90B-364D-4247-B3AF-7158E1E91B12',
name: 'menuitem153', name: 'menuitem153',
text: '逻辑', text: '逻辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2491,7 +2491,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2491,7 +2491,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'B02D1BAA-7E8C-45DE-B857-7BF9F660D474', id: 'CF313F1A-F466-4C01-B00D-A9057BD93D10',
name: 'menuitem154', name: 'menuitem154',
text: '应用功能', text: '应用功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2509,7 +2509,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2509,7 +2509,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '8D1A106B-5777-4476-9B4F-9E953839848A', id: '745DE533-B1B1-46FA-A035-99EAFDD2DF85',
name: 'menuitem127', name: 'menuitem127',
text: '打开应用视图', text: '打开应用视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2527,7 +2527,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2527,7 +2527,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '1E5E1E19-D6F8-4F96-A7A8-41A61F9FC431', id: 'C91CE556-8861-4236-84DF-53815562400F',
name: 'menuitem147', name: 'menuitem147',
text: '打开HTML页面', text: '打开HTML页面',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2545,7 +2545,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2545,7 +2545,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A8284D83-367B-40E3-AA58-F8E06325811E', id: '41351F80-3400-4CB6-85FD-9774BA133138',
name: 'menuitem160', name: 'menuitem160',
text: '执行JavaScript', text: '执行JavaScript',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2565,7 +2565,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2565,7 +2565,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '2B1AA9E7-C99E-4BE2-A77C-1348808B0FD8', id: '0A02BDFA-6234-453A-9CFB-45D980334F96',
name: 'menuitem155', name: 'menuitem155',
text: '界面行为', text: '界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2583,7 +2583,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2583,7 +2583,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '7B45AAEC-9566-4245-AD9F-8748FEF6EA3F', id: 'E179B5F9-CFF4-40A0-8BAF-407A91C4D0E7',
name: 'menuitem181', name: 'menuitem181',
text: '前台界面行为', text: '前台界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2601,7 +2601,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2601,7 +2601,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '810DFC4C-A6BF-42A2-8CD0-BDE5228775E6', id: 'E6FE3168-4A51-4727-93E5-A21065077579',
name: 'menuitem182', name: 'menuitem182',
text: '后台界面行为', text: '后台界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2623,7 +2623,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2623,7 +2623,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '0C8FB2C3-9BDE-4045-B6A1-B27A9C271F25', id: '7B75F84B-AD51-4339-A4E1-C8E7FBD5A46F',
name: 'menuitem2', name: 'menuitem2',
text: '更多', text: '更多',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2641,7 +2641,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2641,7 +2641,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '418046D9-9D61-4F1D-B31B-1F621766880D', id: '4E85F6A2-2467-4320-B831-866F27B00686',
name: 'menuitem19', name: 'menuitem19',
text: '临时模式', text: '临时模式',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2659,7 +2659,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2659,7 +2659,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '7A4FA091-0C87-4BD9-A60E-BD0EDAF7166D', id: '2AE12804-05A2-4848-BAA8-724D1DB2CE34',
name: 'menuitem46', name: 'menuitem46',
text: '数据导出导入', text: '数据导出导入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2677,7 +2677,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2677,7 +2677,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '913A0535-5F72-4CB7-9442-FA9253C8603F', id: 'B16ACB99-87F5-46CA-88A0-FEE426A31923',
name: 'menuitem67', name: 'menuitem67',
text: '索引实体', text: '索引实体',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2695,7 +2695,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2695,7 +2695,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CF61372C-DD8A-4879-8F59-179BB98325DD', id: 'F630C504-E5AA-41D7-AA30-0CC5DFAFFBDC',
name: 'menuitem184', name: 'menuitem184',
text: '主状态', text: '主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2713,7 +2713,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2713,7 +2713,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '5950049F-671E-4E05-A12E-013B386B8484', id: '96AC8A9A-7FF9-4C49-8610-EB948CA35253',
name: 'menuitem70', name: 'menuitem70',
text: '表格主状态', text: '表格主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2731,7 +2731,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2731,7 +2731,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'D14D2A2B-4DC1-41D9-BEDC-48A0529E563E', id: 'EBB4BC71-4436-47EE-8EE5-90ABAED1E8EC',
name: 'menuitem148', name: 'menuitem148',
text: '列表主状态', text: '列表主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2749,7 +2749,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2749,7 +2749,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F00C9D4E-5F2A-478A-87A0-306424DA9BF3', id: '279BE957-7FC4-42FC-B25B-A8C8D9453737',
name: 'menuitem183', name: 'menuitem183',
text: '数据主状态', text: '数据主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2767,7 +2767,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2767,7 +2767,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '00E7F2E5-CAFC-4C21-8BE1-CAFA6906D8E1', id: 'F2606F5B-CF28-4AF3-81AD-93539744823A',
name: 'menuitem28', name: 'menuitem28',
text: '日历主状态', text: '日历主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2785,7 +2785,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2785,7 +2785,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CD607D93-B0B7-47A2-9AAC-5F9E08245C02', id: 'A8EEAB9D-85F8-4FB6-85F0-14A8ADB02567',
name: 'menuitem29', name: 'menuitem29',
text: '树主状态', text: '树主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2807,7 +2807,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2807,7 +2807,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'FD41BEDF-B105-43EA-AE94-C826411F9F55', id: 'C4E576F3-FBD2-459C-8D48-52D5F2EAB039',
name: 'menuitem22', name: 'menuitem22',
text: '测试', text: '测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2825,7 +2825,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2825,7 +2825,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '966D5DE9-6EF7-40EC-9CA5-8253F3701340', id: 'D2872250-31D3-4C64-A196-8616E1D1125C',
name: 'menuitem23', name: 'menuitem23',
text: '卡片导航', text: '卡片导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2843,7 +2843,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2843,7 +2843,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '91B16883-62D9-4317-936F-26FEF61EDAF6', id: '666BAE66-76EA-4574-81FC-9FD788E1FB23',
name: 'menuitem24', name: 'menuitem24',
text: '表单嵌入卡片视图', text: '表单嵌入卡片视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2861,7 +2861,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2861,7 +2861,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '8DAD1EA0-6D77-43B1-AEBE-FD1B85A6C7D4', id: 'DFBC5669-2ED2-427D-8D47-EFD1F3E0BF47',
name: 'menuitem25', name: 'menuitem25',
text: '关系界面刷新主表单', text: '关系界面刷新主表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2881,7 +2881,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2881,7 +2881,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '9B1F217D-8A8B-4E64-AA7B-5250993B36D1', id: 'E175D786-50C7-41A2-94CE-FA7B4E53BDEF',
name: 'menuitem66', name: 'menuitem66',
text: '视图布局面板测试', text: '视图布局面板测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2899,7 +2899,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2899,7 +2899,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'CD0F4CE8-2B9F-4225-9C72-0A212CC9DF4F', id: '4ECC40C2-A671-42DE-A711-D51C9C210A2B',
name: 'menuitem125', name: 'menuitem125',
text: '测试表单自定义布局多媒体', text: '测试表单自定义布局多媒体',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2917,7 +2917,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2917,7 +2917,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'ACA2B672-FF2E-49D2-BDCF-A3D9716FF611', id: '89230158-6C32-452E-91B3-395910F7474D',
name: 'menuitem126', name: 'menuitem126',
text: '自定义导航', text: '自定义导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2935,7 +2935,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2935,7 +2935,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'FE1416F9-4F7C-4855-A477-2623C5F167EC', id: '14553AF5-C156-4763-914C-95C67C9CF1C7',
name: 'menuitem130', name: 'menuitem130',
text: '布局面板组件测试', text: '布局面板组件测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2953,7 +2953,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2953,7 +2953,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C292C90F-EE51-4328-BCEB-6B627447FDA1', id: 'C484800D-366A-4E51-8EB7-3C8C880084FD',
name: 'menuitem131', name: 'menuitem131',
text: '编辑视图(左右关系)', text: '编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2971,7 +2971,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2971,7 +2971,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '87358BC9-6567-4BE6-ADC8-92728C3A80A3', id: '73593064-1AE3-4F5D-B762-BDE3631D6E92',
name: 'menuitem142', name: 'menuitem142',
text: '列表视图(自定义面板)', text: '列表视图(自定义面板)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2989,7 +2989,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -2989,7 +2989,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'DCDE2773-61D2-400A-9D4E-4251E2081B2F', id: '8939891C-C509-415C-B76E-07C2135E613B',
name: 'menuitem189', name: 'menuitem189',
text: '测试布局面板(树导航)', text: '测试布局面板(树导航)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3007,7 +3007,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3007,7 +3007,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '5846218A-08E2-44AC-A7BF-1FB0E369C4C6', id: '315439DB-BB36-4094-A61E-CE3831725BB4',
name: 'menuitem190', name: 'menuitem190',
text: '视图', text: '视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3025,7 +3025,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3025,7 +3025,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '58D994A8-E03B-4E85-9D6A-16339DF9D3C3', id: '85C37D27-D810-462C-81FE-BDE43E23EC8D',
name: 'menuitem191', name: 'menuitem191',
text: '单数据视图', text: '单数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3043,7 +3043,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3043,7 +3043,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'A243C996-F250-47FA-A312-55C620A1ADD0', id: '64BEFC7F-C291-49C1-A236-5364BA9D13FA',
name: 'menuitem192', name: 'menuitem192',
text: '实体向导视图', text: '实体向导视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3061,7 +3061,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3061,7 +3061,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '8B389432-02BC-4544-8D40-3F718A59C3B0', id: 'F922CCF0-180D-46C0-A67B-9D5E288DEE62',
name: 'menuitem193', name: 'menuitem193',
text: '实体编辑视图', text: '实体编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3079,7 +3079,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3079,7 +3079,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'A302229A-6825-4F05-B7AC-28BA692917B9', id: 'EC85806E-2370-437D-A0B3-C06EC98F7207',
name: 'menuitem194', name: 'menuitem194',
text: '实体编辑视图(分页关系)', text: '实体编辑视图(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3097,7 +3097,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3097,7 +3097,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '085D96AA-D9B8-4545-90BC-09A873DFC76F', id: '1F572FB9-844D-457B-92AA-19DF58AEFCE1',
name: 'menuitem195', name: 'menuitem195',
text: '实体编辑视图(上下关系)', text: '实体编辑视图(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3115,7 +3115,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3115,7 +3115,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'EB6EF491-226A-4540-846A-2C0A1D454AF6', id: '9E07FAD5-EA30-47B2-9A10-533BDC112244',
name: 'menuitem196', name: 'menuitem196',
text: '实体编辑视图(左右关系)', text: '实体编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3133,7 +3133,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3133,7 +3133,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '4C8DC872-5ABA-4E3E-AA3D-3E7D425AFD4B', id: '0BC177F1-041B-45CD-B38C-9E1ED1273600',
name: 'menuitem197', name: 'menuitem197',
text: '实体分页导航视图', text: '实体分页导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3151,7 +3151,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3151,7 +3151,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '81F73E31-D419-4DAC-A28B-ECA9B5D7344E', id: '457F2AF3-0440-4397-B31C-0CFE6C950CAB',
name: 'menuitem198', name: 'menuitem198',
text: '实体数据看板视图', text: '实体数据看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3169,7 +3169,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3169,7 +3169,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '207F18F4-D1DA-48D7-B536-3AA3ED9BF22A', id: '4F892F70-882D-4010-AFE5-88763D2B3B89',
name: 'menuitem199', name: 'menuitem199',
text: '实体选项操作视图', text: '实体选项操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3189,7 +3189,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3189,7 +3189,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '31E67AD2-4C39-478E-AFB7-30CDBE589332', id: '26167393-6024-4333-85BC-190AE97B56A9',
name: 'menuitem200', name: 'menuitem200',
text: '多数据视图', text: '多数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3207,7 +3207,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3207,7 +3207,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: 'FA98B1A9-F936-45FA-92DC-03679CB0936C', id: 'DB35DE83-0109-4322-A185-0026B4A4D48D',
name: 'menuitem122', name: 'menuitem122',
text: '表格视图面板', text: '表格视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3225,7 +3225,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3225,7 +3225,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CF483D07-7B49-4F14-8F02-4FDC4F6F3171', id: 'F8FB1EA1-3B81-4A45-B3F7-648ABEF7361C',
name: 'menuitem202', name: 'menuitem202',
text: '实体多表单编辑视图', text: '实体多表单编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3243,7 +3243,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3243,7 +3243,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '3E64E4F5-4386-4F7C-BDC7-AD6B77125E1A', id: '3CD63AAA-A874-4B5C-AA16-30466B0C41E7',
name: 'menuitem203', name: 'menuitem203',
text: '实体甘特视图', text: '实体甘特视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3261,7 +3261,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3261,7 +3261,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'B1DAF7B7-C7C5-4343-BFBE-BE464CB8F828', id: 'CDB9B2A4-4CC2-4F0E-AE82-E652E3B87FD6',
name: 'menuitem204', name: 'menuitem204',
text: '实体列表视图', text: '实体列表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3279,7 +3279,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3279,7 +3279,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '0FF18E81-1F46-4E78-8F29-36FA7C87C652', id: '9118E2F4-6021-4D2B-A313-712FF060C265',
name: 'menuitem187', name: 'menuitem187',
text: '测试布局面板(日历视图)', text: '测试布局面板(日历视图)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3297,7 +3297,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3297,7 +3297,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '982CFF69-2955-4A22-BDE2-195F3EFFCF51', id: '9DF77D6A-0F57-4353-8DB0-13F90BC787D2',
name: 'menuitem206', name: 'menuitem206',
text: '实体看板视图', text: '实体看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3315,7 +3315,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3315,7 +3315,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '64F3DA00-224C-4FCC-9A05-02C41AFCF795', id: '45F83512-EF05-4EFD-9D7C-32D35B25D976',
name: 'menuitem207', name: 'menuitem207',
text: '实体树表格视图', text: '实体树表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3333,7 +3333,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3333,7 +3333,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '183862E4-7AA9-400F-B804-B5E2CA0DAE1F', id: '439C87B1-A069-4E98-B986-E15879A47F29',
name: 'menuitem185', name: 'menuitem185',
text: '测试布局面板(树视图)', text: '测试布局面板(树视图)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3351,7 +3351,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3351,7 +3351,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '42E61A64-6189-4CA2-AB4C-E30748285465', id: '9DAA57D2-0D6B-4FD3-8B50-0A53FBCD4BAC',
name: 'menuitem159', name: 'menuitem159',
text: '卡片视图(布局面板)', text: '卡片视图(布局面板)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3369,7 +3369,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3369,7 +3369,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '5417AA57-30B7-45EA-9FCF-ECFE892E11DD', id: 'FFF49CBD-CAEB-440F-96E8-467D02C5445D',
name: 'menuitem188', name: 'menuitem188',
text: '测试布局面板(图表)', text: '测试布局面板(图表)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3389,7 +3389,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3389,7 +3389,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '26998A79-3BDA-4CB3-A05C-B59CA88FD23D', id: '8E373BE6-A54F-489D-8840-3A0C28638BA3',
name: 'menuitem211', name: 'menuitem211',
text: '导航视图', text: '导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3407,7 +3407,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3407,7 +3407,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '3FA84B36-C8BA-4FBC-8343-448F3AF8D2B7', id: '53405068-02C4-4C83-8E6D-BA0B8F0907A1',
name: 'menuitem215', name: 'menuitem215',
text: '实体表格导航视图', text: '实体表格导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3425,7 +3425,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3425,7 +3425,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'C8264CFA-4798-402F-96C2-2A0CB44687CD', id: 'D4694DF5-4F05-4BCF-8055-934863B183F9',
name: 'menuitem216', name: 'menuitem216',
text: '实体列表导航视图', text: '实体列表导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3443,7 +3443,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3443,7 +3443,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '2F5E21F4-CEB3-432D-B4F5-D67C89BC7CB8', id: 'AB602B8F-560B-4ADD-8585-090F552931BD',
name: 'menuitem217', name: 'menuitem217',
text: '实体卡片导航视图', text: '实体卡片导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3461,7 +3461,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3461,7 +3461,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '3745DC7E-E980-42A0-8647-4EB781A8EDC3', id: '5D2158F6-3BE8-41F1-A62E-D49CB0A89583',
name: 'menuitem218', name: 'menuitem218',
text: '实体日历导航视图', text: '实体日历导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3479,7 +3479,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3479,7 +3479,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'CC8F9D11-491C-43AA-8054-8AE1C2976F29', id: '78EA3065-DE2E-4315-AFAE-8289BC6EB27B',
name: 'menuitem219', name: 'menuitem219',
text: '实体树导航视图', text: '实体树导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3499,7 +3499,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3499,7 +3499,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '6C8A913E-73EC-4776-95A5-F9AD5636A786', id: '3AB505BE-FCCC-4B22-A1D3-45FCF473FED4',
name: 'menuitem220', name: 'menuitem220',
text: '选择视图', text: '选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3517,7 +3517,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3517,7 +3517,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '86595F19-09A7-44A4-BFDE-D2AFC5F52725', id: '5477F814-811E-4716-A46F-B4BA496AF279',
name: 'menuitem221', name: 'menuitem221',
text: '数据选择视图', text: '数据选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3535,7 +3535,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3535,7 +3535,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F0F85DDF-B9C6-4B6C-8FDF-C5996D2E1F0D', id: '32A12DA2-AEE6-4067-AFA9-044A8526321A',
name: 'menuitem222', name: 'menuitem222',
text: '索引选择视图', text: '索引选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3555,7 +3555,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3555,7 +3555,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: 'F2CCABE2-A361-4D4A-BD8E-C2B11D6387BC', id: 'FEAFDCA2-4331-4A7D-9AE0-BCACDAA9A898',
name: 'menuitem223', name: 'menuitem223',
text: '工作流', text: '工作流',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3573,7 +3573,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3573,7 +3573,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '1F070739-C1F0-484B-8EDF-C011DF8C08BA', id: '5FAD0EA7-F9EC-4FB8-81F9-D6DF353EE307',
name: 'menuitem224', name: 'menuitem224',
text: '工作流动态导航视图', text: '工作流动态导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3591,7 +3591,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3591,7 +3591,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: 'F16FB4C9-405D-428E-9096-8369CD5FDE33', id: 'E4D5431B-9325-4878-9EB5-CD214A93FFAF',
name: 'menuitem225', name: 'menuitem225',
text: '工作流启动', text: '工作流启动',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3609,7 +3609,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3609,7 +3609,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
}, },
{ {
id: '9B5D04C8-C50C-40C0-90D7-BB1D4A79D363', id: '486FB200-558C-4387-8D16-287B47AB1600',
name: 'menuitem226', name: 'menuitem226',
text: '工作流动态操作视图', text: '工作流动态操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3629,7 +3629,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3629,7 +3629,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
{ {
id: '33F2F923-6A88-46B5-AFA5-8EEECB418420', id: '930EA152-2130-4388-8233-9A3E33535EF8',
name: 'menuitem227', name: 'menuitem227',
text: '其他视图', text: '其他视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3647,7 +3647,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3647,7 +3647,7 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
resourcetag: '', resourcetag: '',
items: [ items: [
{ {
id: '6293C0B4-37D0-4CEF-8AA2-8193C33A4FE8', id: '055E4BE3-1CBC-408B-A1B2-A54AABC52E16',
name: 'menuitem230', name: 'menuitem230',
text: '自定义视图', text: '自定义视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3667,6 +3667,24 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => { ...@@ -3667,6 +3667,24 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
], ],
}, },
], ],
},
{
id: 'F0C9163C-0840-45AE-9D8C-0022448B282C',
name: 'menuitem201',
text: '测试界面逻辑',
type: 'MENUITEM',
counterid: '',
tooltip: '测试界面逻辑',
expanded: false,
separator: false,
hidden: false,
hidesidebar: false,
opendefault: false,
iconcls: '',
icon: '',
textcls: '',
appfunctag: 'UsrAppFunc1108357066',
resourcetag: '',
}, },
], ],
}, },
......
...@@ -55,6 +55,14 @@ export class PanelFieldModel extends PanelDetailModel { ...@@ -55,6 +55,14 @@ export class PanelFieldModel extends PanelDetailModel {
* @memberof PanelFieldModel * @memberof PanelFieldModel
*/ */
public dataItemName: string | undefined = undefined; public dataItemName: string | undefined = undefined;
/**
* 绘制模式
*
* @private
* @type {('TEXT' | 'HEADING1' | 'HEADING2' | 'HEADING3' | 'HEADING4' | 'HEADING5' | 'HEADING6' | 'PARAGRAPH')}
* @memberof PanelFieldModel
*/
public renderMode: 'TEXT' | 'HEADING1' | 'HEADING2' | 'HEADING3' | 'HEADING4' | 'HEADING5' | 'HEADING6' | 'PARAGRAPH' = 'TEXT';
/** /**
* Creates an instance of PanelFieldModel. * Creates an instance of PanelFieldModel.
...@@ -69,6 +77,7 @@ export class PanelFieldModel extends PanelDetailModel { ...@@ -69,6 +77,7 @@ export class PanelFieldModel extends PanelDetailModel {
this.enableCond = opts.enableCond; this.enableCond = opts.enableCond;
this.fieldState = opts.fieldState; this.fieldState = opts.fieldState;
this.dataItemName = opts.dataItemName; this.dataItemName = opts.dataItemName;
this.renderMode = opts.renderMode;
} }
/** /**
......
<template>
<div class="app-view-layout ibizbooktest-logic-custom-view" v-loading="isLayoutLoadding" :style="{height: '100%', width: '100%', overflow: 'auto'}">
<template v-show="!isLayoutLoadding">
<app-scroll-container name="container_scroll1" :layoutModelDetails="layoutModelDetails">
<template #container_scroll_main1>
<app-scroll-container name="container_scroll_main1" :layoutModelDetails="layoutModelDetails">
<template #form>
<app-ctrl-pos name="form" :layoutModelDetails="layoutModelDetails">
<view_form
:viewState="viewState"
:viewparams="viewparams"
:context="context"
:viewCtx="viewCtx"
:autosave="false"
:viewtag="viewtag"
:showBusyIndicator="true"
updateAction="Update"
removeAction="Remove"
loaddraftAction="GetDraft"
loadAction="Get"
createAction="Create"
WFSubmitAction=""
WFStartAction=""
style=''
name="form"
ref='form'
@closeview="closeView($event)">
</view_form>
</app-ctrl-pos>
</template>
</app-scroll-container>
</template>
<template #container_scroll_header1>
<app-scroll-container name="container_scroll_header1" :layoutModelDetails="layoutModelDetails">
<template #container_grid1>
<app-simpleflex-container name="container_grid1" :layoutModelDetails="layoutModelDetails">
<template #container1>
<app-simpleflex-container name="container1" :layoutModelDetails="layoutModelDetails">
<template #view_pagecaption>
<app-preset-caption name="view_pagecaption" :layoutModelDetails="layoutModelDetails"> 测试界面逻辑 </app-preset-caption>
</template>
</app-simpleflex-container>
</template>
<template #container2>
<app-simpleflex-container name="container2" :layoutModelDetails="layoutModelDetails">
</app-simpleflex-container>
</template>
</app-simpleflex-container>
</template>
</app-scroll-container>
</template>
</app-scroll-container>
</template>
</div>
</template>
<script lang='tsx'>
import { Vue, Component, Prop, Provide, Emit, Watch,Inject } from 'vue-property-decorator';
import { UIActionTool,Util } from '@/utils';
import NavDataService from '@/service/app/navdata-service';
import { Subject,Subscription } from 'rxjs';
import IBIZBOOKService from '@/service/ibizbook/ibizbook-service';
import IBIZBOOKAuthService from '@/authservice/ibizbook/ibizbook-auth-service';
import IBIZBOOKUIService from '@/uiservice/ibizbook/ibizbook-ui-service';
import { PanelContainerModel, PanelRawitemModel, PanelFieldModel, PanelControlModel, PanelButtonModel, PanelUserControlModel, PanelTabPanelModel, PanelTabPageModel, PanelCtrlPosModel} from '@/model/panel-detail';
@Component({
components: {
},
})
export default class IBIZBOOKTestLogicCustomViewBase extends Vue {
/**
* 实体服务对象
*
* @type {IBIZBOOKService}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public appEntityService: IBIZBOOKService = new IBIZBOOKService;
/**
* 实体UI服务对象
*
* @type IBIZBOOKUIService
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public appUIService: IBIZBOOKUIService = new IBIZBOOKUIService();
/**
* 数据变化
*
* @param {*} val
* @returns {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Emit()
public viewDatasChange(val: any):any {
return val;
}
/**
* 传入视图上下文
*
* @type {string}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Prop() public viewdata!: string;
/**
* 传入视图参数
*
* @type {string}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Prop() public viewparam!: string;
/**
* 视图默认使用
*
* @type {boolean}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Prop({ default: true }) public viewDefaultUsage!: boolean;
/**
* 视图默认使用
*
* @type {string}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Inject({from:'navModel',default: 'tab'})
public navModel!:string;
/**
* 视图标识
*
* @type {string}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public viewtag: string = 'E74D4E6C-CFF5-4CBA-8195-FD943B3B910F';
/**
* 视图类型
*
* @type {string}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public viewType: string = 'DECUSTOMVIEW';
/**
* 自定义视图导航上下文集合
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public customViewNavContexts:any ={
};
/**
* 自定义视图导航参数集合
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public customViewParams:any ={
};
/**
* 视图模型数据
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public model: any = {
srfCaption: 'entities.ibizbook.views.testlogiccustomview.caption',
srfTitle: 'entities.ibizbook.views.testlogiccustomview.title',
srfSubTitle: 'entities.ibizbook.views.testlogiccustomview.subtitle',
dataInfo: ''
}
/**
* 视图参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Watch('viewparam',{immediate: true, deep: true})
onParamData(newVal: any, oldVal: any) {
if(newVal){
this.viewparams = {};
if(typeof newVal == 'string') {
Object.assign(this.viewparams, JSON.parse(this.viewparam));
}else{
this.viewparams = Util.deepCopy(this.viewparam);
}
}
}
/**
* 处理应用上下文变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Watch('viewdata')
onViewData(newVal: any, oldVal: any) {
const _this: any = this;
if (!Object.is(newVal, oldVal) && _this.engine) {
this.$nextTick(()=>{
_this.parseViewParam();
_this.engine.load();
});
} else if(!Object.is(newVal, oldVal) && _this.refresh && _this.refresh instanceof Function) {
_this.refresh();
}
}
/**
* 容器模型
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public containerModel: any = {
view_form: { name: 'form', type: 'FORM' },
};
/**
* 视图操作参数
*
* @type {*}
* @readonly
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
get viewCtx() {
return {
appGlobal: this.$store.getters.getAppGlobal(),
viewGlobal: {},
viewNavData: {},
viewNavContext: this.context,
viewNavParam: this.viewparams,
messageBox: this.$msgbox,
view: this,
}
}
/**
* 计数器刷新
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public counterRefresh(){
const _this:any =this;
if(_this.counterServiceArray && _this.counterServiceArray.length >0){
_this.counterServiceArray.forEach((item:any) =>{
if(item.refreshData && item.refreshData instanceof Function){
item.refreshData();
}
})
}
}
/**
* 视图状态订阅对象
*
* @public
* @type {Subject<{action: string, data: any}>}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public viewState: Subject<ViewState> = new Subject();
/**
* 视图布局顶级成员名称
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public rootLayoutDetailNames: string[] = [ 'container_scroll1' ];
/**
* 视图布局面板项模型对象
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public layoutItems:any = {
form:{ name: 'form', type: 'VIEWLAYOUT', caption: '表单', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_main1', panel: this },
container_scroll_main1:{ name: 'container_scroll_main1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['form'] , dataRegionType: 'INHERIT' },
view_pagecaption:{ name: 'view_pagecaption', type: 'VIEWLAYOUT', caption: '页面标题', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , fieldState: '0', predefinedType: 'VIEW_PAGECAPTION', renderMode: 'HEADING1', dataItemName:'', },
container1:{ name: 'container1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:3, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['view_pagecaption'] , dataRegionType: 'INHERIT' },
container2:{ name: 'container2', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:9, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:[] , dataRegionType: 'INHERIT' },
container_grid1:{ name: 'container_grid1', type: 'VIEWLAYOUT', caption: '栅格容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_header1', panel: this , details:['container1','container2'] , dataRegionType: 'INHERIT' },
container_scroll_header1:{ name: 'container_scroll_header1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'NORTH', layoutHeight:80, heightMode:'PX', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['container_grid1'] , dataRegionType: 'INHERIT' },
container_scroll1:{ name: 'container_scroll1', type: 'VIEWLAYOUT', caption: '滚动条容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, panel: this , details:['container_scroll_main1','container_scroll_header1'] , dataRegionType: 'INHERIT' }
};
/**
* 视图布局是否加载
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public isLayoutLoadding: boolean = true;
/**
* 视图布局数据
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public layoutData:any = {};
/**
* 视图布局面板模型对象
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public layoutModelDetails:any = {};
/**
* 初始化布局
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public async initLayout() {
if (this.rootLayoutDetailNames.length > 0) {
for (let i = 0; i < this.rootLayoutDetailNames.length; i++) {
const name = this.rootLayoutDetailNames[i];
const rootItem = this.layoutItems[name];
if (!rootItem) {
return;
}
await this.initLayoutItem(rootItem);
}
}
return true;
}
/**
* 初始化布局项
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public async initLayoutItem(layoutModelItem: any, index: number = 0) {
const { name } = layoutModelItem;
const layoutModelDetail = Util.getLayoutItemInstance(layoutModelItem);
if (!index) {
await layoutModelDetail.load(this.context, this.viewparams);
this.$set(this.layoutModelDetails, name, layoutModelDetail);
this.$set(this.layoutData, name, layoutModelDetail.getData());
} else {
layoutModelDetail.setIndex(index);
await layoutModelDetail.load(this.context, this.viewparams);
this.$set(this.layoutModelDetails, `${name}_${index}`, layoutModelDetail);
this.$set(this.layoutData, `${name}_${index}`, layoutModelDetail.getData());
}
if (layoutModelDetail && layoutModelDetail.details) {
if (layoutModelDetail.dataRegionType === 'MULTIDATA') {
const multiData = layoutModelDetail.getData();
if (multiData && multiData.length > 0) {
for (let i = 0; i < multiData.length; i++) {
for (let j = 0; j < layoutModelDetail.details.length; j++) {
const key = layoutModelDetail.details[j];
if (this.layoutItems[key]) {
await this.initLayoutItem(this.layoutItems[key], i);
}
}
}
}
} else {
for (let i = 0; i < layoutModelDetail.details.length; i++) {
const key = layoutModelDetail.details[i];
if (this.layoutItems[key]) {
await this.initLayoutItem(this.layoutItems[key],index);
}
}
}
}
}
/**
* 处理值改变
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public handleValueChange(args: { name: string, value: any }) {
if (!args || !args.name || Object.is(args.name, '') || !this.layoutData.hasOwnProperty(args.name)) {
return;
}
const {name,value} = args;
this.layoutData[name] = value;
this.layoutModelDetails[name].setData(value);
this.panelLogic(name);
}
/**
* 面板逻辑
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public panelLogic(name: string): void {
}
/**
* 获取按钮行为xData
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public getButtonXData(name: string): any {
let xData = null;
let curLayoutModel = null;
Object.values(this.layoutModelDetails).forEach((layoutModel: any) => {
if (layoutModel.name == name) {
curLayoutModel = layoutModel;
}
})
// 获取数据容器
if (curLayoutModel) {
const getDataArea = (cLayoutModel: any): any => {
let dataArea = null;
let parentLayoutModel = null;
Object.values(this.layoutModelDetails).forEach((pLayoutModel: any) => {
if (pLayoutModel.name == cLayoutModel.parentName) {
parentLayoutModel = pLayoutModel;
if (parentLayoutModel.dataRegionType == 'SINGLEDATA' || parentLayoutModel.dataRegionType == 'MULTIDATA') {
dataArea = parentLayoutModel;
}
}
})
if (!dataArea && parentLayoutModel) {
dataArea = getDataArea(parentLayoutModel);
}
return dataArea;
}
xData = getDataArea(curLayoutModel);
}
// 获取当前视图
if (!xData) {
xData = this;
}
return xData;
}
/**
* 处理按钮点击
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public handleButtonClick(name: string, $event?: any) {
const datas: any[] = [this.layoutData];
const xData: any = this.getButtonXData(name);
const paramJO: any = {};
const contextJO: any = {};
const _this: any = this;
}
/**
* 引擎初始化
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public engineInit(): void {
}
/**
* 应用导航服务
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public navDataService = NavDataService.getInstance();
/**
* 导航服务事件
*
* @public
* @type {(Subscription | undefined)}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public serviceStateEvent: Subscription | undefined;
/**
* 门户部件状态对象
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
@Prop() public portletState?: any;
/**
* 门户部件状态事件
*
* @public
* @type {(Subscription | undefined)}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public portletStateEvent: Subscription | undefined;
/**
* 门户部件状态事件
*
* @public
* @type {(Subscription | undefined)}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public formDruipartEvent: Subscription | undefined;
/**
* 应用上下文
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public context:any = {};
/**
* 视图参数
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public viewparams:any = {};
/**
* 视图缓存数据
*
* @type {*}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public viewCacheData:any;
/**
* 计数器服务对象集合
*
* @type {Array<*>}
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public counterServiceArray:Array<any> = [];
/**
* 解析视图参数
*
* @public
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public parseViewParam(inputvalue:any = null): void {
for(let key in this.context){
delete this.context[key];
}
if(this.$store.getters.getAppData() && this.$store.getters.getAppData().context){
Object.assign(this.context,this.$store.getters.getAppData().context);
}
if (!this.viewDefaultUsage && this.viewdata && !Object.is(this.viewdata, '')) {
if(typeof this.viewdata == 'string') {
Object.assign(this.context, JSON.parse(this.viewdata));
}
if(this.context && this.context.srfparentdename){
Object.assign(this.viewparams,{srfparentdename:this.context.srfparentdename});
}
if(this.context && this.context.srfparentkey){
Object.assign(this.viewparams,{srfparentkey:this.context.srfparentkey});
}
this.handleCustomViewData();
return;
}
const path = (this.$route.matched[this.$route.matched.length - 1]).path;
const keys: Array<any> = [];
const curReg = this.$pathToRegExp.pathToRegexp(path, keys);
const matchArray = curReg.exec(this.$route.path);
let tempValue: Object = {};
keys.forEach((item: any, index: number) => {
if(matchArray[index + 1]){
Object.defineProperty(tempValue, item.name, {
enumerable: true,
value: decodeURIComponent(matchArray[index + 1])
});
}
});
this.$viewTool.formatRouteParams(tempValue,this.$route,this.context,this.viewparams);
if(inputvalue){
Object.assign(this.context,{'ibizbook':inputvalue});
}
//初始化视图唯一标识
Object.assign(this.context,{srfsessionid:this.$util.createUUID()});
this.handleCustomViewData();
//初始化导航数据
this.initNavDataWithRoute();
}
/**
* 处理自定义视图数据
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public handleCustomViewData(){
if(Object.keys(this.customViewNavContexts).length > 0){
Object.keys(this.customViewNavContexts).forEach((item:any) =>{
let tempContext:any = {};
let curNavContext:any = this.customViewNavContexts[item];
this.handleCustomDataLogic(curNavContext,tempContext,item);
Object.assign(this.context,tempContext);
})
}
if(Object.keys(this.customViewParams).length > 0){
Object.keys(this.customViewParams).forEach((item:any) =>{
let tempParam:any = {};
let curNavParam:any = this.customViewParams[item];
this.handleCustomDataLogic(curNavParam,tempParam,item);
Object.assign(this.viewparams,tempParam);
})
}
}
/**
* 处理自定义视图数据逻辑
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public handleCustomDataLogic(curNavData:any,tempData:any,item:string){
// 直接值直接赋值
if(curNavData.isRawValue){
if(Object.is(curNavData.value,"null") || Object.is(curNavData.value,"")){
Object.defineProperty(tempData, item.toLowerCase(), {
value: null,
writable : true,
enumerable : true,
configurable : true
});
}else{
Object.defineProperty(tempData, item.toLowerCase(), {
value: curNavData.value,
writable : true,
enumerable : true,
configurable : true
});
}
}else{
// 先从导航上下文取数,没有再从导航参数(URL)取数,如果导航上下文和导航参数都没有则为null
if(this.context[(curNavData.value).toLowerCase()] != null){
Object.defineProperty(tempData, item.toLowerCase(), {
value: this.context[(curNavData.value).toLowerCase()],
writable : true,
enumerable : true,
configurable : true
});
}else{
if(this.viewparams[(curNavData.value).toLowerCase()] != null){
Object.defineProperty(tempData, item.toLowerCase(), {
value: this.viewparams[(curNavData.value).toLowerCase()],
writable : true,
enumerable : true,
configurable : true
});
}else{
Object.defineProperty(tempData, item.toLowerCase(), {
value: null,
writable : true,
enumerable : true,
configurable : true
});
}
}
}
}
/**
* 初始化导航数据(路由模式)
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public initNavDataWithRoute(data:any = null, isNew:boolean = false, isAlways:boolean = false){
if( isAlways || (this.viewDefaultUsage && Object.is(this.navModel,"route")) ){
this.navDataService.addNavData({id:'ibizbooktest-logic-custom-view',tag:this.viewtag,srfkey:isNew ? null : this.context.ibizbook,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath});
}
}
/**
* 初始化导航数据(分页模式)
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public initNavDataWithTab(data:any = null,isOnlyAdd:boolean = true, isAlways:boolean = false){
if( isAlways || (this.viewDefaultUsage && !Object.is(this.navModel,"route")) ){
this.navDataService.addNavDataByOnly({id:'ibizbooktest-logic-custom-view',tag:this.viewtag,srfkey:this.context.ibizbook,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath},isOnlyAdd);
}
}
/**
* Vue声明周期
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public created() {
this.afterCreated();
}
/**
* 执行created后的逻辑
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public afterCreated(){
let _this:any = this;
const secondtag = _this.$util.createUUID();
_this.$store.commit('viewaction/createdView', { viewtag: _this.viewtag, secondtag: secondtag });
_this.viewtag = secondtag;
_this.parseViewParam();
_this.serviceStateEvent = _this.navDataService.serviceState.subscribe(({ action,name, data }:{ action:string,name:any,data:any }) => {
if(!Object.is(name,'ibizbooktest-logic-custom-view')){
return;
}
if (Object.is(action, 'viewrefresh')) {
_this.$nextTick(()=>{
_this.parseViewParam(data);
if(_this.engine){
_this.engine.load();
}
});
}
});
if(_this.portletState){
_this.portletStateEvent = _this.portletState.subscribe((res:any) =>{
if(!Object.is(res.name,'IBIZBOOKTestLogicCustomView')){
return;
}
if(Object.is(res.action,'refresh') && _this.refresh && _this.refresh instanceof Function){
_this.refresh();
}
})
}
}
/**
* 销毁之前
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public beforeDestroy() {
this.$store.commit('viewaction/removeView', this.viewtag);
let _this: any = this
if (_this.serviceStateEvent) {
_this.serviceStateEvent.unsubscribe();
}
if (_this.portletStateEvent) {
_this.portletStateEvent.unsubscribe();
}
if (_this.engine) {
_this.engine.destroy();
}
}
/**
* Vue声明周期(组件初始化完毕)
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public mounted() {
this.afterMounted();
}
/**
* 执行mounted后的逻辑
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public afterMounted(){
const _this: any = this;
_this.initLayout().then((result: any) => {
_this.isLayoutLoadding = false;
_this.engineInit();
if (_this.loadModel && _this.loadModel instanceof Function) {
_this.loadModel();
}
})
}
/**
* 关闭视图
*
* @param {any[]} args
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public closeView(args: any[]): void {
let _view: any = this;
if (_view.viewdata) {
_view.$emit('viewdataschange', Array.isArray(args)?args:[args]);
_view.$emit('close', Array.isArray(args)?args:[args]);
} else if (_view.$tabPageExp) {
_view.$tabPageExp.onClose(_view.$route.fullPath);
}
}
/**
* 销毁视图回调
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public destroyed(){
this.afterDestroyed();
}
/**
* 执行destroyed后的逻辑
*
* @memberof IBIZBOOKTestLogicCustomViewBase
*/
public afterDestroyed(){
if(this.viewDefaultUsage){
let localStoreLength = Object.keys(localStorage);
if(localStoreLength.length > 0){
localStoreLength.forEach((item:string) =>{
if(item.startsWith(this.context.srfsessionid)){
localStorage.removeItem(item);
}
})
}
if(Object.is(this.navModel,"tab")){
this.navDataService.removeNavDataByTag(this.viewtag);
}
}
if (this.serviceStateEvent) {
this.serviceStateEvent.unsubscribe();
}
// 销毁计数器定时器
if(this.counterServiceArray && this.counterServiceArray.length >0){
this.counterServiceArray.forEach((item:any) =>{
if(item.destroyCounter && item.destroyCounter instanceof Function){
item.destroyCounter();
}
})
}
if(this.portletStateEvent){
this.portletStateEvent.unsubscribe();
}
if (this.formDruipartEvent) {
this.formDruipartEvent.unsubscribe();
}
this.viewState.complete();
}
}
</script>
<style lang='less'>
@import './ibizbooktest-logic-custom-view.less';
</style>
\ No newline at end of file
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBIZBOOKTestLogicCustomViewBase from './ibizbooktest-logic-custom-view-base.vue';
import view_form from '@widgets/ibizbook/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
if(!Object.is(vm.navModel,"route")){
vm.initNavDataWithTab(vm.viewCacheData);
}
vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag });
});
},
})
export default class IBIZBOOKTestLogicCustomView extends IBIZBOOKTestLogicCustomViewBase {
}
</script>
\ No newline at end of file
...@@ -137,6 +137,7 @@ export const PageComponents = { ...@@ -137,6 +137,7 @@ export const PageComponents = {
Vue.component('ibizsample0021-grid-view-layout', () => import('@pages/sample/ibizsample0021-grid-view-layout/ibizsample0021-grid-view-layout.vue')); Vue.component('ibizsample0021-grid-view-layout', () => import('@pages/sample/ibizsample0021-grid-view-layout/ibizsample0021-grid-view-layout.vue'));
Vue.component('ibizsample0021-wfdyna-action-view-layout', () => import('@pages/sample/ibizsample0021-wfdyna-action-view-layout/ibizsample0021-wfdyna-action-view-layout.vue')); Vue.component('ibizsample0021-wfdyna-action-view-layout', () => import('@pages/sample/ibizsample0021-wfdyna-action-view-layout/ibizsample0021-wfdyna-action-view-layout.vue'));
Vue.component('ibizbookcustom-view-layout', () => import('@pages/sample/ibizbookcustom-view-layout/ibizbookcustom-view-layout.vue')); Vue.component('ibizbookcustom-view-layout', () => import('@pages/sample/ibizbookcustom-view-layout/ibizbookcustom-view-layout.vue'));
Vue.component('ibizbooktest-logic-custom-view', () => import('@pages/sample/ibizbooktest-logic-custom-view/ibizbooktest-logic-custom-view.vue'));
Vue.component('ibizappviewgrid-view', () => import('@pages/sample/ibizappviewgrid-view/ibizappviewgrid-view.vue')); Vue.component('ibizappviewgrid-view', () => import('@pages/sample/ibizappviewgrid-view/ibizappviewgrid-view.vue'));
Vue.component('ibizappviewlist-view', () => import('@pages/sample/ibizappviewlist-view/ibizappviewlist-view.vue')); Vue.component('ibizappviewlist-view', () => import('@pages/sample/ibizappviewlist-view/ibizappviewlist-view.vue'));
Vue.component('ibizappctrlgrid-view', () => import('@pages/sample/ibizappctrlgrid-view/ibizappctrlgrid-view.vue')); Vue.component('ibizappctrlgrid-view', () => import('@pages/sample/ibizappctrlgrid-view/ibizappctrlgrid-view.vue'));
......
...@@ -2084,6 +2084,20 @@ const router = new Router({ ...@@ -2084,6 +2084,20 @@ const router = new Router({
}, },
component: () => import('@pages/sample/ibizbookcustom-view-layout/ibizbookcustom-view-layout.vue'), component: () => import('@pages/sample/ibizbookcustom-view-layout/ibizbookcustom-view-layout.vue'),
}, },
{
path: 'ibizbooks/:ibizbook?/testlogiccustomview/:testlogiccustomview?',
meta: {
caption: 'entities.ibizbook.views.testlogiccustomview.caption',
info:'',
parameters: [
{ pathName: 'index', parameterName: 'index' },
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'testlogiccustomview', parameterName: 'testlogiccustomview' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbooktest-logic-custom-view/ibizbooktest-logic-custom-view.vue'),
},
{ {
path: 'ibizappviews/:ibizappview?/gridview/:gridview?', path: 'ibizappviews/:ibizappview?/gridview/:gridview?',
meta: { meta: {
...@@ -5942,6 +5956,19 @@ const router = new Router({ ...@@ -5942,6 +5956,19 @@ const router = new Router({
}, },
component: () => import('@pages/sample/ibizorder-state40-edit-view2/ibizorder-state40-edit-view2.vue'), component: () => import('@pages/sample/ibizorder-state40-edit-view2/ibizorder-state40-edit-view2.vue'),
}, },
{
path: '/ibizbooks/:ibizbook?/testlogiccustomview/:testlogiccustomview?',
meta: {
caption: 'entities.ibizbook.views.testlogiccustomview.caption',
info:'',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'testlogiccustomview', parameterName: 'testlogiccustomview' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbooktest-logic-custom-view/ibizbooktest-logic-custom-view.vue'),
},
{ {
path: '/ibizcustomers/:ibizcustomer?/usr2pickupview_layout/:usr2pickupview_layout?', path: '/ibizcustomers/:ibizcustomer?/usr2pickupview_layout/:usr2pickupview_layout?',
meta: { meta: {
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<app-panel-field name="field_textbox2" :data="layoutData" :value="layoutData.field_textbox2"> <input-box type="number" :precision="2" :value="layoutData.field_textbox2" :disabled="layoutModelDetails.field_textbox2.disabled" @change="(value) => handleValueChange({ name: 'field_textbox2', value})"> </input-box> </app-panel-field> <app-panel-field name="field_textbox2" :data="layoutData" :value="layoutData.field_textbox2"> <input-box type="number" :precision="2" :value="layoutData.field_textbox2" :disabled="layoutModelDetails.field_textbox2.disabled" @change="(value) => handleValueChange({ name: 'field_textbox2', value})"> </input-box> </app-panel-field>
</template> </template>
<template #field_textbox3> <template #field_textbox3>
<app-panel-field name="field_textbox3" :data="layoutData" :value="layoutData.field_textbox3"> </app-panel-field> <app-panel-field name="field_textbox3" :data="layoutData" :value="layoutData.field_textbox3"> <input-box type="password" name="field_textbox3" :value="layoutData.field_textbox3" :disabled="layoutModelDetails.field_textbox3.disabled" @change="(value) => handleValueChange({ name: 'field_textbox3', value})"> </input-box> </app-panel-field>
</template> </template>
<template #field_qrcode> <template #field_qrcode>
<app-preset-qrcode name="field_qrcode" :layoutModelDetails="layoutModelDetails" :value="layoutData.field_qrcode" /> <app-preset-qrcode name="field_qrcode" :layoutModelDetails="layoutModelDetails" :value="layoutData.field_qrcode" />
......
...@@ -2736,6 +2736,19 @@ const router = new Router({ ...@@ -2736,6 +2736,19 @@ const router = new Router({
}, },
component: () => import('@pages/sample/ibizorder-state40-edit-view2/ibizorder-state40-edit-view2.vue'), component: () => import('@pages/sample/ibizorder-state40-edit-view2/ibizorder-state40-edit-view2.vue'),
}, },
{
path: '/ibizbooks/:ibizbook?/testlogiccustomview/:testlogiccustomview?',
meta: {
caption: 'entities.ibizbook.views.testlogiccustomview.caption',
info:'',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'testlogiccustomview', parameterName: 'testlogiccustomview' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbooktest-logic-custom-view/ibizbooktest-logic-custom-view.vue'),
},
{ {
path: '/ibizcustomers/:ibizcustomer?/usr2pickupview_layout/:usr2pickupview_layout?', path: '/ibizcustomers/:ibizcustomer?/usr2pickupview_layout/:usr2pickupview_layout?',
meta: { meta: {
......
...@@ -919,6 +919,7 @@ export const viewstate: any = { ...@@ -919,6 +919,7 @@ export const viewstate: any = {
'ef0aa2f297f599cdbc14fc8393b78a1d', 'ef0aa2f297f599cdbc14fc8393b78a1d',
'a6d2ee3618dcfb23c3db981c9dbc4340', 'a6d2ee3618dcfb23c3db981c9dbc4340',
'fa2731c1873f3c86aa065e73cff4667b', 'fa2731c1873f3c86aa065e73cff4667b',
'E74D4E6C-CFF5-4CBA-8195-FD943B3B910F',
], ],
}, },
{ {
...@@ -2095,6 +2096,15 @@ export const viewstate: any = { ...@@ -2095,6 +2096,15 @@ export const viewstate: any = {
'6bc6e690dc5abfc6d89703e4459c785c', '6bc6e690dc5abfc6d89703e4459c785c',
], ],
}, },
{
viewtag: 'E74D4E6C-CFF5-4CBA-8195-FD943B3B910F',
viewmodule: 'Sample',
viewname: 'IBIZBOOKTestLogicCustomView',
viewaction: '',
viewdatachange: false,
refviews: [
],
},
{ {
viewtag: 'e7f12b95864b12114256d9c4dbbb559c', viewtag: 'e7f12b95864b12114256d9c4dbbb559c',
viewmodule: 'Sample', viewmodule: 'Sample',
......
...@@ -1023,6 +1023,9 @@ export default class MainMenuBase extends Vue implements ControlInterface { ...@@ -1023,6 +1023,9 @@ export default class MainMenuBase extends Vue implements ControlInterface {
case 'AppFunc124': case 'AppFunc124':
this.clickAppFunc124(item); this.clickAppFunc124(item);
return; return;
case 'UsrAppFunc1108357066':
this.clickUsrAppFunc1108357066(item);
return;
default: default:
console.warn('未指定应用功能'); console.warn('未指定应用功能');
} }
...@@ -4224,6 +4227,29 @@ export default class MainMenuBase extends Vue implements ControlInterface { ...@@ -4224,6 +4227,29 @@ export default class MainMenuBase extends Vue implements ControlInterface {
this.$router.push(path); this.$router.push(path);
}) })
} }
/**
* 测试界面逻辑(表单加载)
*
* @param {*} [item={}]
* @memberof MainMenu
*/
public clickUsrAppFunc1108357066(item: any = {}) {
const viewparam: any = {};
Object.assign(viewparam, {});
const deResParameters: any[] = [];
const parameters: any[] = [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'testlogiccustomview', parameterName: 'testlogiccustomview' },
];
const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
if(Object.is(this.$route.fullPath,path)){
return;
}
this.$nextTick(function(){
this.$router.push(path);
})
}
/** /**
* 数据加载 * 数据加载
......
...@@ -15,7 +15,7 @@ export default class MainMenuModel { ...@@ -15,7 +15,7 @@ export default class MainMenuModel {
*/ */
public items: any[] = [ public items: any[] = [
{ {
id: '71E704A8-1FA7-4284-B849-C27C877AF262', id: 'D9ED4124-D1E7-419D-A3BA-A975E5144966',
name: 'menuitem1', name: 'menuitem1',
text: '工作台', text: '工作台',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -34,7 +34,7 @@ export default class MainMenuModel { ...@@ -34,7 +34,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem1', authtag:'Web-MainMenu-menuitem1',
}, },
{ {
id: 'D7354808-713F-4DB0-BF08-3882C42F897C', id: '993EB242-5B31-4B91-A22C-32B4138770C4',
name: 'menuitem3', name: 'menuitem3',
text: '控件', text: '控件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -53,7 +53,7 @@ export default class MainMenuModel { ...@@ -53,7 +53,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem3', authtag:'Web-MainMenu-menuitem3',
items: [ items: [
{ {
id: '39B8433A-EF3C-48DF-AA21-396F8F0E630A', id: '6D0F78A1-CF2A-4742-8550-E775F936B14B',
name: 'menuitem6', name: 'menuitem6',
text: '默认数据类型', text: '默认数据类型',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -72,7 +72,7 @@ export default class MainMenuModel { ...@@ -72,7 +72,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem6', authtag:'Web-MainMenu-menuitem6',
}, },
{ {
id: 'F25148AE-E549-4719-BEB3-7609162D43EF', id: '07CC7586-4A3F-4B29-A03A-F0C7F5473149',
name: 'menuitem7', name: 'menuitem7',
text: '默认编辑器类型', text: '默认编辑器类型',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -91,7 +91,7 @@ export default class MainMenuModel { ...@@ -91,7 +91,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem7', authtag:'Web-MainMenu-menuitem7',
}, },
{ {
id: '722DEB4F-026F-41E3-BA30-E886ECF75CCA', id: 'B82959D5-89FA-4B61-B7D5-7B45F4588B61',
name: 'menuitem72', name: 'menuitem72',
text: '扩展编辑器', text: '扩展编辑器',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -110,7 +110,7 @@ export default class MainMenuModel { ...@@ -110,7 +110,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem72', authtag:'Web-MainMenu-menuitem72',
}, },
{ {
id: 'F725A53B-13AF-4B18-88EC-8C840230DCE4', id: 'A23AA3F2-C248-4106-9712-D3D5726FB1EB',
name: 'menuitem65', name: 'menuitem65',
text: '微服务组件', text: '微服务组件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -129,7 +129,7 @@ export default class MainMenuModel { ...@@ -129,7 +129,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem65', authtag:'Web-MainMenu-menuitem65',
}, },
{ {
id: 'D206E0D3-BCF1-43D2-9713-283E375553D5', id: 'FDCF3484-A4C9-4170-BC5A-35CA53C4B533',
name: 'menuitem151', name: 'menuitem151',
text: '编辑器插件示例', text: '编辑器插件示例',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -150,7 +150,7 @@ export default class MainMenuModel { ...@@ -150,7 +150,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'C0AFE6C1-CB05-4437-A246-0041919BFD14', id: '96AEAC0F-1046-49D4-B430-0B4D213CE876',
name: 'menuitem4', name: 'menuitem4',
text: '部件', text: '部件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -169,7 +169,7 @@ export default class MainMenuModel { ...@@ -169,7 +169,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem4', authtag:'Web-MainMenu-menuitem4',
items: [ items: [
{ {
id: '58C34F23-3612-4861-A0D0-96C4B7790F40', id: '355F58FA-9D3D-4A8D-86A9-96AA54F08AA0',
name: 'menuitem112', name: 'menuitem112',
text: '应用类', text: '应用类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -188,7 +188,7 @@ export default class MainMenuModel { ...@@ -188,7 +188,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem112', authtag:'Web-MainMenu-menuitem112',
items: [ items: [
{ {
id: '0D05FB56-33A0-4033-854C-96BDA59FF0AE', id: '2A433553-1CD9-424E-B743-4CAF821636BC',
name: 'menuitem186', name: 'menuitem186',
text: '数据看板', text: '数据看板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -207,7 +207,7 @@ export default class MainMenuModel { ...@@ -207,7 +207,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem186', authtag:'Web-MainMenu-menuitem186',
}, },
{ {
id: '6A9A090E-02F7-4E12-842E-B545784FD39E', id: 'E22F7C00-F192-4EBE-9F49-9EDA7026DE49',
name: 'menuitem129', name: 'menuitem129',
text: '门户部件', text: '门户部件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -228,7 +228,7 @@ export default class MainMenuModel { ...@@ -228,7 +228,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '40B23D41-2F80-4EBB-9795-841AC5F7A0D0', id: 'F97180DC-497C-4CF8-82BB-B402ABA47CEC',
name: 'menuitem156', name: 'menuitem156',
text: '表单类', text: '表单类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -247,7 +247,7 @@ export default class MainMenuModel { ...@@ -247,7 +247,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem156', authtag:'Web-MainMenu-menuitem156',
items: [ items: [
{ {
id: 'CADFAB00-919E-4E72-970B-66A0CB351261', id: 'C75444B9-857C-4369-8592-3EECF8A8EA6C',
name: 'menuitem12', name: 'menuitem12',
text: '编辑表单', text: '编辑表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -266,7 +266,7 @@ export default class MainMenuModel { ...@@ -266,7 +266,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem12', authtag:'Web-MainMenu-menuitem12',
items: [ items: [
{ {
id: '810CDF90-AED5-4075-BA05-760BBAAC8001', id: '65044C5A-C883-4248-8C2F-87F2F9F1AD97',
name: 'menuitem15', name: 'menuitem15',
text: '基础表单项', text: '基础表单项',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -285,7 +285,7 @@ export default class MainMenuModel { ...@@ -285,7 +285,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem15', authtag:'Web-MainMenu-menuitem15',
}, },
{ {
id: '58AA2683-32E6-4E59-A24B-F3B9EFB86C7F', id: '2B046E9B-EECB-4916-A6E6-2B7AC13EA0CF',
name: 'menuitem107', name: 'menuitem107',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -304,7 +304,7 @@ export default class MainMenuModel { ...@@ -304,7 +304,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem107', authtag:'Web-MainMenu-menuitem107',
}, },
{ {
id: 'C00AA274-AA05-4E12-BFA4-282AB0FE881D', id: 'C72B5DDB-7D10-46EE-A7D3-845A71B2D46D',
name: 'menuitem47', name: 'menuitem47',
text: '新建默认值', text: '新建默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -323,7 +323,7 @@ export default class MainMenuModel { ...@@ -323,7 +323,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem47', authtag:'Web-MainMenu-menuitem47',
}, },
{ {
id: 'B677F1FD-CACB-4651-A97A-244897AAE17E', id: '474EE83E-71B7-42E9-9DCE-EAEDAB9F8C4B',
name: 'menuitem99', name: 'menuitem99',
text: '更新默认值', text: '更新默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -342,7 +342,7 @@ export default class MainMenuModel { ...@@ -342,7 +342,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem99', authtag:'Web-MainMenu-menuitem99',
}, },
{ {
id: '7118FC7B-4045-4DEC-AFF2-4CD0DC2B80A4', id: '54FC50BA-5B71-4B32-848D-8934A57A27E9',
name: 'menuitem48', name: 'menuitem48',
text: '输入提示', text: '输入提示',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -361,7 +361,7 @@ export default class MainMenuModel { ...@@ -361,7 +361,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem48', authtag:'Web-MainMenu-menuitem48',
}, },
{ {
id: 'CAD1C3DE-F0CA-42DC-A9B6-05FB36DFFF4D', id: '7DA2192A-DF0B-48D0-A1B4-55B3BA6B6340',
name: 'menuitem49', name: 'menuitem49',
text: '辅助输入', text: '辅助输入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -380,7 +380,7 @@ export default class MainMenuModel { ...@@ -380,7 +380,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem49', authtag:'Web-MainMenu-menuitem49',
}, },
{ {
id: 'A10BF311-BD12-4199-A0F6-1CB3947021C3', id: '45D8D3EA-29AE-493D-8F80-D643A9049DC7',
name: 'menuitem50', name: 'menuitem50',
text: '自动填充', text: '自动填充',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -399,7 +399,7 @@ export default class MainMenuModel { ...@@ -399,7 +399,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem50', authtag:'Web-MainMenu-menuitem50',
}, },
{ {
id: '98A7A2B3-1560-48BE-B38D-DDB0540422BC', id: '37C1507C-566D-4AF2-A4BF-75D824D77A28',
name: 'menuitem51', name: 'menuitem51',
text: '超链接', text: '超链接',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -418,7 +418,7 @@ export default class MainMenuModel { ...@@ -418,7 +418,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem51', authtag:'Web-MainMenu-menuitem51',
}, },
{ {
id: 'E6310F2E-C744-4977-827A-072299A9F3D8', id: '5FBBB62D-2F19-4C08-85B9-000831A14212',
name: 'menuitem52', name: 'menuitem52',
text: '表单值重置', text: '表单值重置',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -437,7 +437,7 @@ export default class MainMenuModel { ...@@ -437,7 +437,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem52', authtag:'Web-MainMenu-menuitem52',
}, },
{ {
id: '919AD260-AA91-4677-A8F2-4A9EE1F571F8', id: '3EA33D4E-8C0F-4D25-BFEC-2B0110AA3110',
name: 'menuitem55', name: 'menuitem55',
text: '动态显示', text: '动态显示',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -456,7 +456,7 @@ export default class MainMenuModel { ...@@ -456,7 +456,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem55', authtag:'Web-MainMenu-menuitem55',
}, },
{ {
id: '0D994CF9-F826-47BF-8E4F-691A7F4DD82F', id: 'D2855975-9937-45AF-B8D6-A2E88DDD0C12',
name: 'menuitem53', name: 'menuitem53',
text: '动态启用', text: '动态启用',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -475,7 +475,7 @@ export default class MainMenuModel { ...@@ -475,7 +475,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem53', authtag:'Web-MainMenu-menuitem53',
}, },
{ {
id: 'E2ADEAFA-D391-4F14-AE6D-AF9D46D86433', id: '2301F55C-6557-4E41-8FD9-96427703723F',
name: 'menuitem54', name: 'menuitem54',
text: '动态空输入', text: '动态空输入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -494,7 +494,7 @@ export default class MainMenuModel { ...@@ -494,7 +494,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem54', authtag:'Web-MainMenu-menuitem54',
}, },
{ {
id: 'DB45B6C4-EDA0-4DF5-89DC-E7ECE0EDB4BE', id: '7FF1031A-9E04-40D7-A4F2-8ED79B7DA658',
name: 'menuitem56', name: 'menuitem56',
text: '表单项更新', text: '表单项更新',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -513,7 +513,7 @@ export default class MainMenuModel { ...@@ -513,7 +513,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem56', authtag:'Web-MainMenu-menuitem56',
}, },
{ {
id: '3DF6CC9C-9BC6-49B5-A512-19E9A3D4F0BD', id: '2B2D5166-8778-438D-8C1E-740F9BFA3774',
name: 'menuitem108', name: 'menuitem108',
text: '表单值规则', text: '表单值规则',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -534,7 +534,7 @@ export default class MainMenuModel { ...@@ -534,7 +534,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '2D556A5D-7AA7-41AB-9D77-1C247E27D5B7', id: 'ACAC251D-92FD-4592-B47D-28647CA82529',
name: 'menuitem16', name: 'menuitem16',
text: '搜索表单', text: '搜索表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -555,7 +555,7 @@ export default class MainMenuModel { ...@@ -555,7 +555,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'AAF996B1-5853-44A1-B723-915B589884DF', id: '1BAC928C-E809-48D4-B43D-42A3A9351C61',
name: 'menuitem157', name: 'menuitem157',
text: '导航类', text: '导航类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -574,7 +574,7 @@ export default class MainMenuModel { ...@@ -574,7 +574,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem157', authtag:'Web-MainMenu-menuitem157',
items: [ items: [
{ {
id: '146EDAAB-5F0B-43C5-8117-5945978CBCBC', id: 'A5439F9B-D8FA-4B28-B7BC-2C9D4E0D5341',
name: 'menuitem120', name: 'menuitem120',
text: '分页导航', text: '分页导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -593,7 +593,7 @@ export default class MainMenuModel { ...@@ -593,7 +593,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem120', authtag:'Web-MainMenu-menuitem120',
}, },
{ {
id: '750AF27A-C35B-48B9-B42E-B20DF5BCF40D', id: '5419AA53-A0D8-4927-8E50-440DB24D1FAC',
name: 'menuitem128', name: 'menuitem128',
text: '表格导航', text: '表格导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -612,7 +612,7 @@ export default class MainMenuModel { ...@@ -612,7 +612,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem128', authtag:'Web-MainMenu-menuitem128',
}, },
{ {
id: '0CA3B649-C4BA-487E-8EA6-6EEA7A5FDF3A', id: '28DC72C0-3132-4698-8203-02B75F749934',
name: 'menuitem114', name: 'menuitem114',
text: '列表导航', text: '列表导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -631,7 +631,7 @@ export default class MainMenuModel { ...@@ -631,7 +631,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem114', authtag:'Web-MainMenu-menuitem114',
}, },
{ {
id: '88E0FBED-9969-4E70-B8C0-58445F306C95', id: '98FA5C20-9EF2-4F91-9EEB-1A679A12222B',
name: 'menuitem137', name: 'menuitem137',
text: '卡片导航', text: '卡片导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -650,7 +650,7 @@ export default class MainMenuModel { ...@@ -650,7 +650,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem137', authtag:'Web-MainMenu-menuitem137',
}, },
{ {
id: 'C54D8B7C-3852-4334-B901-22DDBFF00822', id: 'C5CA0DBB-3CCD-42E3-A133-662D1C232C11',
name: 'menuitem136', name: 'menuitem136',
text: '树导航', text: '树导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -669,7 +669,7 @@ export default class MainMenuModel { ...@@ -669,7 +669,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem136', authtag:'Web-MainMenu-menuitem136',
}, },
{ {
id: '7CB4BA19-A758-4787-8D25-DFDC3704A947', id: '43752D38-BF3B-45E5-A31F-0D1F17EEEF04',
name: 'menuitem138', name: 'menuitem138',
text: '日历导航', text: '日历导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -688,7 +688,7 @@ export default class MainMenuModel { ...@@ -688,7 +688,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem138', authtag:'Web-MainMenu-menuitem138',
}, },
{ {
id: '760A1391-ECAB-425D-A2B1-6FEAF38C8DE4', id: '8525A910-7ECC-4496-8AA8-11D3607F26FB',
name: 'menuitem139', name: 'menuitem139',
text: '时间轴导航', text: '时间轴导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -707,7 +707,7 @@ export default class MainMenuModel { ...@@ -707,7 +707,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem139', authtag:'Web-MainMenu-menuitem139',
}, },
{ {
id: '28645156-B04A-4EF8-B759-2A8F0DC8A54F', id: '07C59C67-FEC1-49A7-9330-F84F9AB4F0AF',
name: 'menuitem20', name: 'menuitem20',
text: '数据关系分页', text: '数据关系分页',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -726,7 +726,7 @@ export default class MainMenuModel { ...@@ -726,7 +726,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem20', authtag:'Web-MainMenu-menuitem20',
items: [ items: [
{ {
id: '4C7AE630-07CA-4591-85AE-61DEF12686D2', id: '93FFE50A-2ABB-49A4-89C8-BC09FC71C092',
name: 'menuitem117', name: 'menuitem117',
text: '数据关系分页(上下关系)', text: '数据关系分页(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -745,7 +745,7 @@ export default class MainMenuModel { ...@@ -745,7 +745,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem117', authtag:'Web-MainMenu-menuitem117',
}, },
{ {
id: 'AC097D44-BED6-46BB-B5CB-87617043F3F0', id: '8B3F6885-1F4A-4968-B1A0-3AEE107E79B4',
name: 'menuitem118', name: 'menuitem118',
text: '数据关系分页(分页关系)', text: '数据关系分页(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -766,7 +766,7 @@ export default class MainMenuModel { ...@@ -766,7 +766,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'A934AA38-8228-4F0F-BF6C-651B781B996E', id: '37BB5AC5-EABE-4867-81B2-C34302DED238',
name: 'menuitem116', name: 'menuitem116',
text: ' 数据关系栏', text: ' 数据关系栏',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -787,7 +787,7 @@ export default class MainMenuModel { ...@@ -787,7 +787,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'C673C53D-7FE3-4563-877F-8E6B7C8B6918', id: 'B62C6578-C4E4-4B0E-AD64-9556DAEC7953',
name: 'menuitem158', name: 'menuitem158',
text: '面板类', text: '面板类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -806,7 +806,7 @@ export default class MainMenuModel { ...@@ -806,7 +806,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem158', authtag:'Web-MainMenu-menuitem158',
items: [ items: [
{ {
id: 'EF9BA155-E802-45BE-81FE-AB41E185FD44', id: 'CFD7096E-6EE8-4790-B888-A6CDB48E06B2',
name: 'menuitem145', name: 'menuitem145',
text: '选择视图面板', text: '选择视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -825,7 +825,7 @@ export default class MainMenuModel { ...@@ -825,7 +825,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem145', authtag:'Web-MainMenu-menuitem145',
}, },
{ {
id: 'A6183132-8339-48FE-92DF-87991DD51D1E', id: 'F083F5A4-9733-4159-9F66-630FD2CBE937',
name: 'menuitem17', name: 'menuitem17',
text: '向导面板', text: '向导面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -844,7 +844,7 @@ export default class MainMenuModel { ...@@ -844,7 +844,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem17', authtag:'Web-MainMenu-menuitem17',
items: [ items: [
{ {
id: '70BE4F5F-DA41-4271-B097-70EF20E8F8F6', id: '6510EAB0-C65D-4F34-9D1B-FB4B1CDD1862',
name: 'menuitem134', name: 'menuitem134',
text: '基础用法', text: '基础用法',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -863,7 +863,7 @@ export default class MainMenuModel { ...@@ -863,7 +863,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem134', authtag:'Web-MainMenu-menuitem134',
}, },
{ {
id: '1AF2930E-F982-4D68-AED0-9EAE59CCEB84', id: '498947E5-86EF-434C-9381-D2CF6B69AD0A',
name: 'menuitem135', name: 'menuitem135',
text: '状态属性', text: '状态属性',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -884,7 +884,7 @@ export default class MainMenuModel { ...@@ -884,7 +884,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '569EC818-A826-48D4-B30F-8DB43DB39FFF', id: 'B2605A1B-A91F-480F-AC48-707FFA5DCA91',
name: 'menuitem121', name: 'menuitem121',
text: '多编辑视图面板', text: '多编辑视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -903,7 +903,7 @@ export default class MainMenuModel { ...@@ -903,7 +903,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem121', authtag:'Web-MainMenu-menuitem121',
items: [ items: [
{ {
id: '0F9FF51D-C672-4B55-8BEE-43BCEC15A127', id: '1EC6115F-FAC2-467F-B06F-4742A330D480',
name: 'menuitem115', name: 'menuitem115',
text: '多表单(行记录)', text: '多表单(行记录)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -922,7 +922,7 @@ export default class MainMenuModel { ...@@ -922,7 +922,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem115', authtag:'Web-MainMenu-menuitem115',
}, },
{ {
id: '5FE3776A-FA56-4C53-AD95-32585F4B54C9', id: 'A7AE1C68-22AB-4CC3-9DBD-487ADD457A79',
name: 'menuitem123', name: 'menuitem123',
text: '多表单(上分页)', text: '多表单(上分页)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -945,7 +945,7 @@ export default class MainMenuModel { ...@@ -945,7 +945,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '8D1F6398-362F-4965-88FC-27840DC00BEA', id: 'C2AEB74A-9CA4-43C3-AEB6-A9A41B7B26AE',
name: 'menuitem119', name: 'menuitem119',
text: '多数据类', text: '多数据类',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -964,7 +964,7 @@ export default class MainMenuModel { ...@@ -964,7 +964,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem119', authtag:'Web-MainMenu-menuitem119',
items: [ items: [
{ {
id: 'ADD6DA57-172D-40B7-A033-3A3DF87717CF', id: '36ABAC78-40A9-4639-8E5B-670BFD6C80B9',
name: 'menuitem13', name: 'menuitem13',
text: '表格', text: '表格',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -983,7 +983,7 @@ export default class MainMenuModel { ...@@ -983,7 +983,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem13', authtag:'Web-MainMenu-menuitem13',
items: [ items: [
{ {
id: '50F70D09-5056-4CC1-8AC4-11641383A6A3', id: '8BC1B6FE-0C7F-43E5-A39B-B405A68D96B9',
name: 'menuitem57', name: 'menuitem57',
text: '禁用排序', text: '禁用排序',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1002,7 +1002,7 @@ export default class MainMenuModel { ...@@ -1002,7 +1002,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem57', authtag:'Web-MainMenu-menuitem57',
}, },
{ {
id: 'C5EED469-2977-4B23-B0ED-75245941842E', id: '3B3BC8F3-16C2-4CC0-9F02-1DA4F6D96A81',
name: 'menuitem59', name: 'menuitem59',
text: '行操作', text: '行操作',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1021,7 +1021,7 @@ export default class MainMenuModel { ...@@ -1021,7 +1021,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem59', authtag:'Web-MainMenu-menuitem59',
}, },
{ {
id: '0560E8C6-697E-4AAB-B9D5-056553820FF6', id: '7FD9D2A0-91CA-4368-9195-36AC9FDAFC20',
name: 'menuitem58', name: 'menuitem58',
text: '行编辑', text: '行编辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1040,7 +1040,7 @@ export default class MainMenuModel { ...@@ -1040,7 +1040,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem58', authtag:'Web-MainMenu-menuitem58',
}, },
{ {
id: 'CE42EEE7-214C-4263-8843-6BD139A7340E', id: '178EA929-8BBD-4F66-8B65-BCB7BAE07B47',
name: 'menuitem73', name: 'menuitem73',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1059,7 +1059,7 @@ export default class MainMenuModel { ...@@ -1059,7 +1059,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem73', authtag:'Web-MainMenu-menuitem73',
}, },
{ {
id: '38779239-111D-44DD-B807-0093F6120B44', id: '2C8BD0B6-2D55-49B4-BF1A-4DE2C6082E35',
name: 'menuitem74', name: 'menuitem74',
text: '表格行编辑', text: '表格行编辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1078,7 +1078,7 @@ export default class MainMenuModel { ...@@ -1078,7 +1078,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem74', authtag:'Web-MainMenu-menuitem74',
}, },
{ {
id: 'E4F988B7-C18E-4A80-948A-9A95722A747A', id: '4E8C2C6A-D6C3-4DB6-848C-B36272359B87',
name: 'menuitem75', name: 'menuitem75',
text: '新建默认值', text: '新建默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1097,7 +1097,7 @@ export default class MainMenuModel { ...@@ -1097,7 +1097,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem75', authtag:'Web-MainMenu-menuitem75',
}, },
{ {
id: '01F22C4E-A274-4FDC-A420-850367D10C81', id: '31BFCBE9-5C1B-4940-8939-A7E32B7504B4',
name: 'menuitem76', name: 'menuitem76',
text: '更新默认值', text: '更新默认值',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1116,7 +1116,7 @@ export default class MainMenuModel { ...@@ -1116,7 +1116,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem76', authtag:'Web-MainMenu-menuitem76',
}, },
{ {
id: '0BCF56A4-D198-4926-9AE3-A3DC906D2E8E', id: '7D4387F7-3455-4816-A943-ACEB9654C981',
name: 'menuitem77', name: 'menuitem77',
text: '表格值规则', text: '表格值规则',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1135,7 +1135,7 @@ export default class MainMenuModel { ...@@ -1135,7 +1135,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem77', authtag:'Web-MainMenu-menuitem77',
}, },
{ {
id: '6FA939C5-BA28-45E4-95F0-E4A8EB61296A', id: '759F4AEE-EDF7-4716-A425-3F41DEFCD818',
name: 'menuitem132', name: 'menuitem132',
text: '表格列更新', text: '表格列更新',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1154,7 +1154,7 @@ export default class MainMenuModel { ...@@ -1154,7 +1154,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem132', authtag:'Web-MainMenu-menuitem132',
}, },
{ {
id: 'BFC0EE2E-9745-4AA2-BE46-C9DA35632362', id: '5C6D9383-8FFB-472E-9601-57D228E425DD',
name: 'menuitem133', name: 'menuitem133',
text: '表格列重置', text: '表格列重置',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1173,7 +1173,7 @@ export default class MainMenuModel { ...@@ -1173,7 +1173,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem133', authtag:'Web-MainMenu-menuitem133',
}, },
{ {
id: '8EFB4844-EEF7-4715-8656-9CD7CC08D425', id: 'A9B9BC3C-5676-4287-984D-CF916C110C9A',
name: 'menuitem78', name: 'menuitem78',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1192,7 +1192,7 @@ export default class MainMenuModel { ...@@ -1192,7 +1192,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem78', authtag:'Web-MainMenu-menuitem78',
}, },
{ {
id: '95BEC46B-BCE9-4E25-B898-7286247BC133', id: '57D9C9D1-120F-4628-AF03-4181EE921BCC',
name: 'menuitem80', name: 'menuitem80',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1211,7 +1211,7 @@ export default class MainMenuModel { ...@@ -1211,7 +1211,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem80', authtag:'Web-MainMenu-menuitem80',
}, },
{ {
id: '544DA55D-52E3-4314-8E5C-C3E8BD0679AC', id: '30BD17EB-91ED-430F-8D12-59D5D9676B8D',
name: 'menuitem81', name: 'menuitem81',
text: '当前页聚合', text: '当前页聚合',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1230,7 +1230,7 @@ export default class MainMenuModel { ...@@ -1230,7 +1230,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem81', authtag:'Web-MainMenu-menuitem81',
}, },
{ {
id: '122C5DAE-36F2-467B-8C47-70898BD571B8', id: '288D4E37-768C-44C4-A62B-72C96E872D1F',
name: 'menuitem82', name: 'menuitem82',
text: '远程聚合', text: '远程聚合',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1251,7 +1251,7 @@ export default class MainMenuModel { ...@@ -1251,7 +1251,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'A5B590DA-7D1D-460A-A7C0-7A21ACC383B0', id: 'E17AEC0B-F569-4FDC-8BE8-1F92D23C7D20',
name: 'menuitem83', name: 'menuitem83',
text: '列表', text: '列表',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1270,7 +1270,7 @@ export default class MainMenuModel { ...@@ -1270,7 +1270,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem83', authtag:'Web-MainMenu-menuitem83',
items: [ items: [
{ {
id: '493F633C-A744-48E2-8882-F196E1495B0F', id: 'EB026E87-8229-46F2-B765-C3F89DCC58AB',
name: 'menuitem84', name: 'menuitem84',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1289,7 +1289,7 @@ export default class MainMenuModel { ...@@ -1289,7 +1289,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem84', authtag:'Web-MainMenu-menuitem84',
}, },
{ {
id: 'A194C265-8776-4159-9E62-6A13621ECC5F', id: 'C8043266-E3AA-425B-A3B2-FABBC0D6837A',
name: 'menuitem85', name: 'menuitem85',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1308,7 +1308,7 @@ export default class MainMenuModel { ...@@ -1308,7 +1308,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem85', authtag:'Web-MainMenu-menuitem85',
}, },
{ {
id: '95824A46-88CC-4AFD-B829-DB29016C6F98', id: 'B1A610F2-18FF-4765-B05A-219234402BD9',
name: 'menuitem86', name: 'menuitem86',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1327,7 +1327,7 @@ export default class MainMenuModel { ...@@ -1327,7 +1327,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem86', authtag:'Web-MainMenu-menuitem86',
}, },
{ {
id: 'E995CF0B-68F3-4024-B0A6-C8A942B6E93F', id: '1EA396EA-581F-4AB7-9EA5-5165F73D1A69',
name: 'menuitem91', name: 'menuitem91',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1346,7 +1346,7 @@ export default class MainMenuModel { ...@@ -1346,7 +1346,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem91', authtag:'Web-MainMenu-menuitem91',
}, },
{ {
id: '01757FCC-44E6-4D2E-A752-B90BAFAB7AFE', id: 'FF55CFFB-B9CC-43EF-9F61-F32070EC75EF',
name: 'menuitem143', name: 'menuitem143',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1367,7 +1367,7 @@ export default class MainMenuModel { ...@@ -1367,7 +1367,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '5FF167EE-55B0-4C6B-97FB-6800D3C5248C', id: '2F4CFE55-5E29-431F-A090-0C58867B4201',
name: 'menuitem95', name: 'menuitem95',
text: '日历', text: '日历',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1386,7 +1386,7 @@ export default class MainMenuModel { ...@@ -1386,7 +1386,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem95', authtag:'Web-MainMenu-menuitem95',
items: [ items: [
{ {
id: 'AECC8A63-F6F1-4A05-A735-5742A854599A', id: 'B9064D3A-1F2A-4481-BEC3-59B023E273A7',
name: 'menuitem96', name: 'menuitem96',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1405,7 +1405,7 @@ export default class MainMenuModel { ...@@ -1405,7 +1405,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem96', authtag:'Web-MainMenu-menuitem96',
}, },
{ {
id: '59DC125D-5F79-427B-966E-444F067A034E', id: '4BB67945-E582-4737-ABB1-83E4735B794B',
name: 'menuitem97', name: 'menuitem97',
text: '时间轴样式', text: '时间轴样式',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1424,7 +1424,7 @@ export default class MainMenuModel { ...@@ -1424,7 +1424,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem97', authtag:'Web-MainMenu-menuitem97',
}, },
{ {
id: '7D199598-3151-4E9A-8C78-DC576F58035C', id: '1379EA76-9160-4FD3-9807-DB51CB3B14F5',
name: 'menuitem109', name: 'menuitem109',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1443,7 +1443,7 @@ export default class MainMenuModel { ...@@ -1443,7 +1443,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem109', authtag:'Web-MainMenu-menuitem109',
}, },
{ {
id: 'AF9A2B4F-788A-448F-94C9-5E286D39A510', id: 'C51B8C4F-A9E2-4005-954F-B4CBC674C9DE',
name: 'menuitem64', name: 'menuitem64',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1464,7 +1464,7 @@ export default class MainMenuModel { ...@@ -1464,7 +1464,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '1F58564C-8CFE-4D95-B64A-26ABA083851E', id: 'B7F0403C-C40C-47C4-8AAB-348960B35C42',
name: 'menuitem14', name: 'menuitem14',
text: '树视图', text: '树视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1483,7 +1483,7 @@ export default class MainMenuModel { ...@@ -1483,7 +1483,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem14', authtag:'Web-MainMenu-menuitem14',
items: [ items: [
{ {
id: '39F6D43E-003C-4402-AF95-6DFA49567765', id: 'D974FA09-314A-4736-A446-6828086ADEFA',
name: 'menuitem60', name: 'menuitem60',
text: '静态节点', text: '静态节点',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1502,7 +1502,7 @@ export default class MainMenuModel { ...@@ -1502,7 +1502,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem60', authtag:'Web-MainMenu-menuitem60',
}, },
{ {
id: 'F75C184D-442F-4F64-AC6B-AD97D4B6C2EF', id: 'FCA391E4-0E6F-4E7D-9422-3DBF10F101B9',
name: 'menuitem61', name: 'menuitem61',
text: '动态节点(代码表)', text: '动态节点(代码表)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1521,7 +1521,7 @@ export default class MainMenuModel { ...@@ -1521,7 +1521,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem61', authtag:'Web-MainMenu-menuitem61',
}, },
{ {
id: 'B4D9E831-A15D-45E7-B9C0-53184CDC3A79', id: '5C76924B-3C3B-4AF4-BD0D-0121B35D8411',
name: 'menuitem62', name: 'menuitem62',
text: '动态节点(实体)', text: '动态节点(实体)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1540,7 +1540,7 @@ export default class MainMenuModel { ...@@ -1540,7 +1540,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem62', authtag:'Web-MainMenu-menuitem62',
}, },
{ {
id: '46F90EA0-C985-427A-ABF2-F63BB0461638', id: '0DA74AB5-7221-4129-9B50-0F496070546C',
name: 'menuitem63', name: 'menuitem63',
text: '右键操作', text: '右键操作',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1561,7 +1561,7 @@ export default class MainMenuModel { ...@@ -1561,7 +1561,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'DBE2DE84-1718-4FDF-AE40-B0495F4A89F7', id: '0647E103-6FD7-48B1-B54B-97B0655B3500',
name: 'menuitem111', name: 'menuitem111',
text: '甘特图', text: '甘特图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1580,7 +1580,7 @@ export default class MainMenuModel { ...@@ -1580,7 +1580,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem111', authtag:'Web-MainMenu-menuitem111',
}, },
{ {
id: 'FD126F61-8AF7-428B-8ED2-92CA893DB327', id: 'D839814F-A805-4756-A1AE-A056BDC9B6B3',
name: 'menuitem110', name: 'menuitem110',
text: '树表格', text: '树表格',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1599,7 +1599,7 @@ export default class MainMenuModel { ...@@ -1599,7 +1599,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem110', authtag:'Web-MainMenu-menuitem110',
}, },
{ {
id: 'FB8550F8-9441-4AB5-9320-A5BBA5CBA832', id: 'B842419A-2BB2-4CCA-9A20-DC2382551BBC',
name: 'menuitem87', name: 'menuitem87',
text: '数据视图', text: '数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1618,7 +1618,7 @@ export default class MainMenuModel { ...@@ -1618,7 +1618,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem87', authtag:'Web-MainMenu-menuitem87',
items: [ items: [
{ {
id: '6751EF5D-8BF2-44EA-A9E1-F84BD7914753', id: '167B6A62-0B55-48AA-AF2E-73BBD597CCCF',
name: 'menuitem88', name: 'menuitem88',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1637,7 +1637,7 @@ export default class MainMenuModel { ...@@ -1637,7 +1637,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem88', authtag:'Web-MainMenu-menuitem88',
}, },
{ {
id: 'F552095F-99F5-41DF-B3FB-E86398B492D1', id: '4F6352F1-6F88-4481-9361-1D707B03AE99',
name: 'menuitem89', name: 'menuitem89',
text: '自动分组', text: '自动分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1656,7 +1656,7 @@ export default class MainMenuModel { ...@@ -1656,7 +1656,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem89', authtag:'Web-MainMenu-menuitem89',
}, },
{ {
id: '64E26E72-E936-461C-BA6A-645595B0EE91', id: '00F6E3C2-C210-470A-ABBF-8ED48506CCF9',
name: 'menuitem90', name: 'menuitem90',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1675,7 +1675,7 @@ export default class MainMenuModel { ...@@ -1675,7 +1675,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem90', authtag:'Web-MainMenu-menuitem90',
}, },
{ {
id: '76177647-B567-451C-B61B-FAB96EBEC972', id: '3A8F7CCF-36F6-49E2-A02F-AFE092B98F3C',
name: 'menuitem94', name: 'menuitem94',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1694,7 +1694,7 @@ export default class MainMenuModel { ...@@ -1694,7 +1694,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem94', authtag:'Web-MainMenu-menuitem94',
}, },
{ {
id: 'D9B460A9-5A20-4288-8674-35E705BEB0F4', id: 'B9B3D9EC-812B-40E3-AB84-F67517F5082F',
name: 'menuitem152', name: 'menuitem152',
text: '自定义插件', text: '自定义插件',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1715,7 +1715,7 @@ export default class MainMenuModel { ...@@ -1715,7 +1715,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '97A41577-785F-4D3B-94AF-46CC9175A091', id: 'DA9284C1-A9C0-4C61-8C05-5C7C200C4C16',
name: 'menuitem101', name: 'menuitem101',
text: '看板视图', text: '看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1734,7 +1734,7 @@ export default class MainMenuModel { ...@@ -1734,7 +1734,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem101', authtag:'Web-MainMenu-menuitem101',
items: [ items: [
{ {
id: '6DA33081-4104-4221-9872-343C05C6E273', id: 'BC7062A6-46FF-4F24-BA8B-BF786787249D',
name: 'menuitem102', name: 'menuitem102',
text: '内置功能', text: '内置功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1753,7 +1753,7 @@ export default class MainMenuModel { ...@@ -1753,7 +1753,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem102', authtag:'Web-MainMenu-menuitem102',
}, },
{ {
id: 'A59CBABE-740B-4390-AC1C-81D2EF8520B4', id: '51E5EF98-18AE-464D-8786-ED236DC1CA42',
name: 'menuitem104', name: 'menuitem104',
text: '代码表分组', text: '代码表分组',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1772,7 +1772,7 @@ export default class MainMenuModel { ...@@ -1772,7 +1772,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem104', authtag:'Web-MainMenu-menuitem104',
}, },
{ {
id: '341D7B5C-068B-4BA9-B82F-5274AE108BCA', id: '1390E8ED-0797-4D99-A0E9-3B88C3F0AD96',
name: 'menuitem105', name: 'menuitem105',
text: '项布局面板', text: '项布局面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1793,7 +1793,7 @@ export default class MainMenuModel { ...@@ -1793,7 +1793,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'A82A579D-A1EE-4A4A-B629-A4082FBB7C7A', id: '9E8A4ADC-482A-484E-A422-13BA37379A39',
name: 'menuitem37', name: 'menuitem37',
text: '数据图表', text: '数据图表',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1812,7 +1812,7 @@ export default class MainMenuModel { ...@@ -1812,7 +1812,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem37', authtag:'Web-MainMenu-menuitem37',
items: [ items: [
{ {
id: '5E83D67F-979F-4C4F-8E09-85BD6C51860B', id: '1F11772B-512A-40BC-A02E-3B12F88AFE61',
name: 'menuitem38', name: 'menuitem38',
text: '柱状图', text: '柱状图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1831,7 +1831,7 @@ export default class MainMenuModel { ...@@ -1831,7 +1831,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem38', authtag:'Web-MainMenu-menuitem38',
}, },
{ {
id: '40AC4D78-6176-433B-8C91-D4F73E062FB8', id: '1DA2C72F-0670-4E8B-B8B1-BF863E4FBC85',
name: 'menuitem39', name: 'menuitem39',
text: '折线图', text: '折线图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1850,7 +1850,7 @@ export default class MainMenuModel { ...@@ -1850,7 +1850,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem39', authtag:'Web-MainMenu-menuitem39',
}, },
{ {
id: '59F916FA-B01F-4AC6-AB7A-4B9F4E760EBB', id: '0D50699E-01FF-46C1-8A1E-E03FD4231891',
name: 'menuitem40', name: 'menuitem40',
text: '饼图', text: '饼图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1869,7 +1869,7 @@ export default class MainMenuModel { ...@@ -1869,7 +1869,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem40', authtag:'Web-MainMenu-menuitem40',
}, },
{ {
id: '29B7C601-076C-437F-B7A2-D64D89E7A24B', id: '9711790B-CE73-47F5-8500-144A8F71C06C',
name: 'menuitem41', name: 'menuitem41',
text: '区域图', text: '区域图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1888,7 +1888,7 @@ export default class MainMenuModel { ...@@ -1888,7 +1888,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem41', authtag:'Web-MainMenu-menuitem41',
}, },
{ {
id: '13630323-4282-42B4-968C-0B249B407089', id: '5B783A3C-1701-48F7-8207-39F378E7D9BD',
name: 'menuitem42', name: 'menuitem42',
text: '雷达图', text: '雷达图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1913,7 +1913,7 @@ export default class MainMenuModel { ...@@ -1913,7 +1913,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '624CC365-C282-40EB-B4E6-B3DB7C856343', id: '6CE7C954-24C9-4667-BF95-02DBA05F3931',
name: 'menuitem5', name: 'menuitem5',
text: '视图', text: '视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1932,7 +1932,7 @@ export default class MainMenuModel { ...@@ -1932,7 +1932,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem5', authtag:'Web-MainMenu-menuitem5',
items: [ items: [
{ {
id: 'BAA6250B-FEA8-4487-B748-AE90B8CFC57B', id: 'B60B510C-A1A9-4A18-A9E9-8EE01CF41FDB',
name: 'menuitem140', name: 'menuitem140',
text: '单数据视图', text: '单数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1951,7 +1951,7 @@ export default class MainMenuModel { ...@@ -1951,7 +1951,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem140', authtag:'Web-MainMenu-menuitem140',
items: [ items: [
{ {
id: '0227FDD9-AC51-4CBB-AC89-2333C2D790EA', id: '217B9C25-DE59-4C3F-8A7D-8EF6E29E5BAD',
name: 'menuitem161', name: 'menuitem161',
text: '实体向导视图', text: '实体向导视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1970,7 +1970,7 @@ export default class MainMenuModel { ...@@ -1970,7 +1970,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem161', authtag:'Web-MainMenu-menuitem161',
}, },
{ {
id: '1D51F230-C243-4F14-A078-FDF283432FC6', id: '6ACFC279-71A2-412B-AAFC-8DFED4EBFA27',
name: 'menuitem8', name: 'menuitem8',
text: '实体编辑视图', text: '实体编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -1989,7 +1989,7 @@ export default class MainMenuModel { ...@@ -1989,7 +1989,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem8', authtag:'Web-MainMenu-menuitem8',
}, },
{ {
id: 'C625452F-4C86-483D-B22E-4009D9D426A2', id: 'B589A990-8D08-4225-B704-678D72FCEAD5',
name: 'menuitem162', name: 'menuitem162',
text: '实体编辑视图(分页关系)', text: '实体编辑视图(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2008,7 +2008,7 @@ export default class MainMenuModel { ...@@ -2008,7 +2008,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem162', authtag:'Web-MainMenu-menuitem162',
}, },
{ {
id: '3BEA15A2-F444-44D1-872B-51ACA008D6D3', id: 'C3E1F1F0-2692-4439-BEA1-7E373C9F7B26',
name: 'menuitem163', name: 'menuitem163',
text: '实体编辑视图(上下关系)', text: '实体编辑视图(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2027,7 +2027,7 @@ export default class MainMenuModel { ...@@ -2027,7 +2027,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem163', authtag:'Web-MainMenu-menuitem163',
}, },
{ {
id: '4F4C3C31-1FA0-41A4-80BA-A27A268FF28B', id: 'D80AE5E9-AF71-4495-8EAB-87B40080DE8C',
name: 'menuitem164', name: 'menuitem164',
text: '实体编辑视图(左右关系)', text: '实体编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2046,7 +2046,7 @@ export default class MainMenuModel { ...@@ -2046,7 +2046,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem164', authtag:'Web-MainMenu-menuitem164',
}, },
{ {
id: 'AD5407EC-29CC-4988-A81E-276C4C61FE15', id: '9803FA9D-9224-4E85-AFFD-C21BB7404A62',
name: 'menuitem165', name: 'menuitem165',
text: '实体分页导航视图', text: '实体分页导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2065,7 +2065,7 @@ export default class MainMenuModel { ...@@ -2065,7 +2065,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem165', authtag:'Web-MainMenu-menuitem165',
}, },
{ {
id: '8964673B-ECA1-4457-9D2D-5164D426BF56', id: '1EB5597B-FC3F-455A-85B6-F96B464263CC',
name: 'menuitem166', name: 'menuitem166',
text: '实体数据看板视图', text: '实体数据看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2084,7 +2084,7 @@ export default class MainMenuModel { ...@@ -2084,7 +2084,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem166', authtag:'Web-MainMenu-menuitem166',
}, },
{ {
id: '6B6839A1-FC1A-4444-9ED1-5A87DC003C19', id: '204A2249-70C7-4244-8646-608B279BBEBB',
name: 'menuitem167', name: 'menuitem167',
text: '实体选项操作视图', text: '实体选项操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2105,7 +2105,7 @@ export default class MainMenuModel { ...@@ -2105,7 +2105,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '1B9A001A-9F53-41DB-BB6E-19916C76E531', id: 'AC1D833A-1A12-4B4A-948E-FDAAA2D222F3',
name: 'menuitem141', name: 'menuitem141',
text: '多数据视图', text: '多数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2124,7 +2124,7 @@ export default class MainMenuModel { ...@@ -2124,7 +2124,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem141', authtag:'Web-MainMenu-menuitem141',
items: [ items: [
{ {
id: '3036ED0E-8EBF-43D9-A279-19632A061E02', id: '6142A62B-B434-4EAC-AF84-57B6C1243991',
name: 'menuitem79', name: 'menuitem79',
text: '实体表格视图', text: '实体表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2143,7 +2143,7 @@ export default class MainMenuModel { ...@@ -2143,7 +2143,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem79', authtag:'Web-MainMenu-menuitem79',
}, },
{ {
id: 'CB7DEF04-3F48-437E-B40F-EAA6B7797F3C', id: '8583F132-2318-4B6B-97FC-357C70FFEEC7',
name: 'menuitem168', name: 'menuitem168',
text: '实体多表单编辑视图', text: '实体多表单编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2162,7 +2162,7 @@ export default class MainMenuModel { ...@@ -2162,7 +2162,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem168', authtag:'Web-MainMenu-menuitem168',
}, },
{ {
id: '6CB46F96-C081-4D7D-A349-DE55FC690979', id: '52785274-CDDB-465E-A2C0-536304F341C1',
name: 'menuitem169', name: 'menuitem169',
text: '实体甘特视图', text: '实体甘特视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2181,7 +2181,7 @@ export default class MainMenuModel { ...@@ -2181,7 +2181,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem169', authtag:'Web-MainMenu-menuitem169',
}, },
{ {
id: 'B1C6F694-6F6E-431B-AB62-B61D2471D353', id: 'B64C9FA6-7A0C-4C69-98C0-22810A88210F',
name: 'menuitem9', name: 'menuitem9',
text: '实体列表视图', text: '实体列表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2200,7 +2200,7 @@ export default class MainMenuModel { ...@@ -2200,7 +2200,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem9', authtag:'Web-MainMenu-menuitem9',
}, },
{ {
id: 'DF6B6693-924F-44FE-8F20-3E09BE0CEB2C', id: '7A542E3F-A264-493A-9B3A-1060A711C6A5',
name: 'menuitem170', name: 'menuitem170',
text: '实体日历视图', text: '实体日历视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2219,7 +2219,7 @@ export default class MainMenuModel { ...@@ -2219,7 +2219,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem170', authtag:'Web-MainMenu-menuitem170',
}, },
{ {
id: 'F7BB256F-853F-4074-8CE2-B8DCDBCE7AFC', id: '124EE13D-5E3E-40AC-A214-E647BB45B312',
name: 'menuitem171', name: 'menuitem171',
text: '实体看板视图', text: '实体看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2238,7 +2238,7 @@ export default class MainMenuModel { ...@@ -2238,7 +2238,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem171', authtag:'Web-MainMenu-menuitem171',
}, },
{ {
id: '9713109E-76CF-473D-9F51-1F367445ECF0', id: '385B2968-9E7F-4BF5-8837-AC9ED3D51A9C',
name: 'menuitem172', name: 'menuitem172',
text: '实体树表格视图', text: '实体树表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2257,7 +2257,7 @@ export default class MainMenuModel { ...@@ -2257,7 +2257,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem172', authtag:'Web-MainMenu-menuitem172',
}, },
{ {
id: '773A49FE-177D-42CB-AC44-26C550C831EB', id: '48F6D664-46FE-41BD-84F8-1FFED96B051B',
name: 'menuitem173', name: 'menuitem173',
text: '实体树视图', text: '实体树视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2276,7 +2276,7 @@ export default class MainMenuModel { ...@@ -2276,7 +2276,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem173', authtag:'Web-MainMenu-menuitem173',
}, },
{ {
id: '8C371092-9494-495F-8E70-1888896C5121', id: '735048C0-C135-49D8-AA25-35D7CA23DE55',
name: 'menuitem174', name: 'menuitem174',
text: '实体数据视图', text: '实体数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2295,7 +2295,7 @@ export default class MainMenuModel { ...@@ -2295,7 +2295,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem174', authtag:'Web-MainMenu-menuitem174',
}, },
{ {
id: '80541C17-54E5-407A-98A6-FD01BB8BFF23', id: '519A647F-A2AF-467B-B2E8-5499020323CB',
name: 'menuitem175', name: 'menuitem175',
text: '实体图表视图', text: '实体图表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2316,7 +2316,7 @@ export default class MainMenuModel { ...@@ -2316,7 +2316,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '792B06F2-CB59-4B9E-BC85-D8523380A637', id: '38FF8B2E-D41E-4FFF-9016-D86B41295912',
name: 'menuitem10', name: 'menuitem10',
text: '导航视图', text: '导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2335,7 +2335,7 @@ export default class MainMenuModel { ...@@ -2335,7 +2335,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem10', authtag:'Web-MainMenu-menuitem10',
items: [ items: [
{ {
id: '18A4E896-2C30-48FA-A1C9-51D112076D64', id: '4AF1BC86-0ECA-4101-9239-A409B3328423',
name: 'menuitem176', name: 'menuitem176',
text: '实体表格导航视图', text: '实体表格导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2354,7 +2354,7 @@ export default class MainMenuModel { ...@@ -2354,7 +2354,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem176', authtag:'Web-MainMenu-menuitem176',
}, },
{ {
id: '0F3BECCE-3A6C-495B-94C8-5B8EDF99B115', id: '7CE8B92E-DB5A-4E51-B447-2641B21C95F4',
name: 'menuitem177', name: 'menuitem177',
text: '实体列表导航视图', text: '实体列表导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2373,7 +2373,7 @@ export default class MainMenuModel { ...@@ -2373,7 +2373,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem177', authtag:'Web-MainMenu-menuitem177',
}, },
{ {
id: '3CE3184B-4206-4C00-9F14-9BDD904365DE', id: '9DF43805-9BC5-4C5B-B609-29CC3F89F0DC',
name: 'menuitem178', name: 'menuitem178',
text: '实体卡片导航视图', text: '实体卡片导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2392,7 +2392,7 @@ export default class MainMenuModel { ...@@ -2392,7 +2392,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem178', authtag:'Web-MainMenu-menuitem178',
}, },
{ {
id: 'D86F6C44-D5DD-4A0B-B6B5-11E41F98ADFF', id: '4E48D024-631C-42C6-9186-55FE9DC71F34',
name: 'menuitem179', name: 'menuitem179',
text: '实体日历导航视图', text: '实体日历导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2411,7 +2411,7 @@ export default class MainMenuModel { ...@@ -2411,7 +2411,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem179', authtag:'Web-MainMenu-menuitem179',
}, },
{ {
id: '50241984-FD2D-44FF-A46D-9796EB9572F2', id: 'B5A7FE2C-EC6F-4228-9C45-287E08E94E19',
name: 'menuitem180', name: 'menuitem180',
text: '实体树导航视图', text: '实体树导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2432,7 +2432,7 @@ export default class MainMenuModel { ...@@ -2432,7 +2432,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '3B3452DC-998C-4E28-89F0-2B9C0A63F288', id: '237A663F-4B14-4797-95B3-50B9AB634271',
name: 'menuitem26', name: 'menuitem26',
text: '选择视图', text: '选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2451,7 +2451,7 @@ export default class MainMenuModel { ...@@ -2451,7 +2451,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem26', authtag:'Web-MainMenu-menuitem26',
items: [ items: [
{ {
id: '49D8C605-2985-4BF6-8105-2D4A30BE9C8F', id: '65C59409-2A54-4ED8-B9E1-8132F2A8180A',
name: 'menuitem18', name: 'menuitem18',
text: '数据选择视图', text: '数据选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2470,7 +2470,7 @@ export default class MainMenuModel { ...@@ -2470,7 +2470,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem18', authtag:'Web-MainMenu-menuitem18',
}, },
{ {
id: 'F02B9326-87A7-4089-988E-0CF7C30722D9', id: 'B2E0242E-ED21-443D-A7D5-ED36CE78B0F4',
name: 'menuitem27', name: 'menuitem27',
text: '索引选择视图', text: '索引选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2491,7 +2491,7 @@ export default class MainMenuModel { ...@@ -2491,7 +2491,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'F100F672-956B-4BDE-9760-7F6CCA391439', id: 'DEB284EE-0C00-40AA-9E2E-74FDB728B49E',
name: 'menuitem69', name: 'menuitem69',
text: '工作流', text: '工作流',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2510,7 +2510,7 @@ export default class MainMenuModel { ...@@ -2510,7 +2510,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem69', authtag:'Web-MainMenu-menuitem69',
items: [ items: [
{ {
id: 'BE4A8990-19E7-446C-AE03-8909A9C0B5B7', id: 'DBA6ACEE-1536-4BB5-B383-F9CFCBDC448D',
name: 'menuitem30', name: 'menuitem30',
text: '工作流动态导航视图', text: '工作流动态导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2529,7 +2529,7 @@ export default class MainMenuModel { ...@@ -2529,7 +2529,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem30', authtag:'Web-MainMenu-menuitem30',
}, },
{ {
id: '5A5ADF6D-30C7-422D-AC84-1239242E23E6', id: '74F3F16F-DEB5-46AA-AFCA-6C6B5D96E42D',
name: 'menuitem31', name: 'menuitem31',
text: '工作流启动', text: '工作流启动',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2548,7 +2548,7 @@ export default class MainMenuModel { ...@@ -2548,7 +2548,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem31', authtag:'Web-MainMenu-menuitem31',
}, },
{ {
id: '2FA5728D-609E-4F74-90CF-7B53FFBD13AA', id: '51AFEDFF-44FE-4ADC-9DE5-23DAF35EFC57',
name: 'menuitem21', name: 'menuitem21',
text: '工作流动态操作视图', text: '工作流动态操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2569,7 +2569,7 @@ export default class MainMenuModel { ...@@ -2569,7 +2569,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'C9BA0526-73DB-4DB9-8536-E94305079C7F', id: '12C15578-7086-41A9-B87D-FAF31E467E4F',
name: 'menuitem11', name: 'menuitem11',
text: '其他视图', text: '其他视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2588,7 +2588,7 @@ export default class MainMenuModel { ...@@ -2588,7 +2588,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem11', authtag:'Web-MainMenu-menuitem11',
items: [ items: [
{ {
id: '91EE379B-B8F1-445A-9ABF-D0B5976D7D91', id: '1C50F814-4687-45D3-896A-0A1B61D11987',
name: 'menuitem98', name: 'menuitem98',
text: '自定义视图', text: '自定义视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2611,7 +2611,7 @@ export default class MainMenuModel { ...@@ -2611,7 +2611,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'B0453C23-F1D0-41B7-86EC-732E13FA36F2', id: 'E9C8E90B-364D-4247-B3AF-7158E1E91B12',
name: 'menuitem153', name: 'menuitem153',
text: '逻辑', text: '逻辑',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2630,7 +2630,7 @@ export default class MainMenuModel { ...@@ -2630,7 +2630,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem153', authtag:'Web-MainMenu-menuitem153',
items: [ items: [
{ {
id: 'B02D1BAA-7E8C-45DE-B857-7BF9F660D474', id: 'CF313F1A-F466-4C01-B00D-A9057BD93D10',
name: 'menuitem154', name: 'menuitem154',
text: '应用功能', text: '应用功能',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2649,7 +2649,7 @@ export default class MainMenuModel { ...@@ -2649,7 +2649,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem154', authtag:'Web-MainMenu-menuitem154',
items: [ items: [
{ {
id: '8D1A106B-5777-4476-9B4F-9E953839848A', id: '745DE533-B1B1-46FA-A035-99EAFDD2DF85',
name: 'menuitem127', name: 'menuitem127',
text: '打开应用视图', text: '打开应用视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2668,7 +2668,7 @@ export default class MainMenuModel { ...@@ -2668,7 +2668,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem127', authtag:'Web-MainMenu-menuitem127',
}, },
{ {
id: '1E5E1E19-D6F8-4F96-A7A8-41A61F9FC431', id: 'C91CE556-8861-4236-84DF-53815562400F',
name: 'menuitem147', name: 'menuitem147',
text: '打开HTML页面', text: '打开HTML页面',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2687,7 +2687,7 @@ export default class MainMenuModel { ...@@ -2687,7 +2687,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem147', authtag:'Web-MainMenu-menuitem147',
}, },
{ {
id: 'A8284D83-367B-40E3-AA58-F8E06325811E', id: '41351F80-3400-4CB6-85FD-9774BA133138',
name: 'menuitem160', name: 'menuitem160',
text: '执行JavaScript', text: '执行JavaScript',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2708,7 +2708,7 @@ export default class MainMenuModel { ...@@ -2708,7 +2708,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '2B1AA9E7-C99E-4BE2-A77C-1348808B0FD8', id: '0A02BDFA-6234-453A-9CFB-45D980334F96',
name: 'menuitem155', name: 'menuitem155',
text: '界面行为', text: '界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2727,7 +2727,7 @@ export default class MainMenuModel { ...@@ -2727,7 +2727,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem155', authtag:'Web-MainMenu-menuitem155',
items: [ items: [
{ {
id: '7B45AAEC-9566-4245-AD9F-8748FEF6EA3F', id: 'E179B5F9-CFF4-40A0-8BAF-407A91C4D0E7',
name: 'menuitem181', name: 'menuitem181',
text: '前台界面行为', text: '前台界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2746,7 +2746,7 @@ export default class MainMenuModel { ...@@ -2746,7 +2746,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem181', authtag:'Web-MainMenu-menuitem181',
}, },
{ {
id: '810DFC4C-A6BF-42A2-8CD0-BDE5228775E6', id: 'E6FE3168-4A51-4727-93E5-A21065077579',
name: 'menuitem182', name: 'menuitem182',
text: '后台界面行为', text: '后台界面行为',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2769,7 +2769,7 @@ export default class MainMenuModel { ...@@ -2769,7 +2769,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '0C8FB2C3-9BDE-4045-B6A1-B27A9C271F25', id: '7B75F84B-AD51-4339-A4E1-C8E7FBD5A46F',
name: 'menuitem2', name: 'menuitem2',
text: '更多', text: '更多',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2788,7 +2788,7 @@ export default class MainMenuModel { ...@@ -2788,7 +2788,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem2', authtag:'Web-MainMenu-menuitem2',
items: [ items: [
{ {
id: '418046D9-9D61-4F1D-B31B-1F621766880D', id: '4E85F6A2-2467-4320-B831-866F27B00686',
name: 'menuitem19', name: 'menuitem19',
text: '临时模式', text: '临时模式',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2807,7 +2807,7 @@ export default class MainMenuModel { ...@@ -2807,7 +2807,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem19', authtag:'Web-MainMenu-menuitem19',
}, },
{ {
id: '7A4FA091-0C87-4BD9-A60E-BD0EDAF7166D', id: '2AE12804-05A2-4848-BAA8-724D1DB2CE34',
name: 'menuitem46', name: 'menuitem46',
text: '数据导出导入', text: '数据导出导入',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2826,7 +2826,7 @@ export default class MainMenuModel { ...@@ -2826,7 +2826,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem46', authtag:'Web-MainMenu-menuitem46',
}, },
{ {
id: '913A0535-5F72-4CB7-9442-FA9253C8603F', id: 'B16ACB99-87F5-46CA-88A0-FEE426A31923',
name: 'menuitem67', name: 'menuitem67',
text: '索引实体', text: '索引实体',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2845,7 +2845,7 @@ export default class MainMenuModel { ...@@ -2845,7 +2845,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem67', authtag:'Web-MainMenu-menuitem67',
}, },
{ {
id: 'CF61372C-DD8A-4879-8F59-179BB98325DD', id: 'F630C504-E5AA-41D7-AA30-0CC5DFAFFBDC',
name: 'menuitem184', name: 'menuitem184',
text: '主状态', text: '主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2864,7 +2864,7 @@ export default class MainMenuModel { ...@@ -2864,7 +2864,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem184', authtag:'Web-MainMenu-menuitem184',
items: [ items: [
{ {
id: '5950049F-671E-4E05-A12E-013B386B8484', id: '96AC8A9A-7FF9-4C49-8610-EB948CA35253',
name: 'menuitem70', name: 'menuitem70',
text: '表格主状态', text: '表格主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2883,7 +2883,7 @@ export default class MainMenuModel { ...@@ -2883,7 +2883,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem70', authtag:'Web-MainMenu-menuitem70',
}, },
{ {
id: 'D14D2A2B-4DC1-41D9-BEDC-48A0529E563E', id: 'EBB4BC71-4436-47EE-8EE5-90ABAED1E8EC',
name: 'menuitem148', name: 'menuitem148',
text: '列表主状态', text: '列表主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2902,7 +2902,7 @@ export default class MainMenuModel { ...@@ -2902,7 +2902,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem148', authtag:'Web-MainMenu-menuitem148',
}, },
{ {
id: 'F00C9D4E-5F2A-478A-87A0-306424DA9BF3', id: '279BE957-7FC4-42FC-B25B-A8C8D9453737',
name: 'menuitem183', name: 'menuitem183',
text: '数据主状态', text: '数据主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2921,7 +2921,7 @@ export default class MainMenuModel { ...@@ -2921,7 +2921,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem183', authtag:'Web-MainMenu-menuitem183',
}, },
{ {
id: '00E7F2E5-CAFC-4C21-8BE1-CAFA6906D8E1', id: 'F2606F5B-CF28-4AF3-81AD-93539744823A',
name: 'menuitem28', name: 'menuitem28',
text: '日历主状态', text: '日历主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2940,7 +2940,7 @@ export default class MainMenuModel { ...@@ -2940,7 +2940,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem28', authtag:'Web-MainMenu-menuitem28',
}, },
{ {
id: 'CD607D93-B0B7-47A2-9AAC-5F9E08245C02', id: 'A8EEAB9D-85F8-4FB6-85F0-14A8ADB02567',
name: 'menuitem29', name: 'menuitem29',
text: '树主状态', text: '树主状态',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2963,7 +2963,7 @@ export default class MainMenuModel { ...@@ -2963,7 +2963,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'FD41BEDF-B105-43EA-AE94-C826411F9F55', id: 'C4E576F3-FBD2-459C-8D48-52D5F2EAB039',
name: 'menuitem22', name: 'menuitem22',
text: '测试', text: '测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -2982,7 +2982,7 @@ export default class MainMenuModel { ...@@ -2982,7 +2982,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem22', authtag:'Web-MainMenu-menuitem22',
items: [ items: [
{ {
id: '966D5DE9-6EF7-40EC-9CA5-8253F3701340', id: 'D2872250-31D3-4C64-A196-8616E1D1125C',
name: 'menuitem23', name: 'menuitem23',
text: '卡片导航', text: '卡片导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3001,7 +3001,7 @@ export default class MainMenuModel { ...@@ -3001,7 +3001,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem23', authtag:'Web-MainMenu-menuitem23',
}, },
{ {
id: '91B16883-62D9-4317-936F-26FEF61EDAF6', id: '666BAE66-76EA-4574-81FC-9FD788E1FB23',
name: 'menuitem24', name: 'menuitem24',
text: '表单嵌入卡片视图', text: '表单嵌入卡片视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3020,7 +3020,7 @@ export default class MainMenuModel { ...@@ -3020,7 +3020,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem24', authtag:'Web-MainMenu-menuitem24',
}, },
{ {
id: '8DAD1EA0-6D77-43B1-AEBE-FD1B85A6C7D4', id: 'DFBC5669-2ED2-427D-8D47-EFD1F3E0BF47',
name: 'menuitem25', name: 'menuitem25',
text: '关系界面刷新主表单', text: '关系界面刷新主表单',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3041,7 +3041,7 @@ export default class MainMenuModel { ...@@ -3041,7 +3041,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '9B1F217D-8A8B-4E64-AA7B-5250993B36D1', id: 'E175D786-50C7-41A2-94CE-FA7B4E53BDEF',
name: 'menuitem66', name: 'menuitem66',
text: '视图布局面板测试', text: '视图布局面板测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3060,7 +3060,7 @@ export default class MainMenuModel { ...@@ -3060,7 +3060,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem66', authtag:'Web-MainMenu-menuitem66',
items: [ items: [
{ {
id: 'CD0F4CE8-2B9F-4225-9C72-0A212CC9DF4F', id: '4ECC40C2-A671-42DE-A711-D51C9C210A2B',
name: 'menuitem125', name: 'menuitem125',
text: '测试表单自定义布局多媒体', text: '测试表单自定义布局多媒体',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3079,7 +3079,7 @@ export default class MainMenuModel { ...@@ -3079,7 +3079,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem125', authtag:'Web-MainMenu-menuitem125',
}, },
{ {
id: 'ACA2B672-FF2E-49D2-BDCF-A3D9716FF611', id: '89230158-6C32-452E-91B3-395910F7474D',
name: 'menuitem126', name: 'menuitem126',
text: '自定义导航', text: '自定义导航',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3098,7 +3098,7 @@ export default class MainMenuModel { ...@@ -3098,7 +3098,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem126', authtag:'Web-MainMenu-menuitem126',
}, },
{ {
id: 'FE1416F9-4F7C-4855-A477-2623C5F167EC', id: '14553AF5-C156-4763-914C-95C67C9CF1C7',
name: 'menuitem130', name: 'menuitem130',
text: '布局面板组件测试', text: '布局面板组件测试',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3117,7 +3117,7 @@ export default class MainMenuModel { ...@@ -3117,7 +3117,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem130', authtag:'Web-MainMenu-menuitem130',
}, },
{ {
id: 'C292C90F-EE51-4328-BCEB-6B627447FDA1', id: 'C484800D-366A-4E51-8EB7-3C8C880084FD',
name: 'menuitem131', name: 'menuitem131',
text: '编辑视图(左右关系)', text: '编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3136,7 +3136,7 @@ export default class MainMenuModel { ...@@ -3136,7 +3136,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem131', authtag:'Web-MainMenu-menuitem131',
}, },
{ {
id: '87358BC9-6567-4BE6-ADC8-92728C3A80A3', id: '73593064-1AE3-4F5D-B762-BDE3631D6E92',
name: 'menuitem142', name: 'menuitem142',
text: '列表视图(自定义面板)', text: '列表视图(自定义面板)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3155,7 +3155,7 @@ export default class MainMenuModel { ...@@ -3155,7 +3155,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem142', authtag:'Web-MainMenu-menuitem142',
}, },
{ {
id: 'DCDE2773-61D2-400A-9D4E-4251E2081B2F', id: '8939891C-C509-415C-B76E-07C2135E613B',
name: 'menuitem189', name: 'menuitem189',
text: '测试布局面板(树导航)', text: '测试布局面板(树导航)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3174,7 +3174,7 @@ export default class MainMenuModel { ...@@ -3174,7 +3174,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem189', authtag:'Web-MainMenu-menuitem189',
}, },
{ {
id: '5846218A-08E2-44AC-A7BF-1FB0E369C4C6', id: '315439DB-BB36-4094-A61E-CE3831725BB4',
name: 'menuitem190', name: 'menuitem190',
text: '视图', text: '视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3193,7 +3193,7 @@ export default class MainMenuModel { ...@@ -3193,7 +3193,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem190', authtag:'Web-MainMenu-menuitem190',
items: [ items: [
{ {
id: '58D994A8-E03B-4E85-9D6A-16339DF9D3C3', id: '85C37D27-D810-462C-81FE-BDE43E23EC8D',
name: 'menuitem191', name: 'menuitem191',
text: '单数据视图', text: '单数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3212,7 +3212,7 @@ export default class MainMenuModel { ...@@ -3212,7 +3212,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem191', authtag:'Web-MainMenu-menuitem191',
items: [ items: [
{ {
id: 'A243C996-F250-47FA-A312-55C620A1ADD0', id: '64BEFC7F-C291-49C1-A236-5364BA9D13FA',
name: 'menuitem192', name: 'menuitem192',
text: '实体向导视图', text: '实体向导视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3231,7 +3231,7 @@ export default class MainMenuModel { ...@@ -3231,7 +3231,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem192', authtag:'Web-MainMenu-menuitem192',
}, },
{ {
id: '8B389432-02BC-4544-8D40-3F718A59C3B0', id: 'F922CCF0-180D-46C0-A67B-9D5E288DEE62',
name: 'menuitem193', name: 'menuitem193',
text: '实体编辑视图', text: '实体编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3250,7 +3250,7 @@ export default class MainMenuModel { ...@@ -3250,7 +3250,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem193', authtag:'Web-MainMenu-menuitem193',
}, },
{ {
id: 'A302229A-6825-4F05-B7AC-28BA692917B9', id: 'EC85806E-2370-437D-A0B3-C06EC98F7207',
name: 'menuitem194', name: 'menuitem194',
text: '实体编辑视图(分页关系)', text: '实体编辑视图(分页关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3269,7 +3269,7 @@ export default class MainMenuModel { ...@@ -3269,7 +3269,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem194', authtag:'Web-MainMenu-menuitem194',
}, },
{ {
id: '085D96AA-D9B8-4545-90BC-09A873DFC76F', id: '1F572FB9-844D-457B-92AA-19DF58AEFCE1',
name: 'menuitem195', name: 'menuitem195',
text: '实体编辑视图(上下关系)', text: '实体编辑视图(上下关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3288,7 +3288,7 @@ export default class MainMenuModel { ...@@ -3288,7 +3288,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem195', authtag:'Web-MainMenu-menuitem195',
}, },
{ {
id: 'EB6EF491-226A-4540-846A-2C0A1D454AF6', id: '9E07FAD5-EA30-47B2-9A10-533BDC112244',
name: 'menuitem196', name: 'menuitem196',
text: '实体编辑视图(左右关系)', text: '实体编辑视图(左右关系)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3307,7 +3307,7 @@ export default class MainMenuModel { ...@@ -3307,7 +3307,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem196', authtag:'Web-MainMenu-menuitem196',
}, },
{ {
id: '4C8DC872-5ABA-4E3E-AA3D-3E7D425AFD4B', id: '0BC177F1-041B-45CD-B38C-9E1ED1273600',
name: 'menuitem197', name: 'menuitem197',
text: '实体分页导航视图', text: '实体分页导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3326,7 +3326,7 @@ export default class MainMenuModel { ...@@ -3326,7 +3326,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem197', authtag:'Web-MainMenu-menuitem197',
}, },
{ {
id: '81F73E31-D419-4DAC-A28B-ECA9B5D7344E', id: '457F2AF3-0440-4397-B31C-0CFE6C950CAB',
name: 'menuitem198', name: 'menuitem198',
text: '实体数据看板视图', text: '实体数据看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3345,7 +3345,7 @@ export default class MainMenuModel { ...@@ -3345,7 +3345,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem198', authtag:'Web-MainMenu-menuitem198',
}, },
{ {
id: '207F18F4-D1DA-48D7-B536-3AA3ED9BF22A', id: '4F892F70-882D-4010-AFE5-88763D2B3B89',
name: 'menuitem199', name: 'menuitem199',
text: '实体选项操作视图', text: '实体选项操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3366,7 +3366,7 @@ export default class MainMenuModel { ...@@ -3366,7 +3366,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '31E67AD2-4C39-478E-AFB7-30CDBE589332', id: '26167393-6024-4333-85BC-190AE97B56A9',
name: 'menuitem200', name: 'menuitem200',
text: '多数据视图', text: '多数据视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3385,7 +3385,7 @@ export default class MainMenuModel { ...@@ -3385,7 +3385,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem200', authtag:'Web-MainMenu-menuitem200',
items: [ items: [
{ {
id: 'FA98B1A9-F936-45FA-92DC-03679CB0936C', id: 'DB35DE83-0109-4322-A185-0026B4A4D48D',
name: 'menuitem122', name: 'menuitem122',
text: '表格视图面板', text: '表格视图面板',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3404,7 +3404,7 @@ export default class MainMenuModel { ...@@ -3404,7 +3404,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem122', authtag:'Web-MainMenu-menuitem122',
}, },
{ {
id: 'CF483D07-7B49-4F14-8F02-4FDC4F6F3171', id: 'F8FB1EA1-3B81-4A45-B3F7-648ABEF7361C',
name: 'menuitem202', name: 'menuitem202',
text: '实体多表单编辑视图', text: '实体多表单编辑视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3423,7 +3423,7 @@ export default class MainMenuModel { ...@@ -3423,7 +3423,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem202', authtag:'Web-MainMenu-menuitem202',
}, },
{ {
id: '3E64E4F5-4386-4F7C-BDC7-AD6B77125E1A', id: '3CD63AAA-A874-4B5C-AA16-30466B0C41E7',
name: 'menuitem203', name: 'menuitem203',
text: '实体甘特视图', text: '实体甘特视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3442,7 +3442,7 @@ export default class MainMenuModel { ...@@ -3442,7 +3442,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem203', authtag:'Web-MainMenu-menuitem203',
}, },
{ {
id: 'B1DAF7B7-C7C5-4343-BFBE-BE464CB8F828', id: 'CDB9B2A4-4CC2-4F0E-AE82-E652E3B87FD6',
name: 'menuitem204', name: 'menuitem204',
text: '实体列表视图', text: '实体列表视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3461,7 +3461,7 @@ export default class MainMenuModel { ...@@ -3461,7 +3461,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem204', authtag:'Web-MainMenu-menuitem204',
}, },
{ {
id: '0FF18E81-1F46-4E78-8F29-36FA7C87C652', id: '9118E2F4-6021-4D2B-A313-712FF060C265',
name: 'menuitem187', name: 'menuitem187',
text: '测试布局面板(日历视图)', text: '测试布局面板(日历视图)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3480,7 +3480,7 @@ export default class MainMenuModel { ...@@ -3480,7 +3480,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem187', authtag:'Web-MainMenu-menuitem187',
}, },
{ {
id: '982CFF69-2955-4A22-BDE2-195F3EFFCF51', id: '9DF77D6A-0F57-4353-8DB0-13F90BC787D2',
name: 'menuitem206', name: 'menuitem206',
text: '实体看板视图', text: '实体看板视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3499,7 +3499,7 @@ export default class MainMenuModel { ...@@ -3499,7 +3499,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem206', authtag:'Web-MainMenu-menuitem206',
}, },
{ {
id: '64F3DA00-224C-4FCC-9A05-02C41AFCF795', id: '45F83512-EF05-4EFD-9D7C-32D35B25D976',
name: 'menuitem207', name: 'menuitem207',
text: '实体树表格视图', text: '实体树表格视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3518,7 +3518,7 @@ export default class MainMenuModel { ...@@ -3518,7 +3518,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem207', authtag:'Web-MainMenu-menuitem207',
}, },
{ {
id: '183862E4-7AA9-400F-B804-B5E2CA0DAE1F', id: '439C87B1-A069-4E98-B986-E15879A47F29',
name: 'menuitem185', name: 'menuitem185',
text: '测试布局面板(树视图)', text: '测试布局面板(树视图)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3537,7 +3537,7 @@ export default class MainMenuModel { ...@@ -3537,7 +3537,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem185', authtag:'Web-MainMenu-menuitem185',
}, },
{ {
id: '42E61A64-6189-4CA2-AB4C-E30748285465', id: '9DAA57D2-0D6B-4FD3-8B50-0A53FBCD4BAC',
name: 'menuitem159', name: 'menuitem159',
text: '卡片视图(布局面板)', text: '卡片视图(布局面板)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3556,7 +3556,7 @@ export default class MainMenuModel { ...@@ -3556,7 +3556,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem159', authtag:'Web-MainMenu-menuitem159',
}, },
{ {
id: '5417AA57-30B7-45EA-9FCF-ECFE892E11DD', id: 'FFF49CBD-CAEB-440F-96E8-467D02C5445D',
name: 'menuitem188', name: 'menuitem188',
text: '测试布局面板(图表)', text: '测试布局面板(图表)',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3577,7 +3577,7 @@ export default class MainMenuModel { ...@@ -3577,7 +3577,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '26998A79-3BDA-4CB3-A05C-B59CA88FD23D', id: '8E373BE6-A54F-489D-8840-3A0C28638BA3',
name: 'menuitem211', name: 'menuitem211',
text: '导航视图', text: '导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3596,7 +3596,7 @@ export default class MainMenuModel { ...@@ -3596,7 +3596,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem211', authtag:'Web-MainMenu-menuitem211',
items: [ items: [
{ {
id: '3FA84B36-C8BA-4FBC-8343-448F3AF8D2B7', id: '53405068-02C4-4C83-8E6D-BA0B8F0907A1',
name: 'menuitem215', name: 'menuitem215',
text: '实体表格导航视图', text: '实体表格导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3615,7 +3615,7 @@ export default class MainMenuModel { ...@@ -3615,7 +3615,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem215', authtag:'Web-MainMenu-menuitem215',
}, },
{ {
id: 'C8264CFA-4798-402F-96C2-2A0CB44687CD', id: 'D4694DF5-4F05-4BCF-8055-934863B183F9',
name: 'menuitem216', name: 'menuitem216',
text: '实体列表导航视图', text: '实体列表导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3634,7 +3634,7 @@ export default class MainMenuModel { ...@@ -3634,7 +3634,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem216', authtag:'Web-MainMenu-menuitem216',
}, },
{ {
id: '2F5E21F4-CEB3-432D-B4F5-D67C89BC7CB8', id: 'AB602B8F-560B-4ADD-8585-090F552931BD',
name: 'menuitem217', name: 'menuitem217',
text: '实体卡片导航视图', text: '实体卡片导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3653,7 +3653,7 @@ export default class MainMenuModel { ...@@ -3653,7 +3653,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem217', authtag:'Web-MainMenu-menuitem217',
}, },
{ {
id: '3745DC7E-E980-42A0-8647-4EB781A8EDC3', id: '5D2158F6-3BE8-41F1-A62E-D49CB0A89583',
name: 'menuitem218', name: 'menuitem218',
text: '实体日历导航视图', text: '实体日历导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3672,7 +3672,7 @@ export default class MainMenuModel { ...@@ -3672,7 +3672,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem218', authtag:'Web-MainMenu-menuitem218',
}, },
{ {
id: 'CC8F9D11-491C-43AA-8054-8AE1C2976F29', id: '78EA3065-DE2E-4315-AFAE-8289BC6EB27B',
name: 'menuitem219', name: 'menuitem219',
text: '实体树导航视图', text: '实体树导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3693,7 +3693,7 @@ export default class MainMenuModel { ...@@ -3693,7 +3693,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '6C8A913E-73EC-4776-95A5-F9AD5636A786', id: '3AB505BE-FCCC-4B22-A1D3-45FCF473FED4',
name: 'menuitem220', name: 'menuitem220',
text: '选择视图', text: '选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3712,7 +3712,7 @@ export default class MainMenuModel { ...@@ -3712,7 +3712,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem220', authtag:'Web-MainMenu-menuitem220',
items: [ items: [
{ {
id: '86595F19-09A7-44A4-BFDE-D2AFC5F52725', id: '5477F814-811E-4716-A46F-B4BA496AF279',
name: 'menuitem221', name: 'menuitem221',
text: '数据选择视图', text: '数据选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3731,7 +3731,7 @@ export default class MainMenuModel { ...@@ -3731,7 +3731,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem221', authtag:'Web-MainMenu-menuitem221',
}, },
{ {
id: 'F0F85DDF-B9C6-4B6C-8FDF-C5996D2E1F0D', id: '32A12DA2-AEE6-4067-AFA9-044A8526321A',
name: 'menuitem222', name: 'menuitem222',
text: '索引选择视图', text: '索引选择视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3752,7 +3752,7 @@ export default class MainMenuModel { ...@@ -3752,7 +3752,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: 'F2CCABE2-A361-4D4A-BD8E-C2B11D6387BC', id: 'FEAFDCA2-4331-4A7D-9AE0-BCACDAA9A898',
name: 'menuitem223', name: 'menuitem223',
text: '工作流', text: '工作流',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3771,7 +3771,7 @@ export default class MainMenuModel { ...@@ -3771,7 +3771,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem223', authtag:'Web-MainMenu-menuitem223',
items: [ items: [
{ {
id: '1F070739-C1F0-484B-8EDF-C011DF8C08BA', id: '5FAD0EA7-F9EC-4FB8-81F9-D6DF353EE307',
name: 'menuitem224', name: 'menuitem224',
text: '工作流动态导航视图', text: '工作流动态导航视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3790,7 +3790,7 @@ export default class MainMenuModel { ...@@ -3790,7 +3790,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem224', authtag:'Web-MainMenu-menuitem224',
}, },
{ {
id: 'F16FB4C9-405D-428E-9096-8369CD5FDE33', id: 'E4D5431B-9325-4878-9EB5-CD214A93FFAF',
name: 'menuitem225', name: 'menuitem225',
text: '工作流启动', text: '工作流启动',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3809,7 +3809,7 @@ export default class MainMenuModel { ...@@ -3809,7 +3809,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem225', authtag:'Web-MainMenu-menuitem225',
}, },
{ {
id: '9B5D04C8-C50C-40C0-90D7-BB1D4A79D363', id: '486FB200-558C-4387-8D16-287B47AB1600',
name: 'menuitem226', name: 'menuitem226',
text: '工作流动态操作视图', text: '工作流动态操作视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3830,7 +3830,7 @@ export default class MainMenuModel { ...@@ -3830,7 +3830,7 @@ export default class MainMenuModel {
], ],
}, },
{ {
id: '33F2F923-6A88-46B5-AFA5-8EEECB418420', id: '930EA152-2130-4388-8233-9A3E33535EF8',
name: 'menuitem227', name: 'menuitem227',
text: '其他视图', text: '其他视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3849,7 +3849,7 @@ export default class MainMenuModel { ...@@ -3849,7 +3849,7 @@ export default class MainMenuModel {
authtag:'Web-MainMenu-menuitem227', authtag:'Web-MainMenu-menuitem227',
items: [ items: [
{ {
id: '6293C0B4-37D0-4CEF-8AA2-8193C33A4FE8', id: '055E4BE3-1CBC-408B-A1B2-A54AABC52E16',
name: 'menuitem230', name: 'menuitem230',
text: '自定义视图', text: '自定义视图',
type: 'MENUITEM', type: 'MENUITEM',
...@@ -3870,6 +3870,25 @@ export default class MainMenuModel { ...@@ -3870,6 +3870,25 @@ export default class MainMenuModel {
], ],
}, },
], ],
},
{
id: 'F0C9163C-0840-45AE-9D8C-0022448B282C',
name: 'menuitem201',
text: '测试界面逻辑',
type: 'MENUITEM',
counterid: '',
tooltip: '测试界面逻辑',
expanded: false,
separator: false,
hidden: false,
hidesidebar: false,
opendefault: false,
iconcls: '',
icon: '',
textcls: '',
appfunctag: 'UsrAppFunc1108357066',
resourcetag: '',
authtag:'Web-MainMenu-menuitem201',
}, },
], ],
}, },
...@@ -5544,6 +5563,18 @@ export default class MainMenuModel { ...@@ -5544,6 +5563,18 @@ export default class MainMenuModel {
{ pathName: 'customview_layout', parameterName: 'customview_layout' }, { pathName: 'customview_layout', parameterName: 'customview_layout' },
], ],
}, },
{
appfunctag: 'UsrAppFunc1108357066',
appfuncyype: 'APPVIEW',
openmode: '',
codename: 'ibizbooktestlogiccustomview',
deResParameters: [],
routepath: '/index/:index?/ibizbooks/:ibizbook?/testlogiccustomview/:testlogiccustomview?',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'testlogiccustomview', parameterName: 'testlogiccustomview' },
],
},
]; ];
/** /**
......
...@@ -671,7 +671,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -671,7 +671,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -707,7 +707,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -707,7 +707,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public loadDraft(opt: any = {},mode?:string): void { public loadDraft(opt: any = {},mode?:string): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -1808,7 +1808,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1808,7 +1808,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1843,7 +1843,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1843,7 +1843,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public loadDraft(opt: any = {}): void { public loadDraft(opt: any = {}): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1905,7 +1905,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1905,7 +1905,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -2013,7 +2013,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2013,7 +2013,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -2090,7 +2090,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2090,7 +2090,7 @@ export default class MainBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -629,7 +629,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -629,7 +629,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -665,7 +665,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -665,7 +665,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public loadDraft(opt: any = {},mode?:string): void { public loadDraft(opt: any = {},mode?:string): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -665,7 +665,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -665,7 +665,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}, isReset: boolean = false): void { public load(opt: any = {}, isReset: boolean = false): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -744,7 +744,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -744,7 +744,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -853,7 +853,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -853,7 +853,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -861,7 +861,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -861,7 +861,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
......
...@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderPickupGridViewBase * @memberof IBIZOrderSF1GridViewBase
*/ */
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) { if (args.length === 0) {
...@@ -421,6 +421,20 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -421,6 +421,20 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0]; return this.selections[0];
} }
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/** /**
* 是否嵌入关系界面 * 是否嵌入关系界面
...@@ -953,7 +967,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -953,7 +967,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}, pageReset: boolean = false): void { public load(opt: any = {}, pageReset: boolean = false): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(pageReset){ if(pageReset){
...@@ -1048,7 +1062,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1048,7 +1062,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -1154,7 +1168,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1154,7 +1168,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2071,7 +2085,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2071,7 +2085,7 @@ export default class MainBase extends Vue implements ControlInterface {
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -2079,7 +2093,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2079,7 +2093,7 @@ export default class MainBase extends Vue implements ControlInterface {
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
...@@ -2146,7 +2160,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2146,7 +2160,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public newRow(args: any[], params?: any, $event?: any, xData?: any): void { public newRow(args: any[], params?: any, $event?: any, xData?: any): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.loaddraftAction') as string) });
return; return;
} }
let _this = this; let _this = this;
......
...@@ -104,6 +104,21 @@ export default class MainModel { ...@@ -104,6 +104,21 @@ export default class MainModel {
prop: 'n_ibizordername_like', prop: 'n_ibizordername_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_orderstate_eq',
prop: 'n_orderstate_eq',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_gt',
prop: 'n_ordertime_gt',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_lt',
prop: 'n_ordertime_lt',
dataType: 'QUERYPARAM'
},
{ {
name:'size', name:'size',
......
...@@ -4262,6 +4262,24 @@ ...@@ -4262,6 +4262,24 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"tooltip" : "视图" "tooltip" : "视图"
}, {
"accUserMode" : 2,
"caption" : "测试界面逻辑",
"itemType" : "MENUITEM",
"name" : "menuitem201",
"getPSAppFunc" : {
"modelref" : true,
"id" : "UsrAppFunc1108357066"
},
"getPSLayout" : {
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"tooltip" : "测试界面逻辑"
} ], } ],
"getPSLayout" : { "getPSLayout" : {
"columnCount" : 24, "columnCount" : 24,
......
...@@ -2379,6 +2379,16 @@ ...@@ -2379,6 +2379,16 @@
"tooltip" : "其他视图" "tooltip" : "其他视图"
} ], } ],
"tooltip" : "视图" "tooltip" : "视图"
}, {
"accUserMode" : 2,
"caption" : "测试界面逻辑",
"itemType" : "MENUITEM",
"name" : "menuitem201",
"getPSAppFunc" : {
"modelref" : true,
"id" : "UsrAppFunc1108357066"
},
"tooltip" : "测试界面逻辑"
} ], } ],
"tooltip" : "视图布局面板测试" "tooltip" : "视图布局面板测试"
} ], } ],
......
...@@ -2997,6 +2997,16 @@ ...@@ -2997,6 +2997,16 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr4EditView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr4EditView.json",
"viewType" : "DEEDITVIEW" "viewType" : "DEEDITVIEW"
} }
}, {
"appFuncType" : "APPVIEW",
"codeName" : "UsrAppFunc1108357066",
"name" : "测试界面逻辑(表单加载)",
"openMode" : "INDEXVIEWTAB",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTestLogicCustomView.json",
"viewType" : "DECUSTOMVIEW"
}
}, { }, {
"appFuncType" : "APPVIEW", "appFuncType" : "APPVIEW",
"codeName" : "AppFunc114", "codeName" : "AppFunc114",
...@@ -19188,6 +19198,24 @@ ...@@ -19188,6 +19198,24 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"tooltip" : "视图" "tooltip" : "视图"
}, {
"accUserMode" : 2,
"caption" : "测试界面逻辑",
"itemType" : "MENUITEM",
"name" : "menuitem201",
"getPSAppFunc" : {
"modelref" : true,
"id" : "UsrAppFunc1108357066"
},
"getPSLayout" : {
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"tooltip" : "测试界面逻辑"
} ], } ],
"getPSLayout" : { "getPSLayout" : {
"columnCount" : 24, "columnCount" : 24,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册