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

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

上级 63be3d2c
......@@ -1665,6 +1665,60 @@ export default {
tip: "Print",
},
},
treeexpviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
deuiaction2: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem6: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
deuiaction1: {
caption: "导入",
tip: "导入",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem11: {
caption: "Print",
tip: "Print",
},
tbitem12: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "Export Data Model",
tip: "导出数据模型",
},
},
odsp_d20_wfgridviewtoolbar_toolbar: {
tbitem26: {
caption: "New",
......
......@@ -1664,6 +1664,60 @@ export default {
tip: "打印",
},
},
treeexpviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
deuiaction2: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem6: {
caption: "拷贝",
tip: "拷贝",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
deuiaction1: {
caption: "导入",
tip: "导入",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem11: {
caption: "打印",
tip: "打印",
},
tbitem12: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "导出数据模型",
tip: "导出数据模型",
},
},
odsp_d20_wfgridviewtoolbar_toolbar: {
tbitem26: {
caption: "新建",
......
......@@ -7,5 +7,20 @@
.ibizorder-tree-exp-view{
position: relative;
}
.toolbar-container {
button {
margin: 6px 0px 4px 4px;
.caption {
margin-left: 4px;
}
}
.seperator {
color: #dcdee2;
margin: 0 0px 0 4px;
}
}
// this is less
.deepskyblueToolBar {color:white !important;background-color:#108cee !important;}
......@@ -15,6 +15,11 @@
<template slot="empty">
{{$t('entities.ibizbook.treetable_treegridex.nodata')}}
</template>
<el-table-column show-overflow-tooltip prop="author" label="作者" :width="50" :align="''">
<template v-slot="{ row }">
<span>{{ getColumnValue(row, 'author') }}</span>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="subtext" label="图书描述" :width="50" :align="''">
<template v-slot="{ row }">
<span>{{ getColumnValue(row, 'subtext') }}</span>
......@@ -25,11 +30,6 @@
<span>{{ getColumnValue(row, 'ibizbookname') }}</span>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="author" label="作者" :width="50" :align="''">
<template v-slot="{ row }">
<span>{{ getColumnValue(row, 'author') }}</span>
</template>
</el-table-column>
</el-table>
</template>
......
......@@ -471,8 +471,8 @@ export default class TreeExpService extends ControlService {
strNodeId += item.value;
Object.assign(item, { id: strNodeId });
Object.assign(item, { expanded: filter.isautoexpand });
Object.assign(item, {navigateContext: {ORDERTYPE:"%ordertype%"} });
Object.assign(item, {navigateParams: {ordertype:"%ordertype%"} });
Object.assign(item, {navigateContext: {ORDERTYPE:"%nodeid%"} });
Object.assign(item, {navigateParams: {ordertype:"%nodeid%"} });
Object.assign(item, { nodeid: item.srfkey });
Object.assign(item, { nodeid2: item.pvalue });
Object.assign(item, { nodeType: 'STATIC' });
......@@ -491,8 +491,8 @@ export default class TreeExpService extends ControlService {
Object.assign(treeNode, { id: strNodeId });
Object.assign(treeNode, { expanded: filter.isautoexpand });
Object.assign(treeNode, { leaf: true });
Object.assign(treeNode, {navigateContext: {ORDERTYPE:"%ordertype%"} });
Object.assign(treeNode, {navigateParams: {ordertype:"%ordertype%"} });
Object.assign(treeNode, {navigateContext: {ORDERTYPE:"%nodeid%"} });
Object.assign(treeNode, {navigateParams: {ordertype:"%nodeid%"} });
if(item.children && item.children.length >0){
Object.assign(treeNode, { children: item.children });
}
......@@ -776,8 +776,8 @@ export default class TreeExpService extends ControlService {
strNodeId += item.value;
Object.assign(item, { id: strNodeId });
Object.assign(item, { expanded: filter.isautoexpand });
Object.assign(item, {navigateContext: {ORDERTYPE:"%ordertype%"} });
Object.assign(item, {navigateParams: {ordertype:"%ordertype%"} });
Object.assign(item, {navigateContext: {ORDERTYPE:"%nodeid%"} });
Object.assign(item, {navigateParams: {ordertype:"%nodeid%"} });
Object.assign(item, { nodeid: item.srfkey });
Object.assign(item, { nodeid2: item.pvalue });
Object.assign(item, { nodeType: "CODELIST",appEntityName:"ibizordertype" });
......@@ -795,8 +795,8 @@ export default class TreeExpService extends ControlService {
Object.assign(treeNode, { id: strNodeId });
Object.assign(treeNode, { expanded: filter.isautoexpand });
Object.assign(treeNode, { leaf: true });
Object.assign(treeNode, {navigateContext: {ORDERTYPE:"%ordertype%"} });
Object.assign(treeNode, {navigateParams: {ordertype:"%ordertype%"} });
Object.assign(treeNode, {navigateContext: {ORDERTYPE:"%nodeid%"} });
Object.assign(treeNode, {navigateParams: {ordertype:"%nodeid%"} });
if(item.children && item.children.length >0){
Object.assign(treeNode, { children: item.children });
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册