提交 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',
......
...@@ -48,18 +48,18 @@ ...@@ -48,18 +48,18 @@
<div v-show="flag" class="batch-toolbar"> <div v-show="flag" class="batch-toolbar">
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
<i-button v-show="usr2dataviewdataview_batchtoolbarModels.deuiaction1.visabled" :disabled="usr2dataviewdataview_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="dataview_batchtoolbar_click({ tag: 'deuiaction1' }, $event)"> <i-button v-show="dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction1.visabled" :disabled="dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="dataviewexpbar_dataview_batchtoolbar_click({ tag: 'deuiaction1' }, $event)">
<i class='fa fa-edit'></i> <i class='fa fa-edit'></i>
<span class='caption'>{{$t('entities.ibizbook.usr2dataviewdataview_batchtoolbar_toolbar.deuiaction1.caption')}}</span> <span class='caption'>{{$t('entities.ibizbook.dataviewexpviewdataviewexpbar_dataview_batchtoolbar_toolbar.deuiaction1.caption')}}</span>
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.usr2dataviewdataview_batchtoolbar_toolbar.deuiaction1.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.dataviewexpviewdataviewexpbar_dataview_batchtoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip> </tooltip>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
<i-button v-show="usr2dataviewdataview_batchtoolbarModels.deuiaction2.visabled" :disabled="usr2dataviewdataview_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="dataview_batchtoolbar_click({ tag: 'deuiaction2' }, $event)"> <i-button v-show="dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction2.visabled" :disabled="dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="dataviewexpbar_dataview_batchtoolbar_click({ tag: 'deuiaction2' }, $event)">
<i class='fa fa-remove'></i> <i class='fa fa-remove'></i>
<span class='caption'>{{$t('entities.ibizbook.usr2dataviewdataview_batchtoolbar_toolbar.deuiaction2.caption')}}</span> <span class='caption'>{{$t('entities.ibizbook.dataviewexpviewdataviewexpbar_dataview_batchtoolbar_toolbar.deuiaction2.caption')}}</span>
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.usr2dataviewdataview_batchtoolbar_toolbar.deuiaction2.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.dataviewexpviewdataviewexpbar_dataview_batchtoolbar_toolbar.deuiaction2.tip')}}</div>
</tooltip> </tooltip>
</div> </div>
</div> </div>
...@@ -202,18 +202,18 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -202,18 +202,18 @@ export default class Usr2Base extends Vue implements ControlInterface {
public appEntityService: IBIZBOOKEntityService = new IBIZBOOKEntityService({ $store: this.$store }); public appEntityService: IBIZBOOKEntityService = new IBIZBOOKEntityService({ $store: this.$store });
/** /**
* dataview_batchtoolbar 部件 click 事件 * dataviewexpbar_dataview_batchtoolbar 部件 click 事件
* *
* @param {*} [args={}] * @param {*} [args={}]
* @param {*} $event * @param {*} $event
* @memberof Usr2Base * @memberof Usr2Base
*/ */
public dataview_batchtoolbar_click($event: any, $event2?: any) { public dataviewexpbar_dataview_batchtoolbar_click($event: any, $event2?: any) {
if (Object.is($event.tag, 'deuiaction1')) { if (Object.is($event.tag, 'deuiaction1')) {
this.dataview_batchtoolbar_deuiaction1_click(null, 'dataview_batchtoolbar', $event2); this.dataviewexpbar_dataview_batchtoolbar_deuiaction1_click(null, 'dataviewexpbar_dataview_batchtoolbar', $event2);
} }
if (Object.is($event.tag, 'deuiaction2')) { if (Object.is($event.tag, 'deuiaction2')) {
this.dataview_batchtoolbar_deuiaction2_click(null, 'dataview_batchtoolbar', $event2); this.dataviewexpbar_dataview_batchtoolbar_deuiaction2_click(null, 'dataviewexpbar_dataview_batchtoolbar', $event2);
} }
} }
...@@ -226,7 +226,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -226,7 +226,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] * @param {*} [$event]
* @memberof * @memberof
*/ */
public dataview_batchtoolbar_deuiaction1_click(params: any = {}, tag?: any, $event?: any) { public dataviewexpbar_dataview_batchtoolbar_deuiaction1_click(params: any = {}, tag?: any, $event?: any) {
// 参数 // 参数
// 取数 // 取数
let datas: any[] = []; let datas: any[] = [];
...@@ -254,7 +254,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -254,7 +254,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] * @param {*} [$event]
* @memberof * @memberof
*/ */
public dataview_batchtoolbar_deuiaction2_click(params: any = {}, tag?: any, $event?: any) { public dataviewexpbar_dataview_batchtoolbar_deuiaction2_click(params: any = {}, tag?: any, $event?: any) {
// 参数 // 参数
// 取数 // 取数
let datas: any[] = []; let datas: any[] = [];
...@@ -282,7 +282,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -282,7 +282,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] * @param {*} [$event]
* @memberof * @memberof
*/ */
public dataview_memo1_u37f11a8_click(params: any = {}, tag?: any, $event?: any) { public dataviewexpbar_dataview_memo1_u37f11a8_click(params: any = {}, tag?: any, $event?: any) {
// 取数 // 取数
let datas: any[] = []; let datas: any[] = [];
let xData: any = null; let xData: any = null;
...@@ -309,7 +309,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -309,7 +309,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] * @param {*} [$event]
* @memberof * @memberof
*/ */
public dataview_memo1_uc365542_click(params: any = {}, tag?: any, $event?: any) { public dataviewexpbar_dataview_memo1_uc365542_click(params: any = {}, tag?: any, $event?: any) {
// 取数 // 取数
let datas: any[] = []; let datas: any[] = [];
let xData: any = null; let xData: any = null;
...@@ -337,7 +337,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -337,7 +337,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsr2DataViewBase * @memberof IBIZBOOKDataViewExpViewBase
*/ */
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) {
...@@ -363,7 +363,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -363,7 +363,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsr2DataViewBase * @memberof IBIZBOOKDataViewExpViewBase
*/ */
public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this; const _this: any = this;
...@@ -427,6 +427,12 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -427,6 +427,12 @@ export default class Usr2Base extends Vue implements ControlInterface {
} }
let result: boolean = true; let result: boolean = true;
Object.assign(actionData, args); Object.assign(actionData, args);
if ('selectionchange'.indexOf(eventName) !== -1) {
result = await this.execute_dataviewexpbar_selectionchange_ctrl_logic(actionData) && result;
}
if ('load'.indexOf(eventName) !== -1) {
result = await this.execute_dataviewexpbar_load_ctrl_logic(actionData) && result;
}
if (!result) { if (!result) {
return false; return false;
} }
...@@ -434,6 +440,30 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -434,6 +440,30 @@ export default class Usr2Base extends Vue implements ControlInterface {
return true; return true;
} }
/**
* 部件逻辑 -- dataviewexpbar_selectionchange
*
* @param {string} eventName 部件事件名称
* @param {any[]} data 数据
* @param {*} event 源事件对象
* @memberof Usr2Base
*/
public async execute_dataviewexpbar_selectionchange_ctrl_logic(actionData: any): Promise<boolean> {
console.log('暂未支持 CUSTOM 类型');
return true;
}
/**
* 部件逻辑 -- dataviewexpbar_load
*
* @param {string} eventName 部件事件名称
* @param {any[]} data 数据
* @param {*} event 源事件对象
* @memberof Usr2Base
*/
public async execute_dataviewexpbar_load_ctrl_logic(actionData: any): Promise<boolean> {
console.log('暂未支持 CUSTOM 类型');
return true;
}
...@@ -678,9 +708,9 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -678,9 +708,9 @@ export default class Usr2Base extends Vue implements ControlInterface {
* 工具栏模型 * 工具栏模型
* *
* @type {*} * @type {*}
* @memberof IBIZBOOKUsr2DataView * @memberof IBIZBOOKDataViewExpView
*/ */
public usr2dataviewdataview_batchtoolbarModels: any = { public dataviewexpviewdataviewexpbar_dataview_batchtoolbarModels: any = {
deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '编辑', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Edit', target: 'SINGLEKEY' } }, deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '编辑', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Edit', target: 'SINGLEKEY' } },
deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } }, deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } },
...@@ -1005,7 +1035,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -1005,7 +1035,7 @@ export default class Usr2Base extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}, isReset: boolean = false): Promise<any> { public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2DataView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -1100,7 +1130,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -1100,7 +1130,7 @@ export default class Usr2Base 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: 'IBIZBOOKUsr2DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -1217,7 +1247,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -1217,7 +1247,7 @@ export default class Usr2Base 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: 'IBIZBOOKUsr2DataView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataViewExpView' + (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);
...@@ -1225,7 +1255,7 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -1225,7 +1255,7 @@ export default class Usr2Base 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: 'IBIZBOOKUsr2DataView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){ if(item.ibizbook){
...@@ -1327,16 +1357,16 @@ export default class Usr2Base extends Vue implements ControlInterface { ...@@ -1327,16 +1357,16 @@ export default class Usr2Base extends Vue implements ControlInterface {
public uiAction(data: any, tag: any, $event: any) { public uiAction(data: any, tag: any, $event: any) {
$event.stopPropagation(); $event.stopPropagation();
if(Object.is('Edit', tag)) { if(Object.is('Edit', tag)) {
this.dataview_batchtoolbar_deuiaction1_click(data, tag, $event); this.dataviewexpbar_dataview_batchtoolbar_deuiaction1_click(data, tag, $event);
} }
if(Object.is('Remove', tag)) { if(Object.is('Remove', tag)) {
this.dataview_batchtoolbar_deuiaction2_click(data, tag, $event); this.dataviewexpbar_dataview_batchtoolbar_deuiaction2_click(data, tag, $event);
} }
if(Object.is('Edit', tag)) { if(Object.is('Edit', tag)) {
this.dataview_memo1_u37f11a8_click(data, tag, $event); this.dataviewexpbar_dataview_memo1_u37f11a8_click(data, tag, $event);
} }
if(Object.is('Remove', tag)) { if(Object.is('Remove', tag)) {
this.dataview_memo1_uc365542_click(data, tag, $event); this.dataviewexpbar_dataview_memo1_uc365542_click(data, tag, $event);
} }
} }
......
...@@ -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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册