提交 7f4fe5c7 编写于 作者: JunZai's avatar JunZai

update

上级 7092b754
...@@ -45,6 +45,27 @@ ganttElasticHeader, ...@@ -45,6 +45,27 @@ ganttElasticHeader,
*/ */
public ganttClass: string = "gantt"; 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: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月']
}
/** /**
* 配置参数 * 配置参数
* *
...@@ -78,7 +99,6 @@ ganttElasticHeader, ...@@ -78,7 +99,6 @@ ganttElasticHeader,
}, },
columns: [ columns: [
{ {
id: 1,
label: '名称', label: '名称',
value: 'label', value: 'label',
width: 150 width: 150
...@@ -98,17 +118,6 @@ ganttElasticHeader, ...@@ -98,17 +118,6 @@ ganttElasticHeader,
}; };
/**
* 监听语言变化
*
* @public
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
@Watch('$i18n.locale')
public onLocaleChange(newval: any, val: any) {
this.setButtonText();
}
/** /**
* 日程事件集合 * 日程事件集合
* *
...@@ -127,6 +136,30 @@ ganttElasticHeader, ...@@ -127,6 +136,30 @@ ganttElasticHeader,
*/ */
public ganttType: string = "${ctrl.getGanttStyle()}"; public ganttType: string = "${ctrl.getGanttStyle()}";
/**
* 监听语言变化
*
* @public
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
@Watch('$i18n.locale')
public onLocaleChange(newval: any, val: any) {
this.locale = newval;
}
/**
* 获取部件参数
*
* @returns {any}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public getOptions() {
if(Object.is(this.locale, 'zh-CN')) {
return { locale: this.localeZH, ...this.options };
}
return this.options;
}
/** /**
* 搜索获取日程事件 * 搜索获取日程事件
* *
...@@ -246,7 +279,7 @@ ganttElasticHeader, ...@@ -246,7 +279,7 @@ ganttElasticHeader,
* @memberof ${srfclassname('${ctrl.codeName}')} * @memberof ${srfclassname('${ctrl.codeName}')}
*/ */
public getDatas(): any[] { public getDatas(): any[] {
// return this.selections; return this.selections;
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册