diff --git a/src/views/keyprojects/aiwarning/components/list.vue b/src/views/keyprojects/aiwarning/components/list.vue index 8df3df1..76f0cdb 100644 --- a/src/views/keyprojects/aiwarning/components/list.vue +++ b/src/views/keyprojects/aiwarning/components/list.vue @@ -257,7 +257,8 @@ export default { requestFN( '/outsourced/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page, { - KEYWORDS: this.KEYWORDS + KEYWORDS: this.KEYWORDS, + CORPINFO_ID: this.$parent.CORPINFO_ID } ).then((data) => { this.listLoading = false diff --git a/src/views/keyprojects/aiwarning/index.vue b/src/views/keyprojects/aiwarning/index.vue index f6de75c..ce2729d 100644 --- a/src/views/keyprojects/aiwarning/index.vue +++ b/src/views/keyprojects/aiwarning/index.vue @@ -1,6 +1,10 @@ @@ -8,16 +12,18 @@ import List from './components/list' import Info from './components/info' import recordList from './components/record-list' +import OutSourced from '@/components/OutSourced/index' export default { components: { List: List, + OutSourced: OutSourced, Info: Info, recordList: recordList }, data() { return { - activeName: 'List', + activeName: 'OutSourced', OUTSOURCED_ID: '', AIWARNING_ID: '' }