|
@ -26,7 +26,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<company-profile :showProfile="showProfile" @closeProfile="closeProfile" v-if="showProfile" /> |
|
|
<company-profile :show-profile="showProfile" @closeProfile="closeProfile" v-if="showProfile" /> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
@ -34,8 +34,8 @@ |
|
|
import { mapState, mapMutations, mapActions } from 'vuex'; |
|
|
import { mapState, mapMutations, mapActions } from 'vuex'; |
|
|
import CompanyProfile from './CompanyProfile.vue'; |
|
|
import CompanyProfile from './CompanyProfile.vue'; |
|
|
export default { |
|
|
export default { |
|
|
components: { CompanyProfile }, |
|
|
|
|
|
name: 'PartnerShip', |
|
|
name: 'PartnerShip', |
|
|
|
|
|
components: { CompanyProfile }, |
|
|
props: { |
|
|
props: { |
|
|
title: { |
|
|
title: { |
|
|
type: String, |
|
|
type: String, |
|
@ -48,9 +48,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { showProfile: false }; |
|
|
showProfile: false, // 显示公司介绍 |
|
|
|
|
|
}; |
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
computed: mapState('home', ['partners', 'profile']), |
|
|
computed: mapState('home', ['partners', 'profile']), |
|
|