diff --git a/web_src/js/components/ProAnalysis.vue b/web_src/js/components/ProAnalysis.vue
index 88ea67d94..d92eb6df9 100755
--- a/web_src/js/components/ProAnalysis.vue
+++ b/web_src/js/components/ProAnalysis.vue
@@ -148,6 +148,31 @@
prop="contributor"
label="贡献者数"
align="center">
+
+
+
+ {{scope.row.isMirror|changeType}}
+
+
+
+
+ {{scope.row.isFork|changeType}}
+
+
+
+
+ {{scope.row.createUnix|transformTimestamp}}
+
@@ -1140,6 +1165,17 @@
return " " +value.user+ ""
}
+ },
+ transformTimestamp(timestamp){
+ let a = new Date(timestamp*1000);
+ const date = new Date(a);
+ const Y = date.getFullYear() + '/';
+ const M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '/';
+ const D = (date.getDate() < 10 ? '0'+date.getDate() : date.getDate()) + ' ';
+ const h = (date.getHours() < 10 ? '0'+date.getHours() : date.getHours()) + ':';
+ const m = (date.getMinutes() <10 ? '0'+date.getMinutes() : date.getMinutes());
+ const dateString = Y + M + D + h + m ;//+ s;
+ return dateString;
},
},