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

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

上级 0ac2aecb
......@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2Dataviewexpbar_dataviewMode
* @memberof Usr2DataViewMode
*/
public getDataItems(): any[] {
return [
......@@ -40,6 +40,17 @@ export default class Usr2Model {
dataType: 'FONTKEY',
},
{
name: 'n_ibizbookname_like',
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
name:'size',
......
......@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1123,7 +1123,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1237,7 +1237,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2132,7 +2132,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2141,7 +2141,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2217,7 +2217,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -133,7 +133,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10",
"uniqueTag" : "IBIZAPPCTRL__Auto10"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -122,7 +122,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12",
"uniqueTag" : "IBIZAPPEDITOR__Auto12"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -122,7 +122,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14",
"uniqueTag" : "IBIZAPPEXTENDEDITOR__Auto14"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -189,7 +189,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38",
"uniqueTag" : "IBIZAPPVIEW__Auto38"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -1086,7 +1086,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -196,7 +196,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"enableSort" : false
}, {
......
......@@ -829,7 +829,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15",
"uniqueTag" : "IBIZBOOK__Auto15"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/grouppanel1",
"titleBarCloseMode" : 1,
......
......@@ -443,7 +443,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15",
"uniqueTag" : "IBIZBOOK__Auto15"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
......
......@@ -274,7 +274,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -274,7 +274,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -293,7 +293,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 100,
......
......@@ -321,7 +321,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -51,7 +51,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11",
"uniqueTag" : "IBIZBOOK__Auto11"
},
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "看板(内置功能)",
......
......@@ -199,7 +199,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -20,18 +20,6 @@
}
} ],
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
......@@ -43,6 +31,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
......
......@@ -930,7 +930,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto23"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto23",
"uniqueTag" : "IBIZOrder__Auto23"
},
"portletType" : "ACTIONBAR",
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderDashboardView/psappviewctrls/dashboard_sysportlet3",
......
......@@ -225,7 +225,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto20"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto20",
"uniqueTag" : "IBIZOrder__Auto20"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 150,
......
......@@ -459,7 +459,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10",
"uniqueTag" : "IBIZAPPCTRL__Auto10"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -448,7 +448,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12",
"uniqueTag" : "IBIZAPPEDITOR__Auto12"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -448,7 +448,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14",
"uniqueTag" : "IBIZAPPEXTENDEDITOR__Auto14"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -495,7 +495,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38",
"uniqueTag" : "IBIZAPPVIEW__Auto38"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -1130,7 +1130,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -1130,7 +1130,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -1348,6 +1348,7 @@
"id" : "DRBAR"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZBOOKEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZBOOKEditView2__drbar",
"showTitle" : true,
"modelid" : "643b7d93870f8f5842b663af83ba85ae",
"modeltype" : "PSDEDRBAR"
......
......@@ -73,6 +73,7 @@
"id" : "DRTAB"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZBOOKEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZBOOKEditView3__drtab",
"modelid" : "643b7d93870f8f5842b663af83ba85ae",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -73,6 +73,7 @@
"id" : "DRTAB"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZBOOKEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZBOOKEditView4__drtab",
"modelid" : "643b7d93870f8f5842b663af83ba85ae",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -1351,7 +1351,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15",
"uniqueTag" : "IBIZBOOK__Auto15"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/grouppanel1",
"titleBarCloseMode" : 1,
......
......@@ -1059,7 +1059,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15",
"uniqueTag" : "IBIZBOOK__Auto15"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/grouppanel1",
"titleBarCloseMode" : 1,
......
......@@ -426,7 +426,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11",
"uniqueTag" : "IBIZBOOK__Auto11"
},
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "看板(内置功能)",
......
......@@ -426,7 +426,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto11",
"uniqueTag" : "IBIZBOOK__Auto11"
},
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "看板(内置功能)",
......
......@@ -876,7 +876,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -678,6 +678,7 @@
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZBOOKTabSearchView/psappviewctrls/tabexppanel",
"tabLayout" : "TOP",
"uniqueTag" : "IBIZBOOKTabSearchView__tabexppanel",
"modelid" : "cac82d0ff3dfbb0d7980d0d49a25d026_tabexppanel",
"modeltype" : "PSTABEXPPANEL"
} ],
......
......@@ -88,18 +88,6 @@
"id" : "TREEGRIDEX"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
......@@ -111,6 +99,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
......
......@@ -665,7 +665,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -492,7 +492,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -581,7 +581,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto15",
"uniqueTag" : "IBIZBOOK__Auto15"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
......
......@@ -1373,7 +1373,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"width" : 150,
"widthString" : "150px",
......
......@@ -612,7 +612,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"enableSort" : false
}, {
......
......@@ -737,7 +737,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -737,7 +737,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/gridActionColumn",
"uniqueTag" : "IBIZBOOK__gridActionColumn"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 200,
......
......@@ -755,7 +755,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZBOOK/psappdeuagroups/Auto41",
"uniqueTag" : "IBIZBOOK__Auto41"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 100,
......
......@@ -1481,10 +1481,6 @@
} ],
"getPSDEViewCodeName" : "UsrWizardView_plugin",
"getPSDEViewId" : "DC191A28-CCC6-471A-9F22-79BA614CF00C",
"getPSSysPFPlugin" : {
"pluginType" : "VIEW_CUSTOM",
"pluginCode" : "bottomSteper"
},
"getPSViewLayoutPanel" : {
"codeName" : "Layoutpanel",
"controlStyle" : "APPDEWIZARDVIEW",
......@@ -1503,7 +1499,7 @@
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZBOOKUsrWizardView_plugin",
"title" : "底部步骤条",
"viewStyle" : "bottomSteper",
"viewStyle" : "DEFAULT",
"viewType" : "DEWIZARDVIEW",
"enableDP" : true,
"modelid" : "B30A816C-D046-4B05-8AFB-B3B5A3275F4F",
......
......@@ -980,7 +980,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto23"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto23",
"uniqueTag" : "IBIZOrder__Auto23"
},
"portletType" : "ACTIONBAR",
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderDashboardView/psappviewctrls/dashboard_sysportlet3",
......
......@@ -1360,6 +1360,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -1360,6 +1360,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2_layout/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2_layout__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -244,6 +244,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3__drtab",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -246,6 +246,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3_layout__drtab",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -244,6 +244,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4__drtab",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -1348,6 +1348,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4_layout__drtab",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRTAB"
} ],
......
......@@ -777,7 +777,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto20"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZOrder/psappdeuagroups/Auto20",
"uniqueTag" : "IBIZOrder__Auto20"
},
"rTMOSFilePath" : "psdegridcols/uagridcolumn1",
"width" : 150,
......
......@@ -1084,6 +1084,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSGridView2__drtab",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRTAB"
}, {
......
......@@ -1345,6 +1345,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState10EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState10EditView2__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -1310,6 +1310,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState30EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState30EditView2__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -1345,6 +1345,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState40EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState40EditView2__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -1002,6 +1002,7 @@
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderTabExpView/psappviewctrls/tabexppanel",
"tabLayout" : "TOP",
"uniqueTag" : "IBIZOrderTabExpView__tabexppanel",
"modelid" : "f102adb54492a593c95a66e09402da81_tabexppanel",
"modeltype" : "PSTABEXPPANEL"
} ],
......
......@@ -1375,6 +1375,7 @@
} ]
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderTestCLEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderTestCLEditView2__drbar",
"showTitle" : true,
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEDRBAR"
......
......@@ -1297,6 +1297,7 @@
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZSample0003STabExpView/psappviewctrls/tabexppanel",
"tabLayout" : "TOP",
"uniqueTag" : "IBIZSample0003STabExpView__tabexppanel",
"modelid" : "7d8f3c4529fab9a97c562a1d9d9b9a85_tabexppanel",
"modeltype" : "PSTABEXPPANEL"
} ],
......
......@@ -1091,6 +1091,7 @@
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZSample0003STabExpView_layout/psappviewctrls/tabexppanel",
"tabLayout" : "TOP",
"uniqueTag" : "IBIZSample0003STabExpView_layout__tabexppanel",
"modelid" : "4a0d51e3bca39ffa8dc989e13a1a613f_tabexppanel",
"modeltype" : "PSTABEXPPANEL"
} ],
......
......@@ -930,6 +930,7 @@
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZSample0021Usr1114865995WFDynaEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZSample0021Usr1114865995WFDynaEditView3__drtab",
"modelid" : "F70D46F0-4A0C-45B2-B449-664DF6C060AD",
"modeltype" : "PSDEDRTAB"
} ],
......
......@@ -1130,7 +1130,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto39"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto39",
"uniqueTag" : "IBIZAPPVIEW__Auto39"
},
"getPortletPSAppView" : {
"accUserMode" : 2,
......@@ -1629,7 +1630,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPVIEW/psappdeuagroups/Auto38",
"uniqueTag" : "IBIZAPPVIEW__Auto38"
},
"width" : 150,
"widthString" : "150px",
......@@ -1996,7 +1998,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto40"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto40",
"uniqueTag" : "IBIZAPPCTRL__Auto40"
},
"getPortletPSAppView" : {
"accUserMode" : 2,
......@@ -2459,7 +2462,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPCTRL/psappdeuagroups/Auto10",
"uniqueTag" : "IBIZAPPCTRL__Auto10"
},
"width" : 150,
"widthString" : "150px",
......@@ -2894,7 +2898,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto1"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto1",
"uniqueTag" : "IBIZAPPEDITOR__Auto1"
},
"getPortletPSAppView" : {
"accUserMode" : 2,
......@@ -3346,7 +3351,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEDITOR/psappdeuagroups/Auto12",
"uniqueTag" : "IBIZAPPEDITOR__Auto12"
},
"width" : 150,
"widthString" : "150px",
......@@ -3777,7 +3783,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto31"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto31",
"uniqueTag" : "IBIZAPPEXTENDEDITOR__Auto31"
},
"getPortletPSAppView" : {
"accUserMode" : 2,
......@@ -4229,7 +4236,8 @@
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14"
"rTMOSFilePath" : "pssysapps/Web/psappdataentities/IBIZAPPEXTENDEDITOR/psappdeuagroups/Auto14",
"uniqueTag" : "IBIZAPPEXTENDEDITOR__Auto14"
},
"width" : 150,
"widthString" : "150px",
......
/*** START:系统样式表 ***/
.book-price {
color: #fa541c;
background: #fff2e8;
border-color: #ffbb96;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
}
.book-press {
color: #52c41a;
background: #f6ffed;
border-color: #b7eb8f;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
}
.book-type {
color: #1890ff;
background: #e6f7ff;
border-color: #91d5ff;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
}
.font-color-red-css{
color:red!important;
}
.container-backgroundcolor-none {
>.ivu-row{
>.ivu-col{
>.portlet-without-title{
>.portlet-card{
background-color: #f0f2f5;
box-shadow: none;
}
}
}
}
}
.container-backgroundcolor-orange {
>.ivu-row{
>.ivu-col{
>.portlet-without-title{
>.portlet-card{
background-color: #fa8c16;
}
}
}
}
}
.container-backgroundcolor-green {
>.ivu-row{
>.ivu-col{
>.portlet-without-title{
>.portlet-card{
background-color: #52c41a;
}
}
}
}
}
.container-backgroundcolor-blue{
>.ivu-row{
>.ivu-col{
>.portlet-without-title{
>.portlet-card{
background-color: #1890ff;
}
}
}
}
}
.RightTool{
padding:0px 0px 10px 0px;text-align:right
}
.redToolBar {color:white;background-color:red;}
.greenToolBar {color:white !important;background-color:rgba(0, 166, 90, 0.7) !important;}
.deepskyblueToolBar {color:white !important;background-color:#108cee !important;}
.test-ctrl-style {
color:red!important;
}
.login-bg {
background-color: #ffffff;
}
.kanban-author {
.item-field {
font-style: italic;
position: absolute;
top: 10px;
right: 24px;
}
}
.kanban-description {
.item-field {
font-style: italic;
font-weight: 700;
margin-left: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.kanban-title {
.item-field {
text-align: center;
font-size: 24px;
font-weight: 700;
}
}
.form-item-blue-label {
.app-form-item-label {
color: blue;
}
}
.view-red-title.view-container > .view-card > .ivu-card-head > .header-container > .caption-info {
color: red;
}
.portal-listview-noboxshadow{
box-shadow: 0px 0px 0px;
}
.portal-components-image {
.portal-components-web{
>.portlet-without-title{
iframe{
html{
body{
img{
width: 100%;
height: 100%;
}
}
}
}
}
}
}
.gray-background {
background-color: #f0f2f5;
}
/*** END:系统样式表 ***/
\ No newline at end of file
......@@ -61,19 +61,6 @@
"refTag" : "FORM",
"refTag2" : "FORMITEM",
"templCode" : "<app-form-item name='${item.name}' :itemRules=\"this.rules().${item.name}\" class='<#if item.getPSSysCss?? && item.getPSSysCss()??>${item.getPSSysCss().getCssName()}</#if>'<#if item.getLabelPSSysCss?? && item.getLabelPSSysCss()??> labelStyle=\"${item.getLabelPSSysCss().getCssName()}\"</#if> :caption=\"<#if langbase??>$t('${langbase}.details.${item.name}')<#else>'${item.getCaption()}'</#if>\" uiStyle=\"${item.getDetailStyle()}\" :labelWidth=\"${item.getLabelWidth()?c}\" :isShowCaption=\"${item.isShowCaption()?c}\" :error=\"detailsModel.${item.name}.error\" :isEmptyCaption=\"${item.isEmptyCaption()?c}\" labelPos=\"${item.getLabelPos()}\">\n<app-radio-button \n v-model=\"data.${item.name}\"\n :data=\"data\" \n :context=\"context\"\n :viewparams=\"viewparams\" \n :disabled=\"detailsModel.${item.name}.disabled\" \n name=\"${item.name}\" \n <#if item.getPSCodeList()??>\n <#assign codelist=item.getPSCodeList()>\n tag='${codelist.codeName}' \n codelistType='${codelist.getCodeListType()}' \n </#if> \n style=\"${item.getEditorCssStyle()}\">\n</app-radio-button>\n</app-form-item>"
}, {
"name" : "向导视图底部步骤条",
"getPSSysPFPlugin" : {
"pluginType" : "VIEW_CUSTOM",
"pluginCode" : "bottomSteper"
},
"pluginCode" : "bottomSteper",
"pluginType" : "VIEW_CUSTOM",
"refMode" : "APPVIEW",
"refTag" : "DEWIZARDVIEW",
"templCode" : "<AppViewLayout :class=\"classNames\">\r\n <template v-if=\"!noViewCaption && model.showCaption\" #viewHeaderLeft>\r\n <div class=\"view-header__left__caption\">\r\n <AppCaptionBar :caption=\"model.caption\" :title=\"model.title\" :capPSLanguageRes=\"model.capPSLanguageRes\" :titlePSLanguageRes=\"model.titlePSLanguageRes\"></AppCaptionBar>\r\n <AppDataInfoBar v-if=\"model.showDataInfoBar\" :dataInfo=\"store.dataInfo\"></AppDataInfoBar>\r\n </div>\r\n </template>\r\n <template #default>\r\n <guideWizardPanel\r\n :actions=\"{\r\n initAction: 'Get',\r\n finishAction: 'Update',\r\n }\"\r\n :openView=\"store.openView\"\r\n :newView=\"store.newView\"\r\n name=\"wizardpanel\"\r\n :context=\"store.context\"\r\n :viewParams=\"store.viewParams\"\r\n :closeView=\"store.closeView\"\r\n :pLoadingHelper=\"store.loadingHelper\"\r\n :pViewCtx=\"store.viewCtx\"\r\n @ctrl-init=\"(name:string, ability:any) => { handleCtrlInit(controller, name, ability) }\"\r\n @ctrl-action=\"(name:string, action:any, data:any) => { handleCtrlAction(controller, name, action, data) }\"\r\n @ctrl-destroy=\"(name:string, data:any) => { handleCtrlDestroy(controller, name, data) }\"/>\r\n </template>\r\n </AppViewLayout>",
"templCode2" : "import { AppViewLayout } from \"@components/layout/view-layout\";\r\nimport guideWizardPanel from '@widgets/ibizbook/guide-wizard-panel/guide-wizard-panel.vue';\r\nimport { \r\n useNavParamsBind, \r\n useEventBind, \r\n handleCtrlAction, \r\n handleCtrlInit, \r\n handleCtrlDestroy, \r\n getViewClassNames,\r\n} from \"@/hooks/use-view\";\r\nimport { WizardViewActionType, IContext, IParam, IWizardViewAbility, IWizardViewControllerParams, IWizardViewStore, WizardViewController, IWizardViewController, ILoadingHelper, IEvent } from '@/core';\r\n\r\ninterface Props {\r\n name?: string,\r\n noViewCaption?: boolean,\r\n openType?: 'ROUTE' | 'EMBED' | 'MODAL',\r\n context?: IContext,\r\n viewParams?: IParam,\r\n pLoadingHelper?: ILoadingHelper,\r\n isLoadDefault?: boolean,\r\n controller: IWizardViewController<IWizardViewStore, IWizardViewAbility>\r\n}\r\n\r\nconst props = withDefaults(defineProps<Props>(), {\r\n noViewCaption: false,\r\n openType: 'ROUTE',\r\n isLoadDefault: true,\r\n});\r\nconst model: IParam = props.controller.getModel();\r\nconst store: IWizardViewStore = props.controller.getStore();\r\nconst classNames = computed(() => {\r\n const classNames = getViewClassNames(model, props);\r\n Object.assign(classNames, {\"bottom-steper\": true});\r\n return classNames;\r\n});",
"templCode3" : ".bottom-steper {\r\n .app-control-wizardpanel {\r\n .app-control-wizardpanel__header {\r\n order: 10;\r\n }\r\n }\r\n}"
}, {
"name" : "工具栏测试插件",
"getPSSysPFPlugin" : {
......
......@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1468-7">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1470-7">
<createTable tableName="T_IBIZBOOK">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册