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

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

上级 33e93f9a
...@@ -619,7 +619,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -619,7 +619,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -655,7 +655,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -655,7 +655,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -692,7 +692,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -692,7 +692,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKGroupByCodelistListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -728,7 +728,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -728,7 +728,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKGroupByCodelistListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -1325,7 +1325,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1325,7 +1325,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1372,7 +1372,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1372,7 +1372,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1442,7 +1442,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1442,7 +1442,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1550,7 +1550,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1550,7 +1550,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1642,7 +1642,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1642,7 +1642,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -15,15 +15,25 @@ export default class ListpanelModel { ...@@ -15,15 +15,25 @@ export default class ListpanelModel {
public getDataItems(): any[] { public getDataItems(): any[] {
return [ return [
{ {
name: 'ibizbookid', name: 'booknumber',
prop: 'ibizbookid', prop: 'booknumber',
dataType: 'GUID', dataType: 'INT',
},
{
name: 'subtext',
prop: 'subtext',
dataType: 'TEXT',
}, },
{ {
name: 'price', name: 'price',
prop: 'price', prop: 'price',
dataType: 'FLOAT', dataType: 'FLOAT',
}, },
{
name: 'ibizbookname',
prop: 'ibizbookname',
dataType: 'TEXT',
},
{ {
name: 'type', name: 'type',
prop: 'type', prop: 'type',
...@@ -31,9 +41,9 @@ export default class ListpanelModel { ...@@ -31,9 +41,9 @@ export default class ListpanelModel {
codelist:{tag:'BookType',codelistType:'STATIC'}, codelist:{tag:'BookType',codelistType:'STATIC'},
}, },
{ {
name: 'icon', name: 'ibizbookid',
prop: 'icon', prop: 'ibizbookid',
dataType: 'LONGTEXT', dataType: 'GUID',
}, },
{ {
name: 'author', name: 'author',
...@@ -41,25 +51,15 @@ export default class ListpanelModel { ...@@ -41,25 +51,15 @@ export default class ListpanelModel {
dataType: 'TEXT', dataType: 'TEXT',
}, },
{ {
name: 'subtext', name: 'icon',
prop: 'subtext', prop: 'icon',
dataType: 'TEXT', dataType: 'LONGTEXT',
},
{
name: 'ibizbookname',
prop: 'ibizbookname',
dataType: 'TEXT',
}, },
{ {
name: 'press', name: 'press',
prop: 'press', prop: 'press',
dataType: 'TEXT', dataType: 'TEXT',
}, },
{
name: 'booknumber',
prop: 'booknumber',
dataType: 'INT',
},
{ {
name: 'srfkey', name: 'srfkey',
prop: 'ibizbookid', prop: 'ibizbookid',
......
...@@ -2,14 +2,23 @@ ...@@ -2,14 +2,23 @@
color: #1890ff; color: #1890ff;
background: #e6f7ff; background: #e6f7ff;
border-color: #91d5ff; border-color: #91d5ff;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-press { .book-press {
color: #52c41a; color: #52c41a;
background: #f6ffed; background: #f6ffed;
border-color: #b7eb8f; border-color: #b7eb8f;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-price { .book-price {
color: #fa541c; color: #fa541c;
background: #fff2e8; background: #fff2e8;
border-color: #ffbb96; border-color: #ffbb96;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
...@@ -716,7 +716,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -716,7 +716,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}, isReset: boolean = false): void { public load(opt: any = {}, isReset: boolean = false): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -795,7 +795,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -795,7 +795,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -904,7 +904,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -904,7 +904,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -912,7 +912,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface ...@@ -912,7 +912,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
......
...@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderPickupGridViewBase * @memberof IBIZOrderSF1GridViewBase
*/ */
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) { if (args.length === 0) {
...@@ -442,6 +442,20 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -442,6 +442,20 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0]; return this.selections[0];
} }
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/** /**
* 是否嵌入关系界面 * 是否嵌入关系界面
...@@ -976,7 +990,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -976,7 +990,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) { if (!this.fetchAction) {
this.$Notice.error({ this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string, title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderPickupGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string), desc: "IBIZOrderSF1GridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
}); });
return; return;
} }
...@@ -1105,7 +1119,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1105,7 +1119,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) { if (!this.removeAction) {
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string) desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
}); });
return; return;
} }
...@@ -1219,7 +1233,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1219,7 +1233,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2150,7 +2164,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2150,7 +2164,7 @@ export default class MainBase extends Vue implements ControlInterface {
try { try {
if (Object.is(item.rowDataState, 'create')) { if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) { if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2159,7 +2173,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2159,7 +2173,7 @@ export default class MainBase extends Vue implements ControlInterface {
} }
}else if (Object.is(item.rowDataState, 'update')){ }else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) { if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2235,7 +2249,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2235,7 +2249,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string) desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
}); });
return; return;
} }
......
...@@ -104,6 +104,21 @@ export default class MainModel { ...@@ -104,6 +104,21 @@ export default class MainModel {
prop: 'n_ibizordername_like', prop: 'n_ibizordername_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_orderstate_eq',
prop: 'n_orderstate_eq',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_gt',
prop: 'n_ordertime_gt',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_lt',
prop: 'n_ordertime_lt',
dataType: 'QUERYPARAM'
},
{ {
name:'size', name:'size',
......
...@@ -129,7 +129,8 @@ ...@@ -129,7 +129,8 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"layout" : "FLEX" "layout" : "FLEX",
"spacingLeft" : "OUTERMEDIUM"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "ibizbookname",
"hidden" : false, "hidden" : false,
...@@ -339,7 +340,9 @@ ...@@ -339,7 +340,9 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 40, "width" : 40,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -367,7 +370,10 @@ ...@@ -367,7 +370,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 150, "width" : 150,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -395,7 +401,10 @@ ...@@ -395,7 +401,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 50, "width" : 50,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -408,16 +417,23 @@ ...@@ -408,16 +417,23 @@
"showCaption" : false "showCaption" : false
}, { }, {
"actionType" : "NONE", "actionType" : "NONE",
"buttonHeight" : 30.0,
"buttonStyle" : "INFO", "buttonStyle" : "INFO",
"buttonWidth" : 100.0, "buttonWidth" : 100.0,
"caption" : "无处理按钮", "caption" : "无处理按钮",
"contentHeight" : 30.0,
"contentWidth" : 100.0, "contentWidth" : 100.0,
"height" : 30.0,
"itemStyle" : "INFO", "itemStyle" : "INFO",
"itemType" : "BUTTON", "itemType" : "BUTTON",
"name" : "button_calluilogic1", "name" : "button_calluilogic1",
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"height" : 30,
"heightMode" : "PX",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 100, "width" : 100,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -451,11 +467,18 @@ ...@@ -451,11 +467,18 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 9,
"name" : "booknumber",
"getPSAppDEField" : {
"name" : "BOOKNUMBER",
"codeName" : "Booknumber"
}
}, {
"dataType" : 25, "dataType" : 25,
"name" : "ibizbookid", "name" : "subtext",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZBOOKID", "name" : "SUBTEXT",
"codeName" : "IBIZBOOKId" "codeName" : "Subtext"
} }
}, { }, {
"dataType" : 7, "dataType" : 7,
...@@ -464,6 +487,13 @@ ...@@ -464,6 +487,13 @@
"name" : "PRICE", "name" : "PRICE",
"codeName" : "Price" "codeName" : "Price"
} }
}, {
"dataType" : 25,
"name" : "ibizbookname",
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -476,11 +506,11 @@ ...@@ -476,11 +506,11 @@
"codeName" : "Type" "codeName" : "Type"
} }
}, { }, {
"dataType" : 21, "dataType" : 25,
"name" : "icon", "name" : "ibizbookid",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKID",
"codeName" : "Icon" "codeName" : "IBIZBOOKId"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -490,18 +520,11 @@ ...@@ -490,18 +520,11 @@
"codeName" : "Author" "codeName" : "Author"
} }
}, { }, {
"dataType" : 25, "dataType" : 21,
"name" : "subtext", "name" : "icon",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookname",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZBOOKNAME", "name" : "ICON",
"codeName" : "IBIZBOOKName" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -510,13 +533,6 @@ ...@@ -510,13 +533,6 @@
"name" : "PRESS", "name" : "PRESS",
"codeName" : "Press" "codeName" : "Press"
} }
}, {
"dataType" : 9,
"name" : "booknumber",
"getPSAppDEField" : {
"name" : "BOOKNUMBER",
"codeName" : "Booknumber"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -110,7 +110,8 @@ ...@@ -110,7 +110,8 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"layout" : "FLEX" "layout" : "FLEX",
"spacingLeft" : "OUTERMEDIUM"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "ibizbookname",
"hidden" : false, "hidden" : false,
...@@ -320,7 +321,9 @@ ...@@ -320,7 +321,9 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 40, "width" : 40,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -348,7 +351,10 @@ ...@@ -348,7 +351,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 150, "width" : 150,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -376,7 +382,10 @@ ...@@ -376,7 +382,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 50, "width" : 50,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -389,16 +398,23 @@ ...@@ -389,16 +398,23 @@
"showCaption" : false "showCaption" : false
}, { }, {
"actionType" : "NONE", "actionType" : "NONE",
"buttonHeight" : 30.0,
"buttonStyle" : "INFO", "buttonStyle" : "INFO",
"buttonWidth" : 100.0, "buttonWidth" : 100.0,
"caption" : "无处理按钮", "caption" : "无处理按钮",
"contentHeight" : 30.0,
"contentWidth" : 100.0, "contentWidth" : 100.0,
"height" : 30.0,
"itemStyle" : "INFO", "itemStyle" : "INFO",
"itemType" : "BUTTON", "itemType" : "BUTTON",
"name" : "button_calluilogic1", "name" : "button_calluilogic1",
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"height" : 30,
"heightMode" : "PX",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 100, "width" : 100,
"widthMode" : "PX" "widthMode" : "PX"
}, },
......
...@@ -249,7 +249,8 @@ ...@@ -249,7 +249,8 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"layout" : "FLEX" "layout" : "FLEX",
"spacingLeft" : "OUTERMEDIUM"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "ibizbookname",
"hidden" : false, "hidden" : false,
...@@ -459,7 +460,9 @@ ...@@ -459,7 +460,9 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 40, "width" : 40,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -487,7 +490,10 @@ ...@@ -487,7 +490,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 150, "width" : 150,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -515,7 +521,10 @@ ...@@ -515,7 +521,10 @@
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"layout" : "FLEX", "layout" : "FLEX",
"spacingLeft" : "OUTERSMALL",
"spacingRight" : "OUTERSMALL",
"width" : 50, "width" : 50,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -528,16 +537,23 @@ ...@@ -528,16 +537,23 @@
"showCaption" : false "showCaption" : false
}, { }, {
"actionType" : "NONE", "actionType" : "NONE",
"buttonHeight" : 30.0,
"buttonStyle" : "INFO", "buttonStyle" : "INFO",
"buttonWidth" : 100.0, "buttonWidth" : 100.0,
"caption" : "无处理按钮", "caption" : "无处理按钮",
"contentHeight" : 30.0,
"contentWidth" : 100.0, "contentWidth" : 100.0,
"height" : 30.0,
"itemStyle" : "INFO", "itemStyle" : "INFO",
"itemType" : "BUTTON", "itemType" : "BUTTON",
"name" : "button_calluilogic1", "name" : "button_calluilogic1",
"getPSLayoutPos" : { "getPSLayoutPos" : {
"grow" : -1, "grow" : -1,
"hAlignSelf" : "CENTER",
"height" : 30,
"heightMode" : "PX",
"layout" : "FLEX", "layout" : "FLEX",
"spacingRight" : "OUTERSMALL",
"width" : 100, "width" : 100,
"widthMode" : "PX" "widthMode" : "PX"
}, },
...@@ -645,11 +661,18 @@ ...@@ -645,11 +661,18 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 9,
"name" : "booknumber",
"getPSAppDEField" : {
"name" : "BOOKNUMBER",
"codeName" : "Booknumber"
}
}, {
"dataType" : 25, "dataType" : 25,
"name" : "ibizbookid", "name" : "subtext",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZBOOKID", "name" : "SUBTEXT",
"codeName" : "IBIZBOOKId" "codeName" : "Subtext"
} }
}, { }, {
"dataType" : 7, "dataType" : 7,
...@@ -658,6 +681,13 @@ ...@@ -658,6 +681,13 @@
"name" : "PRICE", "name" : "PRICE",
"codeName" : "Price" "codeName" : "Price"
} }
}, {
"dataType" : 25,
"name" : "ibizbookname",
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -670,11 +700,11 @@ ...@@ -670,11 +700,11 @@
"codeName" : "Type" "codeName" : "Type"
} }
}, { }, {
"dataType" : 21, "dataType" : 25,
"name" : "icon", "name" : "ibizbookid",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKID",
"codeName" : "Icon" "codeName" : "IBIZBOOKId"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -684,18 +714,11 @@ ...@@ -684,18 +714,11 @@
"codeName" : "Author" "codeName" : "Author"
} }
}, { }, {
"dataType" : 25, "dataType" : 21,
"name" : "subtext", "name" : "icon",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookname",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZBOOKNAME", "name" : "ICON",
"codeName" : "IBIZBOOKName" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -704,13 +727,6 @@ ...@@ -704,13 +727,6 @@
"name" : "PRESS", "name" : "PRESS",
"codeName" : "Press" "codeName" : "Press"
} }
}, {
"dataType" : 9,
"name" : "booknumber",
"getPSAppDEField" : {
"name" : "BOOKNUMBER",
"codeName" : "Booknumber"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -3,16 +3,25 @@ ...@@ -3,16 +3,25 @@
color: #fa541c; color: #fa541c;
background: #fff2e8; background: #fff2e8;
border-color: #ffbb96; border-color: #ffbb96;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-press { .book-press {
color: #52c41a; color: #52c41a;
background: #f6ffed; background: #f6ffed;
border-color: #b7eb8f; border-color: #b7eb8f;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-type { .book-type {
color: #1890ff; color: #1890ff;
background: #e6f7ff; background: #e6f7ff;
border-color: #91d5ff; border-color: #91d5ff;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.container-backgroundcolor-none { .container-backgroundcolor-none {
>.ivu-row{ >.ivu-row{
......
...@@ -3,16 +3,25 @@ ...@@ -3,16 +3,25 @@
color: #fa541c; color: #fa541c;
background: #fff2e8; background: #fff2e8;
border-color: #ffbb96; border-color: #ffbb96;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-press { .book-press {
color: #52c41a; color: #52c41a;
background: #f6ffed; background: #f6ffed;
border-color: #b7eb8f; border-color: #b7eb8f;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.book-type { .book-type {
color: #1890ff; color: #1890ff;
background: #e6f7ff; background: #e6f7ff;
border-color: #91d5ff; border-color: #91d5ff;
border: 1px solid;
border-radius: 4px;
line-height: 20px;
} }
.container-backgroundcolor-none { .container-backgroundcolor-none {
>.ivu-row{ >.ivu-row{
......
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 --> <!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-753-7"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-760-7">
<createTable tableName="T_IBIZBOOK"> <createTable tableName="T_IBIZBOOK">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)"> <column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column> </column>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册