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

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

上级 9483ac65
...@@ -13,7 +13,9 @@ ...@@ -13,7 +13,9 @@
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.usreditview_actionplugintoolbar_toolbar.deuiaction1.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.usreditview_actionplugintoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip> </tooltip>
<div>红色项</div> <AppButton @click="handleClick" :loading="rowData.loading" :disabled="rowData.item.disabled" class="red-item toolbar-item__btn">
<AppIconText :imgPath="rowData.item.imagePath" :iconClass="rowData.item.iconCls" :text="rowData.item.captionLanResTag ? $t(rowData.item.captionLanResTag, rowData.item.caption) : rowData.item.caption" :tooltip="rowData.item.tooltipLanResTag ? $t(rowData.item.tooltipLanResTag, rowData.item.tooltip) : rowData.item.tooltip" ></AppIconText>
</AppButton>
</div> </div>
</div> </div>
......
...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase 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' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase 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' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase 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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase 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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase 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' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1344,7 +1344,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' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1391,7 +1391,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1391,7 +1391,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' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1461,7 +1461,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1461,7 +1461,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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1569,7 +1569,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1569,7 +1569,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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1661,7 +1661,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1661,7 +1661,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' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase 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' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1494,7 +1494,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1494,7 +1494,7 @@ export default class GuideViewFormBase 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' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1564,7 +1564,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1564,7 +1564,7 @@ export default class GuideViewFormBase 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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1672,7 +1672,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1672,7 +1672,7 @@ export default class GuideViewFormBase 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' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1764,7 +1764,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1764,7 +1764,7 @@ export default class GuideViewFormBase 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' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<div class="app-layoutpanel List_itempanel" v-loading="isLayoutLoadding" :style="{width: '100%', height: '100%', overflow: 'auto'}"> <div class="app-layoutpanel List_itempanel" v-loading="isLayoutLoadding" :style="{width: '100%', height: '100%', overflow: 'auto'}">
<div v-show="!isLayoutLoadding" :style="{height: '100%', width: '100%'}"> <div v-show="!isLayoutLoadding" :style="{height: '100%', width: '100%'}">
<app-standard-container name="container1" :isMultiContainer="false" :layoutModelDetails="layoutModelDetails"> <app-standard-container name="container1" :isMultiContainer="false" :layoutModelDetails="layoutModelDetails">
<template #ibizbookname> <template #srfmajortext>
<app-preset-text name="ibizbookname" :value="layoutData.ibizbookname" :layoutModelDetails="layoutModelDetails"/> <app-preset-text name="srfmajortext" :value="layoutData.srfmajortext" :layoutModelDetails="layoutModelDetails"/>
</template> </template>
<template #srfdescription> <template #srfdescription>
<app-preset-text name="srfdescription" :value="layoutData.srfdescription" :layoutModelDetails="layoutModelDetails"/> <app-preset-text name="srfdescription" :value="layoutData.srfdescription" :layoutModelDetails="layoutModelDetails"/>
...@@ -300,9 +300,9 @@ export default class List_itempanelBase extends Vue implements ControlInterface ...@@ -300,9 +300,9 @@ export default class List_itempanelBase extends Vue implements ControlInterface
* @memberof List_itempanelBase * @memberof List_itempanelBase
*/ */
public layoutItems:any = { public layoutItems:any = {
ibizbookname:{ name: 'ibizbookname', type: 'ITEMLAYOUT', caption: '文本(动态)', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , required: false, fieldState: '0', predefinedType: 'FIELD_TEXT_DYNAMIC', renderMode: 'TEXT_DYNAMIC', dataItemName:'ibizbookname', wrapMode:'', vAlign:'', hAlign:'', }, srfmajortext:{ name: 'srfmajortext', type: 'ITEMLAYOUT', caption: '文本(动态)', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , required: false, fieldState: '0', predefinedType: 'FIELD_TEXT_DYNAMIC', renderMode: 'TEXT_DYNAMIC', dataItemName:'srfmajortext', wrapMode:'', vAlign:'', hAlign:'', },
srfdescription:{ name: 'srfdescription', type: 'ITEMLAYOUT', caption: '文本(动态)', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , required: false, fieldState: '0', predefinedType: 'FIELD_TEXT_DYNAMIC', renderMode: 'TEXT_DYNAMIC', dataItemName:'srfdescription', wrapMode:'', vAlign:'', hAlign:'', }, srfdescription:{ name: 'srfdescription', type: 'ITEMLAYOUT', caption: '文本(动态)', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , required: false, fieldState: '0', predefinedType: 'FIELD_TEXT_DYNAMIC', renderMode: 'TEXT_DYNAMIC', dataItemName:'srfdescription', wrapMode:'', vAlign:'', hAlign:'', },
container1:{ name: 'container1', type: 'ITEMLAYOUT', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'FLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, panel: this , details:['ibizbookname','srfdescription'] , dataRegionType: 'INHERIT' } container1:{ name: 'container1', type: 'ITEMLAYOUT', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'FLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, panel: this , details:['srfmajortext','srfdescription'] , dataRegionType: 'INHERIT' }
} }
/** /**
......
...@@ -16,8 +16,8 @@ export default class List_itempanelModel { ...@@ -16,8 +16,8 @@ export default class List_itempanelModel {
public getDataItems(): any[] { public getDataItems(): any[] {
return [ return [
{ {
name: 'ibizbookname', name: 'srfmajortext',
prop: 'ibizbookname' prop: 'srfmajortext'
}, },
{ {
name: 'srfdescription', name: 'srfdescription',
......
...@@ -16,12 +16,9 @@ export default class LnternalFuncListModel { ...@@ -16,12 +16,9 @@ export default class LnternalFuncListModel {
public getDataItems(): any[] { public getDataItems(): any[] {
return [ return [
{ {
name: 'price', name: 'srficon',
}, prop: 'icon',
{ dataType: 'LONGTEXT',
name: 'srfdescription',
prop: 'subtext',
dataType: 'TEXT',
}, },
{ {
name: 'srfdate', name: 'srfdate',
...@@ -29,30 +26,33 @@ export default class LnternalFuncListModel { ...@@ -29,30 +26,33 @@ export default class LnternalFuncListModel {
dataType: 'DATETIME', dataType: 'DATETIME',
}, },
{ {
name: 'booknumber', name: 'srfdescription',
prop: 'subtext',
dataType: 'TEXT',
},
{
name: 'ibizbookid',
}, },
{ {
name: 'type', name: 'type',
codelist:{tag:'BookType',codelistType:'STATIC'}, codelist:{tag:'BookType',codelistType:'STATIC'},
}, },
{ {
name: 'press', name: 'srfmajortext',
prop: 'ibizbookname',
dataType: 'TEXT',
}, },
{ {
name: 'srficon', name: 'price',
prop: 'icon',
dataType: 'LONGTEXT',
}, },
{ {
name: 'ibizbookid', name: 'booknumber',
}, },
{ {
name: 'author', name: 'author',
}, },
{ {
name: 'srfmajortext', name: 'press',
prop: 'ibizbookname',
dataType: 'TEXT',
}, },
{ {
name: 'srfkey', name: 'srfkey',
......
...@@ -11,7 +11,7 @@ export default class Usr2Model { ...@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合 * 获取数据项集合
* *
* @returns {any[]} * @returns {any[]}
* @memberof Usr2DataViewMode * @memberof Usr2Dataviewexpbar_dataviewMode
*/ */
public getDataItems(): any[] { public getDataItems(): any[] {
return [ return [
...@@ -40,17 +40,6 @@ export default class Usr2Model { ...@@ -40,17 +40,6 @@ export default class Usr2Model {
dataType: 'FONTKEY', dataType: 'FONTKEY',
}, },
{
name: 'n_ibizbookname_like',
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{ {
name:'size', name:'size',
......
...@@ -12,18 +12,6 @@ ...@@ -12,18 +12,6 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者", "caption" : "作者",
"codeName" : "author", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -71,6 +59,18 @@ ...@@ -71,6 +59,18 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -60,10 +60,10 @@ ...@@ -60,10 +60,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -454,14 +454,11 @@ ...@@ -454,14 +454,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -471,8 +468,15 @@ ...@@ -471,8 +468,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -482,27 +486,23 @@ ...@@ -482,27 +486,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
{ {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -41,10 +41,10 @@ ...@@ -41,10 +41,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
......
...@@ -20,13 +20,13 @@ ...@@ -20,13 +20,13 @@
} }
} ], } ],
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "作者", "caption" : "图书描述",
"codeName" : "author", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/author", "mOSFilePath" : "psdetreecols/subtext",
"name" : "author", "name" : "subtext",
"rTMOSFilePath" : "psdetreecols/author", "rTMOSFilePath" : "psdetreecols/subtext",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -44,13 +44,13 @@ ...@@ -44,13 +44,13 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书描述", "caption" : "作者",
"codeName" : "subtext", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext", "dataItemName" : "author",
"mOSFilePath" : "psdetreecols/subtext", "mOSFilePath" : "psdetreecols/author",
"name" : "subtext", "name" : "author",
"rTMOSFilePath" : "psdetreecols/subtext", "rTMOSFilePath" : "psdetreecols/author",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -42,18 +42,6 @@ ...@@ -42,18 +42,6 @@
"id" : "GANTT" "id" : "GANTT"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者", "caption" : "作者",
"codeName" : "author", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -101,6 +89,18 @@ ...@@ -101,6 +89,18 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
...@@ -1189,8 +1189,8 @@ ...@@ -1189,8 +1189,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -1231,10 +1231,10 @@ ...@@ -1231,10 +1231,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -1247,7 +1247,7 @@ ...@@ -1247,7 +1247,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -1699,14 +1699,11 @@ ...@@ -1699,14 +1699,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -1716,8 +1713,15 @@ ...@@ -1716,8 +1713,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -1727,27 +1731,23 @@ ...@@ -1727,27 +1731,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -1048,8 +1048,8 @@ ...@@ -1048,8 +1048,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -1090,10 +1090,10 @@ ...@@ -1090,10 +1090,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -1106,7 +1106,7 @@ ...@@ -1106,7 +1106,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -1558,14 +1558,11 @@ ...@@ -1558,14 +1558,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -1575,8 +1572,15 @@ ...@@ -1575,8 +1572,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -1586,27 +1590,23 @@ ...@@ -1586,27 +1590,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -88,13 +88,13 @@ ...@@ -88,13 +88,13 @@
"id" : "TREEGRIDEX" "id" : "TREEGRIDEX"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "作者", "caption" : "图书描述",
"codeName" : "author", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/author", "mOSFilePath" : "psdetreecols/subtext",
"name" : "author", "name" : "subtext",
"rTMOSFilePath" : "psdetreecols/author", "rTMOSFilePath" : "psdetreecols/subtext",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -112,13 +112,13 @@ ...@@ -112,13 +112,13 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书描述", "caption" : "作者",
"codeName" : "subtext", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext", "dataItemName" : "author",
"mOSFilePath" : "psdetreecols/subtext", "mOSFilePath" : "psdetreecols/author",
"name" : "subtext", "name" : "author",
"rTMOSFilePath" : "psdetreecols/subtext", "rTMOSFilePath" : "psdetreecols/author",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -535,8 +535,8 @@ ...@@ -535,8 +535,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -577,10 +577,10 @@ ...@@ -577,10 +577,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -593,7 +593,7 @@ ...@@ -593,7 +593,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -1045,14 +1045,11 @@ ...@@ -1045,14 +1045,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -1062,8 +1059,15 @@ ...@@ -1062,8 +1059,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -1073,27 +1077,23 @@ ...@@ -1073,27 +1077,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -535,8 +535,8 @@ ...@@ -535,8 +535,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -577,10 +577,10 @@ ...@@ -577,10 +577,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -593,7 +593,7 @@ ...@@ -593,7 +593,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -1045,14 +1045,11 @@ ...@@ -1045,14 +1045,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -1062,8 +1059,15 @@ ...@@ -1062,8 +1059,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -1073,27 +1077,23 @@ ...@@ -1073,27 +1077,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -1007,8 +1007,8 @@ ...@@ -1007,8 +1007,8 @@
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ], "hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"getItemPSLayoutPanel" : { "getItemPSLayoutPanel" : {
"getAllPSPanelFields" : [ { "getAllPSPanelFields" : [ {
"id" : "ibizbookname", "id" : "srfmajortext",
"viewFieldName" : "ibizbookname" "viewFieldName" : "srfmajortext"
}, { }, {
"id" : "srfdescription", "id" : "srfdescription",
"viewFieldName" : "srfdescription" "viewFieldName" : "srfdescription"
...@@ -1049,10 +1049,10 @@ ...@@ -1049,10 +1049,10 @@
"caption" : "文本(动态)", "caption" : "文本(动态)",
"itemStyle" : "DEFAULT", "itemStyle" : "DEFAULT",
"itemType" : "FIELD", "itemType" : "FIELD",
"name" : "ibizbookname", "name" : "srfmajortext",
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "ibizbookname", "name" : "srfmajortext",
"predefinedType" : "FIELD_TEXT_DYNAMIC", "predefinedType" : "FIELD_TEXT_DYNAMIC",
"renderMode" : "TEXT_DYNAMIC", "renderMode" : "TEXT_DYNAMIC",
"enableLinkView" : false "enableLinkView" : false
...@@ -1065,7 +1065,7 @@ ...@@ -1065,7 +1065,7 @@
"pluginType" : "LIST_ITEMRENDER", "pluginType" : "LIST_ITEMRENDER",
"pluginCode" : "redCaption" "pluginCode" : "redCaption"
}, },
"viewFieldName" : "ibizbookname", "viewFieldName" : "srfmajortext",
"hidden" : false, "hidden" : false,
"showCaption" : false "showCaption" : false
}, { }, {
...@@ -1517,14 +1517,11 @@ ...@@ -1517,14 +1517,11 @@
"id" : "DataImport" "id" : "DataImport"
}, },
"getPSDEListDataItems" : [ { "getPSDEListDataItems" : [ {
"dataType" : 7,
"name" : "price"
}, {
"dataType" : 25, "dataType" : 25,
"name" : "srfdescription", "name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "SUBTEXT", "name" : "ICON",
"codeName" : "Subtext" "codeName" : "Icon"
} }
}, { }, {
"dataType" : 25, "dataType" : 25,
...@@ -1534,8 +1531,15 @@ ...@@ -1534,8 +1531,15 @@
"codeName" : "CreateDate" "codeName" : "CreateDate"
} }
}, { }, {
"dataType" : 9, "dataType" : 25,
"name" : "booknumber" "name" : "srfdescription",
"getPSAppDEField" : {
"name" : "SUBTEXT",
"codeName" : "Subtext"
}
}, {
"dataType" : 25,
"name" : "ibizbookid"
}, { }, {
"dataType" : 25, "dataType" : 25,
"getFrontPSCodeList" : { "getFrontPSCodeList" : {
...@@ -1545,27 +1549,23 @@ ...@@ -1545,27 +1549,23 @@
"name" : "type" "name" : "type"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "press" "name" : "srfmajortext",
}, {
"dataType" : 25,
"name" : "srficon",
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "ICON", "name" : "IBIZBOOKNAME",
"codeName" : "Icon" "codeName" : "IBIZBOOKName"
} }
}, { }, {
"dataType" : 25, "dataType" : 7,
"name" : "ibizbookid" "name" : "price"
}, {
"dataType" : 9,
"name" : "booknumber"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "author" "name" : "author"
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfmajortext", "name" : "press"
"getPSAppDEField" : {
"name" : "IBIZBOOKNAME",
"codeName" : "IBIZBOOKName"
}
}, { }, {
"dataType" : 25, "dataType" : 25,
"name" : "srfkey", "name" : "srfkey",
......
...@@ -5585,7 +5585,9 @@ ...@@ -5585,7 +5585,9 @@
"refMode" : "CONTROLITEM", "refMode" : "CONTROLITEM",
"refTag" : "TOOLBAR", "refTag" : "TOOLBAR",
"refTag2" : "DEUIACTION", "refTag2" : "DEUIACTION",
"templCode" : "<div>红色项</div>" "templCode" : "<AppButton @click=\"handleClick\" :loading=\"rowData.loading\" :disabled=\"rowData.item.disabled\" class=\"red-item toolbar-item__btn\">\r\n <AppIconText :imgPath=\"rowData.item.imagePath\" :iconClass=\"rowData.item.iconCls\" :text=\"rowData.item.captionLanResTag ? $t(rowData.item.captionLanResTag, rowData.item.caption) : rowData.item.caption\" :tooltip=\"rowData.item.tooltipLanResTag ? $t(rowData.item.tooltipLanResTag, rowData.item.tooltip) : rowData.item.tooltip\" ></AppIconText>\r\n </AppButton>",
"templCode2" : "import { IParam } from \"@/core\";\r\ninterface Props {\r\n rowData: IParam;\r\n}\r\nconst props = defineProps<Props>();\r\nconst emit = defineEmits([\"itemClick\"]);\r\nconst handleClick = (event: MouseEvent) => {\r\n emit(\"itemClick\", props.rowData.item.name, event, props.rowData.item.logic);\r\n};",
"templCode3" : ".red-item {\r\n background-color: red !important;\r\n}"
}, { }, {
"name" : "红色表格头", "name" : "红色表格头",
"getPSSysPFPlugin" : { "getPSSysPFPlugin" : {
...@@ -232,7 +232,9 @@ ...@@ -232,7 +232,9 @@
"refMode" : "CONTROLITEM", "refMode" : "CONTROLITEM",
"refTag" : "TOOLBAR", "refTag" : "TOOLBAR",
"refTag2" : "DEUIACTION", "refTag2" : "DEUIACTION",
"templCode" : "<div>红色项</div>" "templCode" : "<AppButton @click=\"handleClick\" :loading=\"rowData.loading\" :disabled=\"rowData.item.disabled\" class=\"red-item toolbar-item__btn\">\r\n <AppIconText :imgPath=\"rowData.item.imagePath\" :iconClass=\"rowData.item.iconCls\" :text=\"rowData.item.captionLanResTag ? $t(rowData.item.captionLanResTag, rowData.item.caption) : rowData.item.caption\" :tooltip=\"rowData.item.tooltipLanResTag ? $t(rowData.item.tooltipLanResTag, rowData.item.tooltip) : rowData.item.tooltip\" ></AppIconText>\r\n </AppButton>",
"templCode2" : "import { IParam } from \"@/core\";\r\ninterface Props {\r\n rowData: IParam;\r\n}\r\nconst props = defineProps<Props>();\r\nconst emit = defineEmits([\"itemClick\"]);\r\nconst handleClick = (event: MouseEvent) => {\r\n emit(\"itemClick\", props.rowData.item.name, event, props.rowData.item.logic);\r\n};",
"templCode3" : ".red-item {\r\n background-color: red !important;\r\n}"
}, { }, {
"name" : "红色表格头", "name" : "红色表格头",
"getPSSysPFPlugin" : { "getPSSysPFPlugin" : {
......
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
<!--输出实体[IBIZAPPVIEW]数据结构 --> <!--输出实体[IBIZAPPVIEW]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizappview-2-5"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizappview-4-5">
<createTable tableName="T_IBIZAPPVIEW"> <createTable tableName="T_IBIZAPPVIEW">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)"> <column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column> </column>
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 --> <!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1154-7"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1158-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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册