|
@@ -32,6 +32,7 @@ import ProjectFollow from './components/ProjectFollow.vue'
|
|
|
import EntFollow from './components/EntFollow.vue'
|
|
|
import DataReport from './components/DataReport.vue'
|
|
|
import AsideOthers from './components/AsideOthers.vue'
|
|
|
+import ClaimList from './components/ClaimList.vue'
|
|
|
const BusinessProfile = () => import('./components/BusinessProfile.vue')
|
|
|
const MyCustomer = () => import('./components/MyCustomer.vue')
|
|
|
const CustomerWatcher = () => import('./components/CustomerWatcher.vue')
|
|
@@ -51,12 +52,14 @@ export default {
|
|
|
ProjectFollow,
|
|
|
DataReport,
|
|
|
AsideOthers,
|
|
|
- EntFollow
|
|
|
+ EntFollow,
|
|
|
+ ClaimList
|
|
|
},
|
|
|
computed: {
|
|
|
componentsPowerMap () {
|
|
|
- const { myCustomerShow, customerWatcherShow } = this
|
|
|
+ const { myCustomerShow, customerWatcherShow, hasMemberNJPower } = this
|
|
|
return {
|
|
|
+ ClaimList: hasMemberNJPower,
|
|
|
MyCustomer: myCustomerShow,
|
|
|
CustomerWatcher: customerWatcherShow,
|
|
|
SubscribeList: true,
|
|
@@ -78,6 +81,7 @@ export default {
|
|
|
'businessProfileShow',
|
|
|
'myCustomerShow',
|
|
|
'customerWatcherShow',
|
|
|
+ 'hasMemberNJPower',
|
|
|
'dataReportShow'
|
|
|
])
|
|
|
}
|