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

tony001 发布系统代码 [TrainSys,Mob]

上级 6ceb23d2
......@@ -7,6 +7,18 @@
## [Unreleased]
## [0.0.12] - 2024-01-10
### Fixed
- 修复span 编辑器禁用态样式异常
## [0.0.11] - 2024-01-09
### Change
升级树依赖版本
## [0.0.10] - 2024-01-09
### Added
......
appId:BASEURL
mockDcSystemId:MOCKDCSYSTEMID
hub:HUB
\ No newline at end of file
hub:HUB
enableAnonymous:ENABLEANONYMOUS
anonymousUser:ANONYMOUSUSER
anonymousPwd:ANONYMOUSPWD
dev:DEV
enableMqtt:ENABLEMQTT
mqttUrl:MQTTURL
logLevel:LOGLEVEL
baseUrl:BASEURL
pluginBaseUrl:PLUGINBASEURL
isLocalModel:ISLOCALMODEL
remoteModelUrl:REMOTEMODELURL
assetsUrl:ASSETSURL
dcSystem:DCSYSTEM
downloadFileUrl:DOWNLOADFILEURL
uploadFileUrl:UPLOADFILEURL
casLoginUrl:CASLOGINURL
loginMode:LOGINMODE
menuPermissionMode:MENUPERMISSIONMODE
enablePermission:ENABLEPERMISSION
routePlaceholder:ROUTEPLACEHOLDER
enableWfAllHistory:ENABLEWFALLHISTORY
isSaaSMode:ISSAASMODE
AppTitle:APPTITLE
favicon:FAVICON
marketAddress:MARKETADDRESS
\ No newline at end of file
{
"name": "@ibiz-template/next-mob",
"private": true,
"version": "0.0.10",
"version": "0.0.14",
"description": "An Ionic project",
"scripts": {
"dev": "vite",
......@@ -12,13 +12,13 @@
"dependencies": {
"@ibiz-template-package/vs-tree-ex": "^0.1.2",
"@ibiz-template/mob-theme": "^0.2.12",
"@ibiz-template/mob-vue3-components": "^0.0.11",
"@ibiz-template/core": "^0.5.2",
"@ibiz-template/model-helper": "^0.5.2",
"@ibiz-template/runtime": "^0.5.2",
"@ibiz-template/theme": "^0.5.0",
"@ibiz-template/vue3-util": "^0.5.2",
"@ibiz/model-core": "^0.1.2",
"@ibiz-template/mob-vue3-components": "^0.0.16-dev.0",
"@ibiz-template/core": "^0.6.3",
"@ibiz-template/model-helper": "^0.6.3",
"@ibiz-template/runtime": "^0.6.3",
"@ibiz-template/theme": "^0.6.0",
"@ibiz-template/vue3-util": "^0.6.3",
"@ibiz/model-core": "^0.1.14",
"async-validator": "^4.2.5",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
......@@ -49,6 +49,7 @@
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"cpy": "8.1.2",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
......
此差异已折叠。
......@@ -26,6 +26,9 @@ window.Environment = {
// 创新孵化
// appId: 'cxfhmgmt__cxfhappmob',
// mockDcSystemId: 'cxfhmgmt',
// 公司领导日程安排
// appId: 'gsldrcapmgmt__gsldrcapappmob',
// mockDcSystemId: 'gsldrcapmgmt',
// 应用标题
AppTitle: '应用首页',
hub: false,
......
......@@ -29,12 +29,14 @@
"@ibiz-template/model-helper": "../js/@ibiz-template/model-helper/index.system.min.js",
"@ibiz-template/runtime": "../js/@ibiz-template/runtime/index.system.min.js",
"@ibiz-template/vue3-util": "../js/@ibiz-template/vue3-util/index.system.min.js",
"@ibiz-template/mob-vue3-components": "../js/@ibiz-template/mob-vue3-components/index.system.min.js"
"@ibiz-template/mob-vue3-components": "../js/@ibiz-template/mob-vue3-components/index.system.min.js",
"@ibiz-template/mob-theme": "../js/@ibiz-template/mob-theme/index.system.min.js"
},
"styles": {
"@ibiz-template-package/vs-tree-ex": "../js/@ibiz-template-package/vs-tree-ex/0.1.1/vs-tree.css",
"cherry-markdown": "../js/cherry-markdown/0.8.26/cherry-markdown.min.css",
"@ibiz-template/vue3-util": "../js/@ibiz-template/vue3-util/index.min.css",
"@ibiz-template/mob-theme": "../js/@ibiz-template/mob-theme/index.min.css",
"@ibiz-template/mob-vue3-components": "../js/@ibiz-template/mob-vue3-components/index.min.css"
}
}
......@@ -4,4 +4,5 @@ pnpm link --global "@ibiz-template/runtime"
pnpm link --global "@ibiz-template/core"
pnpm link --global "@ibiz-template/theme"
pnpm link --global "@ibiz-template/mob-vue3-components"
pnpm link --global "@ibiz-template/mob-theme"
\ No newline at end of file
pnpm link --global "@ibiz-template/mob-theme"
# pnpm link --global "@ibiz-template-plugin/sy-zhbg-mob"
import { install as installCore } from '@ibiz-template/core';
import {
getPlatformProvider,
install as installRuntime,
} from '@ibiz-template/runtime';
import {
LoadingUtil,
MessageUtil,
ModalUtil,
NotificationUtil,
OpenViewUtil,
ConfirmUtil,
OverlayController,
} from '@ibiz-template/mob-vue3-components';
import { OverlayContainer, PluginFactory } from '@ibiz-template/vue3-util';
import App from './App';
import { attachEnvironmentConfig } from './attach-environment-config';
import { createVueApp } from './create-vue-app';
import { AppRouter } from '@/router';
import { UnauthorizedHandler } from './util';
import { runApp } from '@ibiz-template/mob-vue3-components';
import UserRegister from './user-register';
async function createApp(): Promise<void> {
window.vueInstances = new Map();
OverlayContainer.createVueApp = createVueApp;
installCore();
installRuntime();
// 插件对象初始化放置在创建 app 之前
ibiz.plugin = new PluginFactory();
const app = createVueApp(App);
// 全局 window 异常处理
window.onerror = function (
_event: Event | string,
_source?: string,
_lineno?: number,
_colno?: number,
error?: Error,
) {
if (error) {
ibiz.util.error.handle(error);
}
};
// 全局 promise 异常处理
window.addEventListener('unhandledrejection', function (event) {
// 阻止继续冒泡
event.preventDefault();
// 获取到未处理的promise对象
event.promise.catch(err => {
ibiz.util.error.handle(err);
});
});
await attachEnvironmentConfig();
const router = AppRouter.getRouter();
app.use(router);
ibiz.openView = new OpenViewUtil(router);
ibiz.message = new MessageUtil();
ibiz.modal = new ModalUtil();
ibiz.confirm = new ConfirmUtil();
ibiz.notification = new NotificationUtil();
ibiz.loading = new LoadingUtil();
ibiz.overlay = new OverlayController();
ibiz.util.error.register(new UnauthorizedHandler());
ibiz.platform = getPlatformProvider();
await ibiz.i18n.init();
app.mount('#app');
}
createApp();
runApp([UserRegister]);
......@@ -18,7 +18,11 @@ function IBizVitePlugin(): Plugin[] {
// 模板底包
const templatePackages = ['core', 'runtime', 'model-helper'];
// 组件底包
const componentPackages = ['vue3-util', 'mob-vue3-components'];
const componentPackages = [
'vue3-util',
'mob-vue3-components',
'mob-theme',
];
const cwd = process.cwd();
const baseModule = join(cwd, 'node_modules/@ibiz-template');
const baseOutModule = join(cwd, 'dist/extras/js/@ibiz-template');
......
......@@ -76,6 +76,7 @@ export default defineConfig({
'@ibiz-template/core',
'@ibiz-template/runtime',
'@ibiz-template/vue3-util',
'@ibiz-template/mob-theme',
'@ibiz-template/model-helper',
'@ibiz-template/mob-vue3-components',
],
......@@ -147,6 +148,10 @@ export default defineConfig({
target: 'http://172.16.240.140:46020',
changeOrigin: true,
},
'/api/gsldrcapmgmt__gsldrcapappmob': {
target: 'http://172.16.103.158:30200',
changeOrigin: true,
},
},
cors: true,
fs: {
......
......@@ -3317,6 +3317,35 @@
"modelref" : true,
"id" : "PREPAREPARAM1"
}
}, {
"getDstPSDELogicNode" : {
"modelref" : true,
"id" : "DELOGIC1"
},
"name" : "连接名称",
"getPSDELogicLinkGroupCond" : {
"groupOP" : "AND",
"logicType" : "GROUP",
"name" : "连接条件组",
"getPSDELogicLinkConds" : [ {
"condOP" : "EQ",
"dstFieldName" : "MONEY",
"getDstLogicParam" : {
"modelref" : true,
"id" : "Default"
},
"logicType" : "SINGLE",
"name" : "Default[MONEY] 等于(=)"
}, {
"groupOP" : "AND",
"logicType" : "GROUP",
"name" : "逻辑分组"
} ]
},
"getSrcPSDELogicNode" : {
"modelref" : true,
"id" : "PREPAREPARAM1"
}
} ],
"getPSDELogicNodeParams" : [ {
"dstFieldName" : "PHONEID",
......@@ -3329,6 +3358,12 @@
"srcValueType" : "NONEVALUE"
} ],
"topPos" : 340
}, {
"codeName" : "DELOGIC1",
"leftPos" : 360,
"logicNodeType" : "DELOGIC",
"name" : "实体处理逻辑",
"topPos" : 510
} ],
"getPSDELogicParams" : [ {
"codeName" : "Default",
......
......@@ -43,6 +43,35 @@
"modelref" : true,
"id" : "PREPAREPARAM1"
}
}, {
"getDstPSDELogicNode" : {
"modelref" : true,
"id" : "DELOGIC1"
},
"name" : "连接名称",
"getPSDELogicLinkGroupCond" : {
"groupOP" : "AND",
"logicType" : "GROUP",
"name" : "连接条件组",
"getPSDELogicLinkConds" : [ {
"condOP" : "EQ",
"dstFieldName" : "MONEY",
"getDstLogicParam" : {
"modelref" : true,
"id" : "Default"
},
"logicType" : "SINGLE",
"name" : "Default[MONEY] 等于(=)"
}, {
"groupOP" : "AND",
"logicType" : "GROUP",
"name" : "逻辑分组"
} ]
},
"getSrcPSDELogicNode" : {
"modelref" : true,
"id" : "PREPAREPARAM1"
}
} ],
"getPSDELogicNodeParams" : [ {
"dstFieldName" : "PHONEID",
......@@ -55,6 +84,12 @@
"srcValueType" : "NONEVALUE"
} ],
"topPos" : 340
}, {
"codeName" : "DELOGIC1",
"leftPos" : 360,
"logicNodeType" : "DELOGIC",
"name" : "实体处理逻辑",
"topPos" : 510
} ],
"getPSDELogicParams" : [ {
"codeName" : "Default",
......
......@@ -696,6 +696,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -742,7 +876,7 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
}
\ No newline at end of file
......@@ -1381,6 +1381,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1427,7 +1561,7 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -797,6 +797,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -843,7 +977,7 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -1283,6 +1283,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1329,7 +1463,7 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -1482,16 +1482,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ],
"uniqueTag" : "VMGroup2"
......
......@@ -1088,6 +1088,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : true,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -697,6 +697,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -743,7 +877,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
}
\ No newline at end of file
......@@ -880,6 +880,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -566,6 +566,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......@@ -835,6 +836,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : true,
......
......@@ -1228,6 +1228,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : true,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -1174,6 +1174,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : true,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -958,6 +958,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -1030,6 +1030,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......
......@@ -593,6 +593,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : false,
......@@ -862,6 +863,7 @@
"enableQuickCreate" : false,
"enableQuickSearch" : false,
"enableRemoveData" : false,
"enableRowEdit" : true,
"enableViewData" : false,
"expandFirstOnly" : false,
"expanded" : true,
......
......@@ -1380,6 +1380,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1426,7 +1560,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -802,6 +802,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -848,7 +982,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -1494,6 +1494,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1540,7 +1674,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -1282,6 +1282,140 @@
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
}, {
"codeName" : "formpage2",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"name" : "formpage2",
"getPSDEFormDetails" : [ {
"actionGroupExtractMode" : "ITEM",
"codeName" : "grouppanel1",
"detailStyle" : "DEFAULT",
"detailType" : "GROUPPANEL",
"name" : "grouppanel1",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem1",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem1",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem1",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
}, {
"codeName" : "rawitem2",
"contentType" : "IMAGE",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem2",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "IMAGE",
"name" : "rawitem2",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpanel1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPANEL",
"name" : "tabpanel1",
"getPSDEFormTabPages" : [ {
"codeName" : "tabpage1",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage1",
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
}, {
"codeName" : "tabpage2",
"detailStyle" : "DEFAULT",
"detailType" : "TABPAGE",
"name" : "tabpage2",
"getPSDEFormDetails" : [ {
"codeName" : "rawitem3",
"contentType" : "HTML",
"detailStyle" : "DEFAULT",
"detailType" : "RAWITEM",
"name" : "rawitem3",
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSRawItem" : {
"contentType" : "HTML",
"name" : "rawitem3",
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0
},
"rawItemHeight" : -1.0,
"rawItemWidth" : -1.0,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false,
"showCaption" : true
} ],
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
}
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1328,7 +1462,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
}
},
"noTabHeader" : true,
"noTabHeader" : false,
"name" : "form",
"modelid" : "a3ece2843bcddbc92a85087bdad4ecef",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -13453,16 +13453,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ],
"uniqueTag" : "VMGroup2"
......@@ -13494,10 +13494,10 @@
"codeName" : "VMGroup3",
"name" : "视图消息类型测试",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息类型-警告信息",
"name" : "消息类型-常规信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg5"
"id" : "ViewMsg4"
}
}, {
"name" : "消息类型-错误信息",
......@@ -13506,10 +13506,10 @@
"id" : "ViewMsg6"
}
}, {
"name" : "消息类型-常规信息",
"name" : "消息类型-警告信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg4"
"id" : "ViewMsg5"
}
} ],
"uniqueTag" : "VMGroup3"
......@@ -13540,16 +13540,16 @@
"id" : "ViewMsg10"
}
}, {
"name" : "消息位置-视图下方",
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
"id" : "ViewMsg9"
}
}, {
"name" : "消息位置-视图内容区",
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg9"
"id" : "ViewMsg8"
}
} ],
"uniqueTag" : "VMGroup4"
......@@ -13557,36 +13557,12 @@
"codeName" : "VMGroup8",
"name" : "【静态测试】",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg9"
}
}, {
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
}
}, {
"name" : "关闭模式-默认删除-上方-错误",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
}, {
"name" : "消息类型-警告信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg5"
},
"position" : "POPUP"
}, {
"name" : "关闭模式-本次删除-上方-警告",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg13"
}
}, {
"name" : "消息类型-错误信息",
"getPSAppViewMsg" : {
......@@ -13607,18 +13583,36 @@
"modelref" : true,
"id" : "ViewMsg11"
}
}, {
"name" : "关闭模式-默认删除-上方-错误",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
}, {
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg9"
}
}, {
"name" : "关闭模式-本次删除-上方-警告",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg13"
}
}, {
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
}
} ],
"uniqueTag" : "VMGroup8"
}, {
"codeName" : "VMGroup5",
"name" : "视图消息关闭模式",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-本次删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg13"
}
}, {
"name" : "关闭模式-默认删除",
"getPSAppViewMsg" : {
"modelref" : true,
......@@ -13630,22 +13624,28 @@
"modelref" : true,
"id" : "ViewMsg11"
}
}, {
"name" : "关闭模式-本次删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg13"
}
} ],
"uniqueTag" : "VMGroup5"
}, {
"codeName" : "VMGroup6",
"name" : "视图消息动态模式测试",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "动态模式-静态内容",
"name" : "动态模式-实体数据集",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg15"
"id" : "ViewMsg14"
}
}, {
"name" : "动态模式-实体数据集",
"name" : "动态模式-静态内容",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg14"
"id" : "ViewMsg15"
}
} ],
"uniqueTag" : "VMGroup6"
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册