|
@@ -459,6 +459,9 @@ export default {
|
|
if (day < 10) day = "0" + day;
|
|
if (day < 10) day = "0" + day;
|
|
if (minutes < 10) minutes = "0" + minutes;
|
|
if (minutes < 10) minutes = "0" + minutes;
|
|
this.time = year + "-" + month + "-" + day + " " + hour + ' : ' + minutes;
|
|
this.time = year + "-" + month + "-" + day + " " + hour + ' : ' + minutes;
|
|
|
|
+ this.$nextTick(() => { //在数据加载完,重新渲染表格
|
|
|
|
+ this.$refs['projectEvolveTable'].doLayout();
|
|
|
|
+ })
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|