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

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

上级 2c86268c
......@@ -791,6 +791,14 @@
"viewname": "IBIZSample0001Usr3GridView",
"viewtag": "8d1205a914564cbd528cadc3963c2905"
},
"ibizorderlistexpview": {
"title": "订单列表导航视图",
"caption": "订单",
"viewtype": "DELISTEXPVIEW",
"viewmodule": "Sample",
"viewname": "IBIZOrderListExpView",
"viewtag": "9127e2414d8e646fd2b473695d17c485"
},
"ibizsample0017f20editview": {
"title": "订单编辑视图",
"caption": "订单",
......
......@@ -125,6 +125,10 @@ export default {
caption: "编辑表单新建默认值",
title: "编辑表单新建默认值",
},
listexpview: {
caption: "订单",
title: "订单列表导航视图",
},
piechartview: {
caption: "订单",
title: "订单图表视图",
......@@ -717,6 +721,11 @@ export default {
uiactions: {
},
},
listexpbar_list_list: {
nodata:"",
uiactions: {
},
},
usr_list: {
nodata:"",
uiactions: {
......
......@@ -124,6 +124,10 @@ export default {
caption: "编辑表单新建默认值",
title: "编辑表单新建默认值",
},
listexpview: {
caption: "订单",
title: "订单列表导航视图",
},
piechartview: {
caption: "订单",
title: "订单图表视图",
......@@ -716,6 +720,11 @@ export default {
uiactions: {
},
},
listexpbar_list_list: {
nodata:"",
uiactions: {
},
},
usr_list: {
nodata:"",
uiactions: {
......
......@@ -799,6 +799,14 @@ mock.onGet('./assets/json/view-config.json').reply((config: any) => {
"viewname": "IBIZSample0001Usr3GridView",
"viewtag": "8d1205a914564cbd528cadc3963c2905"
},
"ibizorderlistexpview": {
"title": "订单列表导航视图",
"caption": "订单",
"viewtype": "DELISTEXPVIEW",
"viewmodule": "Sample",
"viewname": "IBIZOrderListExpView",
"viewtag": "9127e2414d8e646fd2b473695d17c485"
},
"ibizsample0017f20editview": {
"title": "订单编辑视图",
"caption": "订单",
......
......@@ -12,6 +12,9 @@
>.ivu-card-head{
display: none;
}
>.ivu-card-body {
height: 100%;
}
}
.portlet-card {
background-color: #f0f2f5;
......
......@@ -121,6 +121,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
this.allViewMap.set(':',{viewname:'barchartview',srfappde:'ibizorders',component:'ibizorder-bar-chart-view'});
this.allViewMap.set(':',{viewname:'dashboardview',srfappde:'ibizorders',component:'ibizorder-dashboard-view'});
this.allViewMap.set(':',{viewname:'sf1editview',srfappde:'ibizorders',component:'ibizorder-sf1-edit-view'});
this.allViewMap.set(':',{viewname:'listexpview',srfappde:'ibizorders',component:'ibizorder-list-exp-view'});
this.allViewMap.set(':',{viewname:'piechartview',srfappde:'ibizorders',component:'ibizorder-pie-chart-view'});
this.allViewMap.set('WFMDATAVIEW:ODSP:W:10',{viewname:'odsp_w10_wfgridview',srfappde:'ibizorders',component:'ibizorder-odsp-w10-wfgrid-view'});
this.allViewMap.set(':',{viewname:'sf3editview',srfappde:'ibizorders',component:'ibizorder-sf3-edit-view'});
......
......@@ -258,7 +258,8 @@ export class Util {
*/
public static srfFilePath2(name: string): string {
if (!name || (name && Object.is(name, ''))) {
throw new Error('名称异常');
console.error("名称异常")
return '';
}
name = name.replace(/[_]/g, '-');
let state: number = 0;
......
......@@ -37,7 +37,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
......@@ -37,7 +37,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
......@@ -34,7 +34,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
......@@ -34,7 +34,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
......@@ -34,7 +34,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
......@@ -34,7 +34,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
<template>
<div class='portlet portal-components-web ' :style="{}">
<div class="portlet-without-title">
<iframe src="https://cn.vuejs.org/" style="height: 400px;width: 100%;border-width: 1px;"></iframe>
<iframe src="https://cn.vuejs.org/" style="height: 400px;width: 100%;border-width: 0px;"></iframe>
</div>
</div>
</template>
......
......@@ -34,7 +34,7 @@
}
> .portlet-with-title{
width:100%;
height:calc(100% - 52px);
height:calc(100% - 58px);
overflow:auto;
padding:0px 12px;
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册