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

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

上级 6fd2285c
......@@ -618,7 +618,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
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;
}
const arg: any = { ...opt };
......@@ -654,7 +654,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
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;
}
const arg: any = { ...opt } ;
......
......@@ -691,7 +691,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5DataView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -727,7 +727,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5DataView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -15,24 +15,23 @@ export default class ListpanelModel {
public getDataItems(): any[] {
return [
{
name: 'press',
prop: 'press',
dataType: 'TEXT',
name: 'icon',
prop: 'icon',
dataType: 'LONGTEXT',
},
{
name: 'ibizbookid',
prop: 'ibizbookid',
dataType: 'GUID',
name: 'ibizbookname',
prop: 'ibizbookname',
dataType: 'TEXT',
},
{
name: 'type',
prop: 'type',
dataType: 'TEXT',
codelist:{tag:'BookType',codelistType:'STATIC'},
name: 'price',
prop: 'price',
dataType: 'FLOAT',
},
{
name: 'ibizbookname',
prop: 'ibizbookname',
name: 'press',
prop: 'press',
dataType: 'TEXT',
},
{
......@@ -45,20 +44,21 @@ export default class ListpanelModel {
prop: 'author',
dataType: 'TEXT',
},
{
name: 'price',
prop: 'price',
dataType: 'FLOAT',
},
{
name: 'booknumber',
prop: 'booknumber',
dataType: 'INT',
},
{
name: 'icon',
prop: 'icon',
dataType: 'LONGTEXT',
name: 'ibizbookid',
prop: 'ibizbookid',
dataType: 'GUID',
},
{
name: 'type',
prop: 'type',
dataType: 'TEXT',
codelist:{tag:'BookType',codelistType:'STATIC'},
},
{
name: 'srfkey',
......
......@@ -677,7 +677,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public load(opt: any = {}, isReset: boolean = false): void {
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};
......@@ -756,7 +756,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[] = [];
......@@ -865,7 +865,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);
......@@ -873,7 +873,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){
......
......@@ -69,6 +69,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
......
......@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderPickupGridViewBase
* @memberof IBIZOrderSF1GridViewBase
*/
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) {
......@@ -441,6 +441,20 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0];
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/**
* 是否嵌入关系界面
......@@ -975,7 +989,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
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;
}
......@@ -1104,7 +1118,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
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;
}
......@@ -1218,7 +1232,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: '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;
}
if(!arg){
......@@ -2149,7 +2163,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: '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 {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2158,7 +2172,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: '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 {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2234,7 +2248,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
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;
}
......
......@@ -104,6 +104,21 @@ export default class MainModel {
prop: 'n_ibizordername_like',
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',
......
......@@ -618,7 +618,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021WFDynaExpGridView_layout' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021GridView_layout' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -654,7 +654,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021WFDynaExpGridView_layout' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021GridView_layout' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -373,6 +373,13 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0];
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
......@@ -905,7 +912,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZSample0021WFDynaExpGridView_layout" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZSample0021GridView_layout" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1034,7 +1041,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZSample0021WFDynaExpGridView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZSample0021GridView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1148,7 +1155,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: 'IBIZSample0021WFDynaExpGridView_layout'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021GridView_layout'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2055,7 +2062,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: 'IBIZSample0021WFDynaExpGridView_layout'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021GridView_layout'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2064,7 +2071,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: 'IBIZSample0021WFDynaExpGridView_layout'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZSample0021GridView_layout'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2140,7 +2147,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZSample0021WFDynaExpGridView_layout' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZSample0021GridView_layout' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -58,55 +58,7 @@
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
......@@ -121,6 +73,72 @@
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container4",
"getPSLayout" : {
"dir" : "row",
"layout" : "FLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentHeight" : 80.0,
"contentWidth" : 80.0,
"height" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorHeight" : 80.0,
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"height" : 80,
"heightMode" : "PX",
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
......@@ -136,12 +154,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label1",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "作者:",
......@@ -151,6 +172,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "作者:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -188,12 +211,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label3",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "借阅数量:",
......@@ -203,6 +229,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "借阅数量:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -240,12 +268,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label4",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "书籍描述:",
......@@ -255,6 +286,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "书籍描述:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -302,36 +335,32 @@
"id" : "DataImport"
},
"getPSDEListDataItems" : [ {
"dataType" : 25,
"name" : "press",
"dataType" : 21,
"name" : "icon",
"getPSAppDEField" : {
"name" : "PRESS",
"codeName" : "Press"
"name" : "ICON",
"codeName" : "Icon"
}
}, {
"dataType" : 25,
"name" : "ibizbookid",
"name" : "ibizbookname",
"getPSAppDEField" : {
"name" : "IBIZBOOKID",
"codeName" : "IBIZBOOKId"
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, {
"dataType" : 25,
"getFrontPSCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name" : "type",
"dataType" : 7,
"name" : "price",
"getPSAppDEField" : {
"name" : "TYPE",
"codeName" : "Type"
"name" : "PRICE",
"codeName" : "Price"
}
}, {
"dataType" : 25,
"name" : "ibizbookname",
"name" : "press",
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
"name" : "PRESS",
"codeName" : "Press"
}
}, {
"dataType" : 25,
......@@ -347,13 +376,6 @@
"name" : "AUTHOR",
"codeName" : "Author"
}
}, {
"dataType" : 7,
"name" : "price",
"getPSAppDEField" : {
"name" : "PRICE",
"codeName" : "Price"
}
}, {
"dataType" : 9,
"name" : "booknumber",
......@@ -362,11 +384,22 @@
"codeName" : "Booknumber"
}
}, {
"dataType" : 21,
"name" : "icon",
"dataType" : 25,
"name" : "ibizbookid",
"getPSAppDEField" : {
"name" : "ICON",
"codeName" : "Icon"
"name" : "IBIZBOOKID",
"codeName" : "IBIZBOOKId"
}
}, {
"dataType" : 25,
"getFrontPSCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name" : "type",
"getPSAppDEField" : {
"name" : "TYPE",
"codeName" : "Type"
}
}, {
"dataType" : 25,
......
......@@ -39,55 +39,7 @@
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
......@@ -102,6 +54,72 @@
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container4",
"getPSLayout" : {
"dir" : "row",
"layout" : "FLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentHeight" : 80.0,
"contentWidth" : 80.0,
"height" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorHeight" : 80.0,
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"height" : 80,
"heightMode" : "PX",
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
......@@ -117,12 +135,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label1",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "作者:",
......@@ -132,6 +153,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "作者:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -169,12 +192,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label3",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "借阅数量:",
......@@ -184,6 +210,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "借阅数量:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -221,12 +249,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label4",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "书籍描述:",
......@@ -236,6 +267,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "书籍描述:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......
......@@ -178,55 +178,7 @@
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
......@@ -241,6 +193,72 @@
"layout" : "TABLE_24COL"
},
"getPSPanelItems" : [ {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container4",
"getPSLayout" : {
"dir" : "row",
"layout" : "FLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"getPSPanelItems" : [ {
"caption" : "图片(动态)",
"contentHeight" : 80.0,
"contentWidth" : 80.0,
"height" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_image",
"getPSEditor" : {
"editorHeight" : 80.0,
"editorParams" : {
"MAXCOUNT" : "1"
},
"editorType" : "PICTURE_ONE",
"editorWidth" : 80.0,
"maxFileCount" : 1,
"maxFileSize" : -1,
"minFileCount" : 0,
"name" : "field_image",
"predefinedType" : "FIELD_IMAGE"
},
"getPSLayoutPos" : {
"grow" : -1,
"height" : 80,
"heightMode" : "PX",
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"viewFieldName" : "icon",
"width" : 80.0,
"hidden" : false,
"showCaption" : false
}, {
"caption" : "文本(动态)",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "field_text_dynamic",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "field_text_dynamic",
"predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
},
"viewFieldName" : "ibizbookname",
"hidden" : false,
"showCaption" : false
} ]
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
......@@ -256,12 +274,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label1",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "作者:",
......@@ -271,6 +292,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "作者:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -308,12 +331,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label3",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "借阅数量:",
......@@ -323,6 +349,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "借阅数量:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -360,12 +388,15 @@
"getPSPanelItems" : [ {
"caption" : "标签",
"contentType" : "RAW",
"contentWidth" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "RAWITEM",
"name" : "static_label4",
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "FLEX"
"layout" : "FLEX",
"width" : 80,
"widthMode" : "PX"
},
"getPSRawItem" : {
"caption" : "书籍描述:",
......@@ -375,6 +406,8 @@
"renderMode" : "PARAGRAPH"
},
"rawContent" : "书籍描述:",
"rawItemWidth" : 80.0,
"width" : 80.0,
"showCaption" : true
}, {
"caption" : "文本(动态)",
......@@ -496,36 +529,32 @@
"id" : "DataImport"
},
"getPSDEListDataItems" : [ {
"dataType" : 25,
"name" : "press",
"dataType" : 21,
"name" : "icon",
"getPSAppDEField" : {
"name" : "PRESS",
"codeName" : "Press"
"name" : "ICON",
"codeName" : "Icon"
}
}, {
"dataType" : 25,
"name" : "ibizbookid",
"name" : "ibizbookname",
"getPSAppDEField" : {
"name" : "IBIZBOOKID",
"codeName" : "IBIZBOOKId"
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, {
"dataType" : 25,
"getFrontPSCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name" : "type",
"dataType" : 7,
"name" : "price",
"getPSAppDEField" : {
"name" : "TYPE",
"codeName" : "Type"
"name" : "PRICE",
"codeName" : "Price"
}
}, {
"dataType" : 25,
"name" : "ibizbookname",
"name" : "press",
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
"name" : "PRESS",
"codeName" : "Press"
}
}, {
"dataType" : 25,
......@@ -541,13 +570,6 @@
"name" : "AUTHOR",
"codeName" : "Author"
}
}, {
"dataType" : 7,
"name" : "price",
"getPSAppDEField" : {
"name" : "PRICE",
"codeName" : "Price"
}
}, {
"dataType" : 9,
"name" : "booknumber",
......@@ -556,11 +578,22 @@
"codeName" : "Booknumber"
}
}, {
"dataType" : 21,
"name" : "icon",
"dataType" : 25,
"name" : "ibizbookid",
"getPSAppDEField" : {
"name" : "ICON",
"codeName" : "Icon"
"name" : "IBIZBOOKID",
"codeName" : "IBIZBOOKId"
}
}, {
"dataType" : 25,
"getFrontPSCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name" : "type",
"getPSAppDEField" : {
"name" : "TYPE",
"codeName" : "Type"
}
}, {
"dataType" : 25,
......
......@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-732-7">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-734-7">
<createTable tableName="T_IBIZBOOK">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册