|
|
@ -3,7 +3,7 @@ import { NzModalService } from 'ng-zorro-antd/modal'; |
|
|
|
import { Observable, fromEvent } from 'rxjs'; |
|
|
|
import { Observable, fromEvent } from 'rxjs'; |
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
import { debounceTime } from 'rxjs/operators'; |
|
|
|
import Viewer from 'viewerjs'; |
|
|
|
import Viewer from 'viewerjs'; |
|
|
|
import { EditUpdateCategoryComponent } from './edit-update-category/edit-update-category.component'; |
|
|
|
import { EditUpdateCategoryComponent, handleType, handleTypeList } from './edit-update-category/edit-update-category.component'; |
|
|
|
import * as moment from 'moment'; |
|
|
|
import * as moment from 'moment'; |
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
@ -40,6 +40,23 @@ export class UpdateCategoryComponent implements OnInit { |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取办理类型
|
|
|
|
|
|
|
|
getHandleTypes(handleTypes: any[]):string { |
|
|
|
|
|
|
|
if (!handleTypes || !handleTypes.length) { |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
let name |
|
|
|
|
|
|
|
let handleTypeList = JSON.parse(JSON.stringify(handleTypes)); |
|
|
|
|
|
|
|
let list: handleTypeList[] = new handleType().list; |
|
|
|
|
|
|
|
handleTypeList.forEach(item=>{ |
|
|
|
|
|
|
|
list.find(element=>{ |
|
|
|
|
|
|
|
item == element.value? item = element.name : null |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
name = handleTypeList.join(',') |
|
|
|
|
|
|
|
return name |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//获取文件格式
|
|
|
|
//获取文件格式
|
|
|
|
getFileType(name: string):string { |
|
|
|
getFileType(name: string):string { |
|
|
|
let suffix |
|
|
|
let suffix |
|
|
@ -121,10 +138,6 @@ export class UpdateCategoryComponent implements OnInit { |
|
|
|
body.validityStartTime = instance.isNoLongTermTime[0] || new Date() |
|
|
|
body.validityStartTime = instance.isNoLongTermTime[0] || new Date() |
|
|
|
body.validityEndTime = instance.isNoLongTermTime[1] || new Date() |
|
|
|
body.validityEndTime = instance.isNoLongTermTime[1] || new Date() |
|
|
|
} |
|
|
|
} |
|
|
|
// 办理类型
|
|
|
|
|
|
|
|
if (instance.typeList.length) { |
|
|
|
|
|
|
|
body.handleType = instance.typeList.join("/") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.http.post('/api/services/app/StationValidityLicense/Create', body).subscribe(data => { |
|
|
|
this.http.post('/api/services/app/StationValidityLicense/Create', body).subscribe(data => { |
|
|
|
resolve(data); |
|
|
|
resolve(data); |
|
|
|
this.getStationList(); |
|
|
|
this.getStationList(); |
|
|
@ -169,6 +182,9 @@ export class UpdateCategoryComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
|
|
//提交审核
|
|
|
|
//提交审核
|
|
|
|
submitReview(item){ |
|
|
|
submitReview(item){ |
|
|
|
|
|
|
|
if (!item.id) { |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
let params = { id: item.id } |
|
|
|
let params = { id: item.id } |
|
|
|
this.http.post('/api/services/app/StationValidityLicense/Commit', {},{params}).subscribe(data => { |
|
|
|
this.http.post('/api/services/app/StationValidityLicense/Commit', {},{params}).subscribe(data => { |
|
|
|
this.message.create('success', '提交审核成功!'); |
|
|
|
this.message.create('success', '提交审核成功!'); |
|
|
|