提交 32185151 编写于 作者: Neuromancer255's avatar Neuromancer255

列表导航部件调整

上级 63de18d9
...@@ -46,14 +46,6 @@ ...@@ -46,14 +46,6 @@
*/ */
public listItem: number = 0; public listItem: number = 0;
/**
* 列表数组
*
* @type {Array<any>}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public items: Array<any> = [];
/** /**
* 分页大小 * 分页大小
* *
......
...@@ -14,9 +14,8 @@ ...@@ -14,9 +14,8 @@
class="viewcontainer2" class="viewcontainer2"
:viewDefaultUsage="false" :viewDefaultUsage="false"
:viewdata="JSON.stringify(selection.data)" :viewdata="JSON.stringify(selection.data)"
@viewdataschange="onViewDatasChange" :viewparam="JSON.stringify(selection.viewparam)"
@viewdatasactivated="viewDatasActivated" >
@viewload="onViewLoad">
</component> </component>
</div> </div>
</#if> </#if>
......
...@@ -5,28 +5,6 @@ ...@@ -5,28 +5,6 @@
<#ibizinclude> <#ibizinclude>
../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl ../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl
</#ibizinclude> </#ibizinclude>
<#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??>
<#list view.getPSAppViewLogics() as logic>
<#if logic.getPFLogicCodeType() == 'APP_NEWDATA'>
/**
* 打开新建数据视图
*
* @type {any}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
@Prop() public newdata: any;
</#if>
<#if logic.getPFLogicCodeType() == 'APP_OPENDATA'>
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
@Prop() public opendata: any;
</#if>
</#list>
</#if>
/** /**
* 视图唯一标识 * 视图唯一标识
...@@ -36,15 +14,6 @@ ...@@ -36,15 +14,6 @@
*/ */
@Prop() public viewUID!:string; @Prop() public viewUID!:string;
/**
* 是否单选
*
* @public
* @type {(boolean)}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public isSingleSelect:boolean = true;
/** /**
* 呈现模式,可选值:horizontal或者vertical * 呈现模式,可选值:horizontal或者vertical
* *
...@@ -157,45 +126,6 @@ ...@@ -157,45 +126,6 @@
</#list> </#list>
</#if> </#if>
/**
* 获取多项数据
*
* @returns {any[]}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public getDatas(): any[] {
return [];
}
/**
* 获取单项树
*
* @returns {*}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public getData(): any {
return null;
}
/**
* 选中数据
*
* @type {*}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public selection: any = {};
/**
* split值变化事件
*
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public onSplitChange() {
if(this.split){
this.$store.commit("setViewSplit",{viewUID:this.viewUID,viewSplit:this.split});
}
}
/** /**
* Vue声明周期(组件初始化完毕) * Vue声明周期(组件初始化完毕)
* *
...@@ -279,6 +209,14 @@ ...@@ -279,6 +209,14 @@
${destroyed_block} ${destroyed_block}
</#if> </#if>
} }
/**
* 选中数据
*
* @type {*}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public selection: any = {};
/** /**
* ${ctrl.name}的选中数据事件 * ${ctrl.name}的选中数据事件
...@@ -309,14 +247,9 @@ ...@@ -309,14 +247,9 @@
} }
</#if> </#if>
</#if> </#if>
if(this.navigateContext && Object.keys(this.navigateContext).length >0){ const {context, param} = this.$viewTool.formatNavigateParam( this.navigateContext, this.navigateParams, tempContext, tempViewParam, arg );
let _context:any = this.$util.computedNavData(arg,tempContext,tempViewParam,this.navigateContext); Object.assign(tempContext,context);
Object.assign(tempContext,_context); Object.assign(tempViewParam,param);
}
if(this.navigateParams && Object.keys(this.navigateParams).length >0){
let _params:any = this.$util.computedNavData(arg,tempContext,tempViewParam,this.navigateParams);
Object.assign(tempViewParam,_params);
}
this.selection = {}; this.selection = {};
Object.assign(this.selection, { view: { viewname: this.navViewName },context:tempContext,viewparam:tempViewParam}); Object.assign(this.selection, { view: { viewname: this.navViewName },context:tempContext,viewparam:tempViewParam});
this.$forceUpdate(); this.$forceUpdate();
......
<#ibizinclude> <#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl ../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude> </#ibizinclude>
\ No newline at end of file .listexpbar-container{
display: flex;
height: calc(100vh);
flex-direction: row;
justify-content: space-between;
.listexpbar_list{
width: 20%;
height: 100%;
overflow:scroll;
overflow-x: hidden;
}
.viewcontainer2{
width: 80%;
height: 100%;
margin-left: auto;
overflow:scroll;
overflow-x: hidden;
}
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册