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

tony001 发布系统代码 [TrainSys,网页端]

上级 b6cf2264
......@@ -4,10 +4,9 @@
<meta charset="UTF-8" />
<link id="favicon" rel="icon" type="image/svg+xml" href="/assets/img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link type="text/css" href="/assets/css/app-loading.css" rel="stylesheet" />
<link
type="text/css"
......
......@@ -26,13 +26,17 @@ export const AppIcon = defineComponent({
return <ion-icon class={ns.b()} name={icon.cssClass}></ion-icon>;
}
if (icon.imagePath) {
const prefixUrl =
icon.imagePath.startsWith('./') || icon.imagePath.startsWith('/')
? ''
: BaseUrl;
if (icon.imagePath.endsWith('svg')) {
if (icon.imagePath.startsWith('http')) {
return <ion-icon class={ns.b()} src={icon.imagePath}></ion-icon>;
}
return (
<ion-icon
src={BaseUrl + icon.imagePath}
src={prefixUrl + icon.imagePath}
class={ns.b()}
></ion-icon>
);
......@@ -40,7 +44,7 @@ export const AppIcon = defineComponent({
if (icon.imagePath.startsWith('http')) {
return <img class={ns.b()} src={icon.imagePath} />;
}
return <img class={ns.b()} src={BaseUrl + icon.imagePath} />;
return <img class={ns.b()} src={prefixUrl + icon.imagePath} />;
}
}
return null;
......
......@@ -73,6 +73,10 @@ function IBizVitePlugin(): Plugin[] {
'<script src="./assets/ionicons/ionicons/ionicons.js"></script>',
'<script nomodule src="./assets/ionicons/ionicons/ionicons.js"></script>',
);
// 匹配所有的 css 和 js 文件,加上时间戳
const scriptReg = /\.(css|js|json)"/g;
const time = new Date().getTime();
html = html.replace(scriptReg, `.$1?time=${time}"`);
writeFileSync(htmlFilePath, html, 'utf-8');
// 重新修改 system-import.json 补充时间戳
{
......
{
"getAllPSAppDEACModes" : [ {
"codeName" : "Default",
"logicName" : "DEFAULT",
"minorSortDir" : "ASC",
"getMinorSortPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"name" : "DEFAULT",
"getPSDEACModeDataItems" : [ {
"dataType" : 25,
"name" : "value",
"getPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
}
}, {
"dataType" : 25,
"name" : "text",
"getPSAppDEField" : {
"name" : "BXDNAME",
"codeName" : "BXDName"
}
}, {
"format" : "YYYY-MM-DD HH:mm:ss",
"dataType" : 25,
"name" : "zitiansj",
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
}
} ],
"pagingSize" : 50,
"getTextPSAppDEField" : {
"name" : "BXDNAME",
"codeName" : "BXDName"
},
"getValuePSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"defaultMode" : true,
"enablePagingBar" : false
} ],
"getAllPSAppDEActions" : [ {
"actionMode" : "CHECKKEY",
"codeName" : "CheckKey",
"methodType" : "DEACTION",
"name" : "CheckKey",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/CheckKey.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "CheckKey"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/checkkey",
"builtinMethod" : false
}, {
"actionMode" : "CREATE",
"codeName" : "Create",
"methodType" : "DEACTION",
"name" : "Create",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO",
"output" : true
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Create.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Create"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"builtinMethod" : false,
"noServiceCodeName" : true
}, {
"actionMode" : "READ",
"codeName" : "Get",
"methodType" : "DEACTION",
"name" : "Get",
"getPSAppDEMethodInput" : {
"getKeyPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"name" : "输入对象",
"type" : "KEYFIELD"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Get.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "READ"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Get"
},
"requestField" : "BXDID",
"requestMethod" : "GET",
"requestParamType" : "FIELD",
"builtinMethod" : false,
"needResourceKey" : true,
"noServiceCodeName" : true
}, {
"actionMode" : "GETDRAFT",
"codeName" : "GetDraft",
"methodType" : "DEACTION",
"name" : "GetDraft",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/GetDraft.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "GetDraft"
},
"requestMethod" : "GET",
"requestParamType" : "NONE",
"requestPath" : "/getdraft",
"builtinMethod" : false
}, {
"actionMode" : "DELETE",
"batchActionMode" : 1,
"codeName" : "Remove",
"methodType" : "DEACTION",
"name" : "Remove",
"getPSAppDEMethodInput" : {
"getKeyPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"name" : "输入对象",
"type" : "KEYFIELDS"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Remove.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "DELETE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Remove"
},
"requestField" : "BXDID",
"requestMethod" : "DELETE",
"requestParamType" : "FIELD",
"builtinMethod" : false,
"enableBatchAction" : true,
"needResourceKey" : true,
"noServiceCodeName" : true
}, {
"actionMode" : "UNKNOWN",
"codeName" : "Save",
"methodType" : "DEACTION",
"name" : "Save",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Save.json"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Save"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/save",
"builtinMethod" : false,
"needResourceKey" : true
}, {
"actionMode" : "UPDATE",
"codeName" : "Update",
"methodType" : "DEACTION",
"name" : "Update",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO",
"output" : true
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Update.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "UPDATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Update"
},
"requestMethod" : "PUT",
"requestParamType" : "NONE",
"builtinMethod" : false,
"needResourceKey" : true,
"noServiceCodeName" : true
} ],
"getAllPSAppDEDataSets" : [ {
"codeName" : "FetchDataSet2",
"dataSetType" : "DATAQUERY",
"methodType" : "FETCH",
"name" : "DATASET2",
"getPSAppDEMethodInput" : {
"codeName" : "DataSet2Input",
"name" : "DataSet2Input",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "DataSet2Result",
"name" : "DataSet2Result",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "DataSet2"
},
"builtinMethod" : false
}, {
"codeName" : "FetchDefault",
"methodType" : "FETCH",
"name" : "FetchDefault",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "READ"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "FetchDefault"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/fetchdefault",
"builtinMethod" : false
} ],
"getAllPSAppDEFields" : [ {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[SN][编号]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[SN][编号]",
"stringLength" : 100,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[SN][编号]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[SN][编号]移动端默认",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "SN",
"logicName" : "编号",
"name" : "SN",
"stdDataType" : 25,
"stringLength" : 100
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[CREATEMAN][建立人]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "SPAN",
"name" : "[CREATEMAN][建立人]",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[CREATEMAN][建立人]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"name" : "[CREATEMAN][建立人]移动端默认",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "CreateMan",
"logicName" : "建立人",
"name" : "CREATEMAN",
"stdDataType" : 25,
"stringLength" : 60
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[UPDATEMAN][更新人]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "SPAN",
"name" : "[UPDATEMAN][更新人]",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[UPDATEMAN][更新人]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"name" : "[UPDATEMAN][更新人]移动端默认",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "UpdateMan",
"logicName" : "更新人",
"name" : "UPDATEMAN",
"stdDataType" : 25,
"stringLength" : 60
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[CREATEDATE][建立时间]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"name" : "[CREATEDATE][建立时间]移动端默认",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[CREATEDATE][建立时间]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "SPAN",
"name" : "[CREATEDATE][建立时间]",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"type" : "DEFAULT"
} ],
"codeName" : "CreateDate",
"logicName" : "建立时间",
"name" : "CREATEDATE",
"stdDataType" : 5,
"valueFormat" : "YYYY-MM-DD HH:mm:ss"
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[BXDNAME][报销单名称]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[BXDNAME][报销单名称]移动端默认",
"stringLength" : 200,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[BXDNAME][报销单名称]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[BXDNAME][报销单名称]",
"stringLength" : 200,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
} ],
"codeName" : "BXDName",
"logicName" : "报销单名称",
"name" : "BXDNAME",
"stdDataType" : 25,
"stringLength" : 200,
"enableQuickSearch" : true,
"majorField" : true
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[BXDID][报销单标识]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"name" : "[BXDID][报销单标识]移动端默认",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[BXDID][报销单标识]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "SPAN",
"name" : "[BXDID][报销单标识]",
"stringLength" : 100,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"type" : "DEFAULT"
} ],
"codeName" : "BXDId",
"logicName" : "报销单标识",
"name" : "BXDID",
"stdDataType" : 25,
"stringLength" : 100,
"keyField" : true
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[UPDATEDATE][更新时间]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "SPAN",
"name" : "[UPDATEDATE][更新时间]",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "UpdateDate",
"logicName" : "更新时间",
"name" : "UPDATEDATE",
"stdDataType" : 5,
"valueFormat" : "YYYY-MM-DD HH:mm:ss"
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[ORGID][组织机构标识]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[ORGID][组织机构标识]",
"stringLength" : 60,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[ORGID][组织机构标识]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[ORGID][组织机构标识]移动端默认",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "OrgId",
"logicName" : "组织机构标识",
"name" : "ORGID",
"stdDataType" : 25,
"stringLength" : 60
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "Default",
"name" : "[DEPTID][组织部门标识]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[DEPTID][组织部门标识]",
"stringLength" : 60,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"name" : "[DEPTID][组织部门标识]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[DEPTID][组织部门标识]移动端默认",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"codeName" : "DeptId",
"logicName" : "组织部门标识",
"name" : "DEPTID",
"stdDataType" : 25,
"stringLength" : 60
} ],
"getAllPSAppDEMethodDTOs" : [ {
"codeName" : "BXDDTO",
"name" : "BXDDTO",
"getPSAppDEMethodDTOFields" : [ {
"codeName" : "SN",
"logicName" : "编号",
"name" : "SN",
"getPSAppDEField" : {
"name" : "SN",
"codeName" : "SN"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, {
"codeName" : "BXDId",
"logicName" : "报销单标识",
"name" : "BXDId",
"getPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"codeName" : "BXDName",
"logicName" : "报销单名称",
"name" : "BXDName",
"getPSAppDEField" : {
"name" : "BXDNAME",
"codeName" : "BXDName"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, {
"codeName" : "CreateDate",
"jsonFormat" : "yyyy-MM-dd HH:mm:ss",
"logicName" : "建立时间",
"name" : "CreateDate",
"getPSAppDEField" : {
"name" : "CREATEDATE",
"codeName" : "CreateDate"
},
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"codeName" : "CreateMan",
"logicName" : "建立人",
"name" : "CreateMan",
"getPSAppDEField" : {
"name" : "CREATEMAN",
"codeName" : "CreateMan"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"codeName" : "DeptId",
"logicName" : "组织部门标识",
"name" : "DeptId",
"getPSAppDEField" : {
"name" : "DEPTID",
"codeName" : "DeptId"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, {
"codeName" : "OrgId",
"logicName" : "组织机构标识",
"name" : "OrgId",
"getPSAppDEField" : {
"name" : "ORGID",
"codeName" : "OrgId"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, {
"codeName" : "UpdateDate",
"jsonFormat" : "yyyy-MM-dd HH:mm:ss",
"logicName" : "更新时间",
"name" : "UpdateDate",
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"codeName" : "UpdateMan",
"logicName" : "更新人",
"name" : "UpdateMan",
"getPSAppDEField" : {
"name" : "UPDATEMAN",
"codeName" : "UpdateMan"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"codeName" : "BXDMX",
"name" : "BXDMX",
"getRefPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDMXDTO"
},
"getRefPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"sourceType" : "DER",
"type" : "DTOS"
} ],
"sourceType" : "DE",
"type" : "DEFAULT"
}, {
"codeName" : "BXDFilterDTO",
"name" : "BXDFilterDTO",
"getPSAppDEMethodDTOFields" : [ {
"codeName" : "N_BXDID_EQ",
"logicName" : "报销单标识",
"name" : "N_BXDID_EQ",
"getPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"type" : "SIMPLE"
}, {
"codeName" : "N_BXDNAME_LIKE",
"logicName" : "报销单名称",
"name" : "N_BXDNAME_LIKE",
"getPSAppDEField" : {
"name" : "BXDNAME",
"codeName" : "BXDName"
},
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"type" : "SIMPLE"
} ],
"sourceType" : "DE",
"type" : "DEFILTER"
} ],
"getAllPSAppDEMethods" : [ {
"actionMode" : "CHECKKEY",
"codeName" : "CheckKey",
"methodType" : "DEACTION",
"name" : "CheckKey",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/CheckKey.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "CheckKey"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/checkkey",
"builtinMethod" : false
}, {
"actionMode" : "CREATE",
"codeName" : "Create",
"methodType" : "DEACTION",
"name" : "Create",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO",
"output" : true
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Create.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Create"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"builtinMethod" : false,
"noServiceCodeName" : true
}, {
"actionMode" : "READ",
"codeName" : "Get",
"methodType" : "DEACTION",
"name" : "Get",
"getPSAppDEMethodInput" : {
"getKeyPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"name" : "输入对象",
"type" : "KEYFIELD"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Get.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "READ"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Get"
},
"requestField" : "BXDID",
"requestMethod" : "GET",
"requestParamType" : "FIELD",
"builtinMethod" : false,
"needResourceKey" : true,
"noServiceCodeName" : true
}, {
"actionMode" : "GETDRAFT",
"codeName" : "GetDraft",
"methodType" : "DEACTION",
"name" : "GetDraft",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/GetDraft.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "CREATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "GetDraft"
},
"requestMethod" : "GET",
"requestParamType" : "NONE",
"requestPath" : "/getdraft",
"builtinMethod" : false
}, {
"actionMode" : "DELETE",
"batchActionMode" : 1,
"codeName" : "Remove",
"methodType" : "DEACTION",
"name" : "Remove",
"getPSAppDEMethodInput" : {
"getKeyPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"name" : "输入对象",
"type" : "KEYFIELDS"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Remove.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "DELETE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Remove"
},
"requestField" : "BXDID",
"requestMethod" : "DELETE",
"requestParamType" : "FIELD",
"builtinMethod" : false,
"enableBatchAction" : true,
"needResourceKey" : true,
"noServiceCodeName" : true
}, {
"actionMode" : "UNKNOWN",
"codeName" : "Save",
"methodType" : "DEACTION",
"name" : "Save",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Save.json"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Save"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/save",
"builtinMethod" : false,
"needResourceKey" : true
}, {
"actionMode" : "UPDATE",
"codeName" : "Update",
"methodType" : "DEACTION",
"name" : "Update",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO",
"output" : true
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "DTO"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Update.json"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "UPDATE"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Update"
},
"requestMethod" : "PUT",
"requestParamType" : "NONE",
"builtinMethod" : false,
"needResourceKey" : true,
"noServiceCodeName" : true
}, {
"codeName" : "FetchDataSet2",
"dataSetType" : "DATAQUERY",
"methodType" : "FETCH",
"name" : "DATASET2",
"getPSAppDEMethodInput" : {
"codeName" : "DataSet2Input",
"name" : "DataSet2Input",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "DataSet2Result",
"name" : "DataSet2Result",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "DataSet2"
},
"builtinMethod" : false
}, {
"codeName" : "FetchDefault",
"methodType" : "FETCH",
"name" : "FetchDefault",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "READ"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "FetchDefault"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/fetchdefault",
"builtinMethod" : false
}, {
"codeName" : "FetchTempDataSet2",
"dataSetType" : "DATAQUERY",
"methodType" : "FETCHTEMP",
"name" : "DATASET2",
"getPSAppDEMethodInput" : {
"codeName" : "DataSet2Input",
"name" : "DataSet2Input",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "DataSet2Result",
"name" : "DataSet2Result",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "DataSet2"
},
"tempDataMode" : 2,
"builtinMethod" : false
}, {
"codeName" : "FetchTempDefault",
"dataSetType" : "DATAQUERY",
"methodType" : "FETCHTEMP",
"name" : "DEFAULT",
"getPSAppDEMethodInput" : {
"codeName" : "DefaultInput",
"name" : "DefaultInput",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDFilterDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "DefaultResult",
"name" : "DefaultResult",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BXDDTO"
},
"type" : "PAGE"
},
"getPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"tempDataMode" : 2,
"builtinMethod" : false
}, {
"codeName" : "FilterCreate",
"methodType" : "FILTERACTION",
"name" : "FILTERCREATE",
"builtinMethod" : true
}, {
"codeName" : "FilterFetch",
"methodType" : "FILTERACTION",
"name" : "FILTERFETCH",
"builtinMethod" : true
}, {
"codeName" : "FilterGet",
"methodType" : "FILTERACTION",
"name" : "FILTERGET",
"builtinMethod" : true
}, {
"codeName" : "FilterGetDraft",
"methodType" : "FILTERACTION",
"name" : "FILTERGETDRAFT",
"builtinMethod" : true
}, {
"codeName" : "FilterRemove",
"methodType" : "FILTERACTION",
"name" : "FILTERREMOVE",
"builtinMethod" : true
}, {
"codeName" : "FilterSearch",
"methodType" : "FILTERACTION",
"name" : "FILTERSEARCH",
"builtinMethod" : true
}, {
"codeName" : "FilterUpdate",
"methodType" : "FILTERACTION",
"name" : "FILTERUPDATE",
"builtinMethod" : true
}, {
"codeName" : "Select",
"methodType" : "SELECT",
"name" : "Select",
"getPSAppDEMethodInput" : {
"name" : "输入对象",
"type" : "UNKNOWN"
},
"getPSAppDEMethodReturn" : {
"name" : "返回对象",
"type" : "UNKNOWN"
},
"getPSDEOPPriv" : {
"modelref" : true,
"id" : "READ"
},
"getPSDEServiceAPIMethod" : {
"modelref" : true,
"id" : "Select"
},
"requestMethod" : "POST",
"requestParamType" : "ENTITY",
"requestPath" : "/select",
"builtinMethod" : false
} ],
"getAllPSAppDEUILogics" : [ {
"codeName" : "test",
"defaultParamName" : "Default",
"logicName" : "test",
"name" : "test",
"getPSDEUILogicNodes" : [ {
"codeName" : "Begin",
"leftPos" : 200,
"logicNodeType" : "BEGIN",
"name" : "开始",
"topPos" : 200,
"parallelOutput" : true
} ],
"getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
} ],
"getStartPSDEUILogicNode" : {
"modelref" : true,
"id" : "Begin"
}
} ],
"getAllPSDEOPPrivs" : [ {
"logicName" : "建立",
"name" : "CREATE"
}, {
"logicName" : "删除",
"name" : "DELETE"
}, {
"logicName" : "读取",
"name" : "READ"
}, {
"logicName" : "更新",
"name" : "UPDATE"
} ],
"codeName" : "BXD",
"dEAPICodeName" : "BXD",
"dEAPITag" : "BXD",
"dataAccCtrlArch" : 1,
"dataAccCtrlMode" : 1,
"dynaModelFilePath" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json",
"enableUIActions" : 15,
"getKeyPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"logicName" : "报销单",
"getMajorPSAppDEField" : {
"name" : "BXDNAME",
"codeName" : "BXDName"
},
"name" : "BXD",
"getOrgIdPSAppDEField" : {
"name" : "ORGID",
"codeName" : "OrgId"
},
"getPSDEName" : "BXD",
"getPSDEServiceAPI" : {
"modelref" : true,
"id" : "BXD"
},
"getPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/BXD.json"
},
"getPSSysServiceAPI" : {
"modelref" : true,
"path" : "PSSYSSERVICEAPIS/TrainSys.json"
},
"getQuickSearchPSAppDEFields" : [ {
"name" : "BXDNAME",
"codeName" : "BXDName"
} ],
"storageMode" : 0,
"sysAPITag" : "TrainSys",
"defaultMode" : true,
"enableFilterActions" : true,
"enableTempData" : true,
"enableUICreate" : true,
"enableUIModify" : true,
"enableUIRemove" : true,
"enableWFActions" : false,
"major" : true
}
\ No newline at end of file
......@@ -1504,6 +1504,28 @@
"codeName" : "BXDMXName"
},
"getMinorPSAppDERSs" : [ {
"actionRSMode" : 1,
"codeName" : "BXDMX",
"dataRSMode" : 0,
"majorDECodeName" : "BXD",
"majorDEName" : "BXD",
"getMajorPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"minorDECodeName" : "BXDMX",
"minorDEName" : "BXDMX",
"getMinorPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"name" : "DER1N_BXDMX_BXD_BXDID",
"getParentPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"rSMode" : 2
}, {
"actionRSMode" : 1,
"codeName" : "BXDMXes",
"dataRSMode" : 0,
......
......@@ -196,6 +196,18 @@
"editorType" : "PICKEREX_TRIGGER",
"handlerType" : "PickupText",
"name" : "field3",
"getPSAppDEACMode" : {
"modelref" : true,
"id" : "Default"
},
"getPSAppDEDataSet" : {
"modelref" : true,
"id" : "FetchDefault"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"getPSEditorItems" : [ {
"name" : "field4"
} ],
......
......@@ -1630,6 +1630,18 @@
"editorType" : "PICKEREX_TRIGGER",
"handlerType" : "PickupText",
"name" : "field3",
"getPSAppDEACMode" : {
"modelref" : true,
"id" : "Default"
},
"getPSAppDEDataSet" : {
"modelref" : true,
"id" : "FetchDefault"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"getPSEditorItems" : [ {
"name" : "field4"
} ],
......
......@@ -132,6 +132,28 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPCOUNTERS/WFExpBar.json"
} ],
"getAllPSAppDERSs" : [ {
"actionRSMode" : 1,
"codeName" : "BXDMX",
"dataRSMode" : 0,
"majorDECodeName" : "BXD",
"majorDEName" : "BXD",
"getMajorPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"minorDECodeName" : "BXDMX",
"minorDEName" : "BXDMX",
"getMinorPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"name" : "DER1N_BXDMX_BXD_BXDID",
"getParentPSAppDEField" : {
"name" : "BXDID",
"codeName" : "BXDId"
},
"rSMode" : 2
}, {
"actionRSMode" : 1,
"codeName" : "BXDMXes",
"dataRSMode" : 0,
......@@ -1138,6 +1160,11 @@
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/City.json",
"name" : "CITY",
"codeName" : "City"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json",
"name" : "BXD",
"codeName" : "BXD"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BOOKCHILD3.json",
......@@ -1400,16 +1427,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
}, {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
} ]
}, {
......
......@@ -29,36 +29,36 @@
"getPSDEGridColumns" : [ {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"caption" : "上级学生职位",
"codeName" : "pstudentid",
"caption" : "学生名称",
"codeName" : "studentname",
"columnType" : "DEFTREEGRIDCOLUMN",
"dataItemName" : "pstudentid",
"excelCaption" : "上级学生职位",
"name" : "pstudentid",
"dataItemName" : "studentname",
"excelCaption" : "学生名称",
"name" : "studentname",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
"name" : "STUDENTNAME",
"codeName" : "StudentName"
},
"treeColumnMode" : 4,
"width" : 100,
"width" : 400,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"caption" : "学生名称",
"codeName" : "studentname",
"caption" : "上级学生职位",
"codeName" : "pstudentid",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "studentname",
"excelCaption" : "学生名称",
"name" : "studentname",
"dataItemName" : "pstudentid",
"excelCaption" : "上级学生职位",
"name" : "pstudentid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "STUDENTNAME",
"codeName" : "StudentName"
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
},
"width" : 400,
"treeColumnMode" : 4,
"width" : 100,
"widthUnit" : "PX",
"enableSort" : true
}, {
......@@ -168,17 +168,17 @@
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
"name" : "pstudentid",
"name" : "studentname",
"getPSAppDEField" : {
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
"name" : "STUDENTNAME",
"codeName" : "StudentName"
}
}, {
"dataType" : 25,
"name" : "studentname",
"name" : "pstudentid",
"getPSAppDEField" : {
"name" : "STUDENTNAME",
"codeName" : "StudentName"
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
}
}, {
"dataType" : 25,
......
......@@ -298,36 +298,36 @@
"getPSDEGridColumns" : [ {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"caption" : "上级学生职位",
"codeName" : "pstudentid",
"caption" : "学生名称",
"codeName" : "studentname",
"columnType" : "DEFTREEGRIDCOLUMN",
"dataItemName" : "pstudentid",
"excelCaption" : "上级学生职位",
"name" : "pstudentid",
"dataItemName" : "studentname",
"excelCaption" : "学生名称",
"name" : "studentname",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
"name" : "STUDENTNAME",
"codeName" : "StudentName"
},
"treeColumnMode" : 4,
"width" : 100,
"width" : 400,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"caption" : "学生名称",
"codeName" : "studentname",
"caption" : "上级学生职位",
"codeName" : "pstudentid",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "studentname",
"excelCaption" : "学生名称",
"name" : "studentname",
"dataItemName" : "pstudentid",
"excelCaption" : "上级学生职位",
"name" : "pstudentid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "STUDENTNAME",
"codeName" : "StudentName"
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
},
"width" : 400,
"treeColumnMode" : 4,
"width" : 100,
"widthUnit" : "PX",
"enableSort" : true
}, {
......@@ -437,17 +437,17 @@
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
"name" : "pstudentid",
"name" : "studentname",
"getPSAppDEField" : {
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
"name" : "STUDENTNAME",
"codeName" : "StudentName"
}
}, {
"dataType" : 25,
"name" : "studentname",
"name" : "pstudentid",
"getPSAppDEField" : {
"name" : "STUDENTNAME",
"codeName" : "StudentName"
"name" : "PSTUDENTID",
"codeName" : "Pstudentid"
}
}, {
"dataType" : 25,
......
......@@ -9409,16 +9409,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
}, {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
} ]
}, {
......@@ -9474,16 +9474,16 @@
"id" : "ViewMsg7"
}
}, {
"name" : "消息位置-视图下方",
"name" : "消息位置-弹出",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
"id" : "ViewMsg10"
}
}, {
"name" : "消息位置-弹出",
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg10"
"id" : "ViewMsg8"
}
}, {
"name" : "消息位置-视图内容区",
......@@ -9496,12 +9496,11 @@
"codeName" : "VMGroup8",
"name" : "【静态测试】",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息类型-警告信息",
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg5"
},
"position" : "POPUP"
"id" : "ViewMsg8"
}
}, {
"name" : "关闭模式-本次删除-上方-警告",
"getPSAppViewMsg" : {
......@@ -9509,17 +9508,17 @@
"id" : "ViewMsg13"
}
}, {
"name" : "消息类型-错误信息",
"name" : "消息类型-警告信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg6"
"id" : "ViewMsg5"
},
"position" : "POPUP"
}, {
"name" : "消息类型-常规信息",
"name" : "消息类型-错误信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg4"
"id" : "ViewMsg6"
},
"position" : "POPUP"
}, {
......@@ -9529,11 +9528,12 @@
"id" : "ViewMsg11"
}
}, {
"name" : "消息位置-视图下方",
"name" : "消息类型-常规信息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
}
"id" : "ViewMsg4"
},
"position" : "POPUP"
}, {
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
......@@ -9551,16 +9551,16 @@
"codeName" : "VMGroup5",
"name" : "视图消息关闭模式",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-删除",
"name" : "关闭模式-默认删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg11"
"id" : "ViewMsg12"
}
}, {
"name" : "关闭模式-默认删除",
"name" : "关闭模式-删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
"id" : "ViewMsg11"
}
}, {
"name" : "关闭模式-本次删除",
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册