提交 25723957 编写于 作者: WodahsOrez's avatar WodahsOrez

lxm--选择视图不显示标题

上级 fd87151a
......@@ -113,11 +113,11 @@ export class AppLayout extends Vue {
* @memberof AppLayout
*/
public render(): any {
if (Object.is(this.layoutMode, 'VIEW') && Object.is(this.openMode, 'DEFAULT')) {
Object.assign(this.className, { 'crm-app-view': true, 'no-caption-bar': (!this.isShowCaptionBar && !this.isShowToolbar) });
if (Object.is(this.layoutMode, 'VIEW')) {
Object.assign(this.className, { 'crm-app-view': true, 'no-caption-bar': ((this.openMode === 'MODAL' || !this.isShowCaptionBar) && !this.isShowToolbar) });
return <div class={this.className}>
{(!this.isShowCaptionBar && !this.isShowToolbar) ? null : <div class="crm-app-view-header-wrapper">
{this.isShowCaptionBar ? <div class="crm-app-view-header-left-wrapper">
{((this.openMode === 'MODAL' || !this.isShowCaptionBar) && !this.isShowToolbar) ? null : <div class="crm-app-view-header-wrapper">
{( this.openMode !== 'MODAL' && this.isShowCaptionBar) ? <div class="crm-app-view-header-left-wrapper">
{this.$slots.headerLeft}
</div> : null}
{this.isShowToolbar ? <div class="crm-app-view-header-right-wrapper">
......
......@@ -8,6 +8,7 @@
<component
:is="viewname"
class="viewcontainer2"
openMode='MODAL'
:viewDefaultUsage="false"
:viewdata="JSON.stringify(viewdata)"
:viewparam="JSON.stringify(viewparams)"
......
......@@ -14,6 +14,7 @@
<component
:is="viewname"
class="viewcontainer2"
openMode='MODAL'
:viewDefaultUsage="false"
:viewdata="JSON.stringify(viewdata)"
:viewparam="JSON.stringify(viewparams)"
......
......@@ -175,6 +175,7 @@ export class AppPopover {
viewcontainer2: true,
},
props: {
openMode: 'MODAL',
viewdata: JSON.stringify(viewdata),
viewDefaultUsage: false,
viewparam:JSON.stringify(data)
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册