diff --git a/src/components/page/Dashboard_.vue b/src/components/page/Dashboard_.vue
index 6f2beda..1812418 100644
--- a/src/components/page/Dashboard_.vue
+++ b/src/components/page/Dashboard_.vue
@@ -28,6 +28,9 @@
× {{starList_mark}}
+
+

+
Profile settings
diff --git a/src/components/page/superJournalsManagement.vue b/src/components/page/superJournalsManagement.vue
index b1b611d..5ce6614 100644
--- a/src/components/page/superJournalsManagement.vue
+++ b/src/components/page/superJournalsManagement.vue
@@ -28,9 +28,9 @@
-
+
- {{this.lastYear}}年直投 / 当月转投
+ 当月直投 / 当月转投
{{scope.row.Z}}
@@ -38,6 +38,28 @@
{{scope.row.ZT}}
+
+
+ {{this.dangYear}}年直投 / {{this.dangYear}}年转投
+
+
+ {{scope.row.DNZ}}
+ /
+ {{scope.row.DNZT}}
+
+
+
+
+ {{this.lastYear}}年直投 / {{this.lastYear}}年转投
+
+
+ {{scope.row.NZ}}
+ /
+ {{scope.row.NZT}}
+
+
+
+
@@ -68,6 +90,7 @@
},
tableData: [],
Total: 0,
+ dangYear: 0,
lastYear: 0,
}
},
@@ -78,7 +101,8 @@
// 获取文章列表数据
getdata() {
this.loading = true
- this.lastYear = new Date().getFullYear()-1
+ this.dangYear = new Date().getFullYear()
+ this.lastYear = new Date().getFullYear() - 1
this.$api
.post('api/Monitor/getJournalForms')
.then(res => {