123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="aside-others-container">
- <AdContainer />
- <div class="production-list">
- <AdContainer />
- <AdContainer />
- </div>
- </div>
- </template>
- <script>
- import { mapActions, mapState } from 'vuex'
- import AdContainer from '../ui/AdContainer'
- export default {
- name: 'AsideOthers',
- components: {
- AdContainer
- },
- computed: {
- ...mapState('workspace/asideOthers', [
- 'myLocationInEnt',
- 'overviewList'
- ])
- },
- created () {
- this.getEntInfo()
- },
- methods: {
- ...mapActions('workspace/profile', [
- 'getEntInfo'
- ]),
- seeMore () {
- window.open('/entpc/newBus/board?m1=3&m2=0')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|