AsideOthers.vue 722 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="aside-others-container">
  3. <AdContainer />
  4. <div class="production-list">
  5. <AdContainer />
  6. <AdContainer />
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import { mapActions, mapState } from 'vuex'
  12. import AdContainer from '../ui/AdContainer'
  13. export default {
  14. name: 'AsideOthers',
  15. components: {
  16. AdContainer
  17. },
  18. computed: {
  19. ...mapState('workspace/asideOthers', [
  20. 'myLocationInEnt',
  21. 'overviewList'
  22. ])
  23. },
  24. created () {
  25. this.getEntInfo()
  26. },
  27. methods: {
  28. ...mapActions('workspace/profile', [
  29. 'getEntInfo'
  30. ]),
  31. seeMore () {
  32. window.open('/entpc/newBus/board?m1=3&m2=0')
  33. }
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. </style>