Browse Source

封装获取办理类型

dev
陈鹏飞 3 years ago
parent
commit
86ac26c805
  1. 7
      src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts
  2. 7
      src/app/pages/license/update-category/details-update-category/details-update-category.component.ts
  3. 7
      src/app/pages/license/update-category/update-category.component.ts

7
src/app/pages/audit/audit-ing/audit-dispose/audit-dispose.component.ts

@ -39,16 +39,15 @@ export class AuditDisposeComponent implements OnInit {
if (!handleTypes || !handleTypes.length) {
return
}
let name
let names: string[] = []
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
item == element.value? names.push(element.name) : null
})
})
name = handleTypeList.join(',')
return name
return names.join(',')
}
//获取文件格式

7
src/app/pages/license/update-category/details-update-category/details-update-category.component.ts

@ -54,16 +54,15 @@ export class DetailsUpdateCategoryComponent implements OnInit {
if (!handleTypes || !handleTypes.length) {
return
}
let name
let names: string[] = []
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
item == element.value? names.push(element.name) : null
})
})
name = handleTypeList.join(',')
return name
return names.join(',')
}
//获取文件格式

7
src/app/pages/license/update-category/update-category.component.ts

@ -45,16 +45,15 @@ export class UpdateCategoryComponent implements OnInit {
if (!handleTypes || !handleTypes.length) {
return
}
let name
let names: string[] = []
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
item == element.value? names.push(element.name) : null
})
})
name = handleTypeList.join(',')
return name
return names.join(',')
}
//获取文件格式

Loading…
Cancel
Save