|
@@ -6,11 +6,11 @@ import { CommonCompModule } from '../../services/common.modules';
|
|
|
import { MatIconRegistry, MatIconModule } from '@angular/material/icon';
|
|
|
import { textbookServer } from '../../services/textbook';
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
-
|
|
|
+import { NzModalModule, NzModalService } from 'ng-zorro-antd/modal';
|
|
|
@Component({
|
|
|
selector: 'app-comp-manage',
|
|
|
standalone: true,
|
|
|
- imports: [CompNavComponent, RouterOutlet, CommonCompModule, MatIconModule],
|
|
|
+ imports: [CompNavComponent, RouterOutlet, CommonCompModule, MatIconModule,NzModalModule],
|
|
|
templateUrl: './comp-manage.component.html',
|
|
|
styleUrls: ['./comp-manage.component.scss'],
|
|
|
})
|
|
@@ -167,7 +167,8 @@ export class CompManageComponent implements OnInit {
|
|
|
// public textbook: textbookServer,
|
|
|
iconRegistry: MatIconRegistry,
|
|
|
sanitizer: DomSanitizer,
|
|
|
- private http: HttpClient
|
|
|
+ private http: HttpClient,
|
|
|
+ private modal: NzModalService
|
|
|
) {
|
|
|
iconRegistry.addSvgIconLiteral(
|
|
|
'menu',
|
|
@@ -190,6 +191,14 @@ export class CompManageComponent implements OnInit {
|
|
|
} else {
|
|
|
this.active = '1';
|
|
|
}
|
|
|
+ if(!localStorage.getItem('review')){
|
|
|
+ this.modal.info({
|
|
|
+ nzTitle: '提示',
|
|
|
+ nzContent: `系统申报材料中涉及书名、书号、载体形式、出版单位、政审等附件材料填报错误的,请于10月15日14:00前将变更情况发送至<a href="mailto:gaojs_jxtj@moe.edu.cn">gaojs_jxtj@moe.edu.cn</a>,主题为:十四五教材+申报编号+推荐单位+第一主编姓名+教材名称+书号+问题类型,逾期不予受理。
|
|
|
+ 系统将于10月15日晚统一对填报错误的“书号、载体形式、出版单位”信息进行修改,于10月20日系统截止申报后统一对填报错误的“书名、政审等附件材料”进行修改。`,
|
|
|
+ nzOnOk: () => localStorage.setItem('review','true')
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
toggleCollapsed(): void {
|
|
|
this.isCollapsed = !this.isCollapsed;
|