|
@@ -43,6 +43,9 @@
|
|
|
<div v-if="activeComp == 'cost'">
|
|
<div v-if="activeComp == 'cost'">
|
|
|
<Cost ref="costRef" />
|
|
<Cost ref="costRef" />
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div v-if="activeComp == 'statisReport'">
|
|
|
|
|
+ <statisReport ref="statisReportRef" />
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</el-card>
|
|
</el-card>
|
|
|
</div>
|
|
</div>
|
|
@@ -57,6 +60,7 @@
|
|
|
import knowledge from './knowledge';
|
|
import knowledge from './knowledge';
|
|
|
import recycle from './recycle';
|
|
import recycle from './recycle';
|
|
|
import Cost from './cost';
|
|
import Cost from './cost';
|
|
|
|
|
+ import statisReport from './statisReport'
|
|
|
export default {
|
|
export default {
|
|
|
components: {
|
|
components: {
|
|
|
demandList,
|
|
demandList,
|
|
@@ -66,7 +70,8 @@
|
|
|
accessory,
|
|
accessory,
|
|
|
knowledge,
|
|
knowledge,
|
|
|
recycle,
|
|
recycle,
|
|
|
- Cost
|
|
|
|
|
|
|
+ Cost,
|
|
|
|
|
+ statisReport
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -80,7 +85,7 @@
|
|
|
{ key: 'accessory', name: '配件申请记录' },
|
|
{ key: 'accessory', name: '配件申请记录' },
|
|
|
{ key: 'recycle', name: '配件回收记录' },
|
|
{ key: 'recycle', name: '配件回收记录' },
|
|
|
{ key: 'knowledge', name: '故障知识库' },
|
|
{ key: 'knowledge', name: '故障知识库' },
|
|
|
- { key: '2', name: '统计报表' }
|
|
|
|
|
|
|
+ { key: 'statisReport', name: '统计报表' }
|
|
|
]
|
|
]
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|