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

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

上级 36ab0eae
......@@ -15,14 +15,14 @@
<template slot="empty">
{{$t('entities.ibizbook.treetable_treegridex.nodata')}}
</template>
<el-table-column show-overflow-tooltip prop="author" label="作者" :width="50" :align="''">
<el-table-column show-overflow-tooltip prop="subtext" label="图书描述" :width="50" :align="''">
<template v-slot="{ row }">
<span>{{ getColumnValue(row, 'author') }}</span>
<span>{{ getColumnValue(row, 'subtext') }}</span>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="subtext" label="图书描述" :width="50" :align="''">
<el-table-column show-overflow-tooltip prop="author" label="作者" :width="50" :align="''">
<template v-slot="{ row }">
<span>{{ getColumnValue(row, 'subtext') }}</span>
<span>{{ getColumnValue(row, 'author') }}</span>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip prop="ibizbookname" label="图书名称" :width="50" :align="''">
......
......@@ -63,7 +63,7 @@ export default class TreeExpService extends ControlService {
public TREENODE_SEPARATOR: string = ';';
/**
* 订单实体节点分隔符号
* 订单名称节点分隔符号
*
* @public
* @type {string}
......@@ -81,7 +81,7 @@ export default class TreeExpService extends ControlService {
public TREENODE_ROOT: string = 'ROOT';
/**
* 一级节点节点分隔符号
* 订单实体数据节点分隔符号
*
* @public
* @type {string}
......@@ -179,7 +179,7 @@ export default class TreeExpService extends ControlService {
}
/**
* 填充 树视图节点[订单实体]
* 填充 树视图节点[订单名称]
*
* @public
* @param {any{}} context
......@@ -242,7 +242,7 @@ export default class TreeExpService extends ControlService {
}
/**
* 填充 树视图节点[订单实体]子节点
* 填充 树视图节点[订单名称]子节点
*
* @public
* @param {any{}} context
......@@ -312,13 +312,13 @@ export default class TreeExpService extends ControlService {
@Errorlog
public async fillRootNodeChilds(context:any={}, filter: any, list: any[]): Promise<any> {
if (filter.srfnodefilter && !Object.is(filter.srfnodefilter,"")) {
// 填充一级节点
// 填充订单实体数据
let Top1RsNavContext:any = {};
let Top1RsNavParams:any = {};
let Top1RsParams:any = {};
await this.fillTop1Nodes(context, filter, list ,Top1RsNavContext,Top1RsNavParams,Top1RsParams);
} else {
// 填充一级节点
// 填充订单实体数据
let Top1RsNavContext:any = {};
let Top1RsNavParams:any = {};
let Top1RsParams:any = {};
......@@ -327,7 +327,7 @@ export default class TreeExpService extends ControlService {
}
/**
* 填充 树视图节点[一级节点]
* 填充 树视图节点[订单实体数据]
*
* @public
* @param {any{}} context
......@@ -369,7 +369,7 @@ export default class TreeExpService extends ControlService {
}
/**
* 填充 树视图节点[一级节点]子节点
* 填充 树视图节点[订单实体数据]子节点
*
* @public
* @param {any{}} context
......@@ -381,13 +381,13 @@ export default class TreeExpService extends ControlService {
@Errorlog
public async fillTop1NodeChilds(context:any={}, filter: any, list: any[]): Promise<any> {
if (filter.srfnodefilter && !Object.is(filter.srfnodefilter,"")) {
// 填充订单实体
// 填充订单名称
let OrderentityRsNavContext:any = {};
let OrderentityRsNavParams:any = {};
let OrderentityRsParams:any = {};
await this.fillOrderentityNodes(context, filter, list ,OrderentityRsNavContext,OrderentityRsNavParams,OrderentityRsParams);
} else {
// 填充订单实体
// 填充订单名称
let OrderentityRsNavContext:any = {};
let OrderentityRsNavParams:any = {};
let OrderentityRsParams:any = {};
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册