|
@@ -86,6 +86,9 @@
|
|
|
</section>
|
|
|
</el-container>
|
|
|
<el-container v-if="activeName === '3'">
|
|
|
+ <section class="main-section">
|
|
|
+ <statistics-section :search-form="searchForm" />
|
|
|
+ </section>
|
|
|
<section class="main-section">
|
|
|
<needs-list :search-form="searchForm" type="team" />
|
|
|
</section>
|
|
@@ -142,6 +145,7 @@ import projectList from '@/views/workbench/team/components/projectList'
|
|
|
import needsList from '@/views/workbench/team/components/needsList'
|
|
|
import taskList from '@/views/workbench/team/components/taskList'
|
|
|
import bugTableList from '@/views/workbench/bugTableList.vue'
|
|
|
+import statisticsSection from '../components/statisticsSection'
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
@@ -153,7 +157,8 @@ export default {
|
|
|
bugTableList,
|
|
|
projectList,
|
|
|
needsList,
|
|
|
- taskList
|
|
|
+ taskList,
|
|
|
+ statisticsSection
|
|
|
},
|
|
|
data() {
|
|
|
return {
|