Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
2cacfb76
提交
2cacfb76
编写于
6月 09, 2020
作者:
JunZai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
8e231710
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
10 行增加
和
123 行删除
+10
-123
CONTROL-BASE.vue.ftl
@CONTROL/树表格(增强)/CONTROL-BASE.vue.ftl
+10
-123
未找到文件。
@CONTROL/树表格(增强)/CONTROL-BASE.vue.ftl
浏览文件 @
2cacfb76
...
...
@@ -2,16 +2,8 @@
../../@MACRO/LANG_FUN.ftl
</#ibizinclude>
<template>
<gantt-elastic :class="ganttClass" :tasks="tasks" :options="getOptions(this.locale)" :dynamic-style="dynamicStyle" @taskList-item-dblclick="taskClick" @task-item-expand="taskItemExpand">
</gantt-elastic>
</template>
<#assign import_block>
import GanttElastic from "ibiz-gantt-elastic/src/GanttElastic.vue";
</#assign>
<#assign component_block>
GanttElastic,
</#assign>
</template>
<#ibizinclude>
../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl
...
...
@@ -40,32 +32,7 @@ GanttElastic,
* @type {any[]}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public ganttClass: string = "gantt";
/**
* 语言
*
* @public
* @type {string}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public locale: string = 'zh-CN';
/**
* 语言资源
*
* @public
* @type {any[]}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public localeZH: any = {
weekdays: ['星期一','星期二','星期三','星期四','星期五','星期六','星期日'],
months: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
Now: "现在",
"X-Scale": "时间颗粒度",
"Display task list": "显示列表",
"Before/After": "数据范围"
}
public controlClass: string = "${ctrl.name}";
/**
* 配置参数
...
...
@@ -75,34 +42,7 @@ GanttElastic,
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public options: any = {
isflex: true,
maxRows: 1000,
dataType: 'treegrid',
title: {
label: ""
},
header: {
yScole: false,
taskListWidth: false,
},
calendar: {
hour: {
display: false
}
},
chart: {
progress: {
bar: false
},
expander: {
display: true
},
},
taskList: {
expander: {
straight: false
},
labelField: 'text',
columns: [
<#if ctrl.getPSDETreeColumns()??>
<#list ctrl.getPSDETreeColumns() as column>
...
...
@@ -137,33 +77,13 @@ GanttElastic,
};
/**
*
样式
*
数据集合
*
* @public
* @type {any[]}
* @memberof ${srfclassname('${ctrl.codeName}')}
* @memberof ${srfclassname('${ctrl.codeName}')}
items
*/
public dynamicStyle: any = {};
/**
* 日程事件集合
*
* @public
* @type {any[]}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public tasks: any[] = [];
/**
* 监听语言变化
*
* @public
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
@Watch('$i18n.locale')
public onLocaleChange(newval: any, val: any) {
this.locale = newval;
}
public items: any[] = [];
/**
* 获取列属性值
...
...
@@ -209,19 +129,6 @@ GanttElastic,
return codelist.emptytext;
}
/**
* 获取部件参数
*
* @returns {any}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public getOptions() {
if(Object.is(this.locale, 'zh-CN')) {
return { locale: this.localeZH, ...this.options };
}
return this.options;
}
/**
* 搜索获取日程事件
*
...
...
@@ -251,13 +158,13 @@ GanttElastic,
this.$Notice.error({ title: "错误", desc: response.info });
return;
}
this.
tasks = [...this.task
s, ...response.data];
this.
items = [...this.item
s, ...response.data];
response.data.forEach((item: any) => {
if(!item.collapsed) {
this.load(item);
}
})
this.$emit("load", this.
task
s);
this.$emit("load", this.
item
s);
}).catch((response: any) => {
if (response && response.status === 401) {
return;
...
...
@@ -285,16 +192,11 @@ GanttElastic,
/**
* 节点展开
*
* @param {*}
task
当前节点
* @param {*}
item
当前节点
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public taskItemExpand(task: any) {
if(!task.collapsed) {
let index: number = this.tasks.findIndex((item: any) => Object.is(task.id, item.parentId));
if(index < 0) {
this.load(task);
}
}
public itemExpand(item: any) {
i
}
/**
...
...
@@ -343,24 +245,9 @@ GanttElastic,
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public created() {
this.locale = this.$i18n.locale;
this.load();
}
/**
* 点击事件
*
* @returns
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public taskClick({event, data}: {event: any, data: any}) {
const _this: any = this;
let key: string = data.id.split(';')[0];
if(_this[key + '_opendata'] instanceof Function) {
_this[key + '_opendata']([data]);
}
}
<#ibizinclude>
../@MACRO/CONTROL/CONTROL_BOTTOM-BASE.vue.ftl
</#ibizinclude>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录