index.js 810 B

12345678910111213141516171819202122232425262728293031
  1. import flowService from '@/webflow/flow-service'
  2. import routerService from '@/common/services/router-service'
  3. // 整改反馈列表
  4. routerService.routeInFrame('spic-rectfeedback-list', {
  5. component: './spic-rectfeedback-list.vue',
  6. })
  7. // 审计问题反馈
  8. flowService.addFlowForm(
  9. 'vue:audit/spicrectfeedback/spicRectFeedback',
  10. './spic-questionfeedback-form.vue'
  11. )
  12. // 审计风险反馈
  13. flowService.addFlowForm(
  14. 'vue:audit/spicrectfeedback/spicRiskRectFeedback',
  15. './spic-riskfeedback-form.vue'
  16. )
  17. // 审计建议反馈
  18. flowService.addFlowForm(
  19. 'vue:audit/spicrectfeedback/spicSuggestRectFeedback',
  20. './spic-suggestfeedback-form.vue'
  21. )
  22. // 整改延期申请流程页面
  23. flowService.addFlowForm(
  24. 'vue:audit/spicrectifyquestiondelay/spicRectifyQuestionDelay',
  25. './spic-rectifydelay-form.vue'
  26. )