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

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

上级 d4425004
......@@ -58,6 +58,7 @@ export default {
columns: {
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
},
nodata:"",
......
......@@ -57,6 +57,7 @@ export default {
columns: {
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
},
nodata:"",
......
......@@ -47,6 +47,18 @@
</template>
</el-table-column>
</template>
<template v-if="getColumnState('documentaddress')">
<el-table-column show-overflow-tooltip :prop="'documentaddress'" :label="$t('entities.ibizappeditor.main_grid.columns.documentaddress')" :width="100" :align="'left'" :sortable="'custom'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('entities.ibizappeditor.main_grid.columns.documentaddress')}}
</span>
</template>
<template v-slot="{row,column,$index}">
<span>{{row.documentaddress}}</span>
</template>
</el-table-column>
</template>
<template v-if="getColumnState('rditordescription')">
<el-table-column show-overflow-tooltip :prop="'rditordescription'" :label="$t('entities.ibizappeditor.main_grid.columns.rditordescription')" :min-width="100" :align="'left'" :sortable="'custom'">
<template v-slot:header="{column}">
......@@ -634,6 +646,15 @@ export default class MainBase extends Vue implements ControlInterface {
isEnableRowEdit: false,
enableCond: 3 ,
},
{
name: 'documentaddress',
label: '文档地址',
langtag: 'entities.ibizappeditor.main_grid.columns.documentaddress',
show: true,
unit: 'PX',
isEnableRowEdit: false,
enableCond: 3 ,
},
{
name: 'rditordescription',
label: '编辑器描述',
......@@ -1337,7 +1358,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @memberof MainBase
*/
public arraySpanMethod({row, column, rowIndex, columnIndex} : any) {
let allColumns:Array<any> = ['ibizappeditorname','ibizappeditortype','rditordescription'];
let allColumns:Array<any> = ['ibizappeditorname','ibizappeditortype','documentaddress','rditordescription'];
if(row && row.children) {
if(columnIndex == (this.isSingleSelect ? 0:1)) {
return [1, allColumns.length+1];
......@@ -1419,6 +1440,7 @@ export default class MainBase extends Vue implements ControlInterface {
group: group.label,
ibizappeditorname:'',
ibizappeditortype:'',
documentaddress:'',
rditordescription:'',
children: children
}
......@@ -1449,6 +1471,7 @@ export default class MainBase extends Vue implements ControlInterface {
group: this.$t('app.gridpage.other'),
ibizappeditorname:'',
ibizappeditortype:'',
documentaddress:'',
rditordescription:'',
children: child
}
......@@ -1512,6 +1535,7 @@ export default class MainBase extends Vue implements ControlInterface {
group: group,
ibizappeditorname:'',
ibizappeditortype:'',
documentaddress:'',
rditordescription:'',
children: children,
}
......
......@@ -41,6 +41,11 @@ export default class MainModel {
prop: 'rditordescription',
dataType: 'TEXT',
},
{
name: 'documentaddress',
prop: 'documentaddress',
dataType: 'TEXT',
},
{
name: 'srfmajortext',
prop: 'ibizappeditorname',
......
......@@ -32,7 +32,7 @@ Tip: If the failing expression is known to be legally refer to something that's
----
FTL stack trace ("~" means nesting-related):
- Failed at: ${editor.name} [in template "TEMPLCODE_en_US" at line 2, column 17]
- Failed at: @getNavigateContext editor [in template "TEMPLCODE_en_US" at line 8, column 18]
----
</i-col>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册