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

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

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