|
@@ -78,6 +78,7 @@ export class TextbookComponent implements OnInit {
|
|
|
restore: false, //恢复教材
|
|
|
eduReivew: false, //在线预览
|
|
|
mark: false, //打分
|
|
|
+ exportExcel:false, //导出表格
|
|
|
},
|
|
|
};
|
|
|
@Input('scoreMap') scoreMap:any = {} //评分状态
|
|
@@ -252,7 +253,7 @@ export class TextbookComponent implements OnInit {
|
|
|
ngOnInit() {
|
|
|
this.activeRoute.paramMap.subscribe(async (params) => {
|
|
|
// this.eduProcessId = params.get('id');
|
|
|
- let arr = ['review', 'verify', 'eduReivew', 'mark'];
|
|
|
+ let arr = ['review', 'verify', 'eduReivew', 'mark', 'exportExcel'];
|
|
|
Object.keys(this.filterObj?.btns).forEach((key) => {
|
|
|
if (this.filterObj[key] && !arr.includes(key)) this.calc += 70;
|
|
|
});
|