shop.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <div id="main">
  3. <header-view v-if="!isInFrame"></header-view>
  4. <template v-if="isShowShopHeader">
  5. <store-header/>
  6. <store-title/>
  7. </template>
  8. <template v-else>
  9. <main-header></main-header>
  10. <main-nav></main-nav>
  11. </template>
  12. <img v-if="isConsignment" class="banner-img" src="/images/all/banner-consignment.png" alt="">
  13. <!--<img v-if="isConsignment" class="cuxiao-banner" src="/images/all/banner-cuxiao.png" alt="">-->
  14. <nuxt/>
  15. <img v-if="isConsignment && !isInDetail" class="banner-img" src="/images/all/banner-consignment2.jpg" alt="" style="margin: 10px auto 30px;">
  16. <footer-view></footer-view>
  17. <right-bar ref="rightBar"></right-bar>
  18. </div>
  19. </template>
  20. <script>
  21. import { Header, Footer, RightBar } from '~components/default'
  22. import { StoreHeader, StoreTitle } from '~components/store'
  23. import { MainHeader, MainNav } from '~components/main'
  24. function getCount (str, char) {
  25. return str.split(char).length - 1
  26. }
  27. export default {
  28. name: 'shop',
  29. components: {
  30. HeaderView: Header,
  31. FooterView: Footer,
  32. RightBar,
  33. StoreHeader,
  34. StoreTitle,
  35. MainHeader,
  36. MainNav
  37. },
  38. created() {
  39. this.$root.$on('add_cart', this.drop)
  40. },
  41. head () {
  42. return {
  43. title: this.title,
  44. meta: [
  45. {hid: 'description', name: 'description', content: this.description},
  46. {hid: 'keywords', name: 'keywords', content: this.keywords}
  47. ]
  48. }
  49. },
  50. methods: {
  51. drop(el) {
  52. this.$refs.rightBar.drop(el)
  53. }
  54. },
  55. computed: {
  56. title () {
  57. let path = this.$route.path
  58. if ((path.startsWith('/store/') && getCount(path, '/') === 2) || path.endsWith('/description')) {
  59. if (!this.isConsignment) {
  60. if (!this.storeInfo.storeName) {
  61. return '【优软商城】IC电子元器件现货采购交易平台商城'
  62. }
  63. return this.storeInfo.storeName + this.getStoreType(this.storeInfo.type) + '专卖店-优软商城'
  64. } else {
  65. return 'IC电子元器件库存寄售呆滞尾料空闲库存商城自营现货寄售-优软商城'
  66. }
  67. } else if (path.startsWith('/store/') && getCount(path, '/') === 3) {
  68. if (!this.commodity) {
  69. return '【优软商城】IC电子元器件现货采购交易平台商城'
  70. }
  71. return this.commodity.brandNameEn + this.commodity.code + '价格|现货库存|报价|产品参数-优软商城'
  72. } else {
  73. return '【优软商城】IC电子元器件现货采购交易平台商城'
  74. }
  75. },
  76. description () {
  77. let path = this.$route.path
  78. if ((path.startsWith('/store/') && getCount(path, '/') === 2) || path.endsWith('/description')) {
  79. if (!this.isConsignment) {
  80. if (!this.storeInfo.storeName) {
  81. return '优软商城为您提供IC电子元器件库存寄售呆滞尾料空闲库存现货寄售服务,商城自营现货寄售让您更放心更省心。'
  82. }
  83. return this.storeInfo.storeName + '官方' + this.getStoreType(this.storeInfo.type) + '专卖店,提供最新IC电子元器件现货在线销售。'
  84. } else {
  85. return '优软商城为您提供IC电子元器件库存寄售呆滞尾料空闲库存现货寄售服务,商城自营现货寄售让您更放心更省心。'
  86. }
  87. } else if (path.startsWith('/store/') && getCount(path, '/') === 3) {
  88. if (!this.commodity) {
  89. return '优软商城(https://mall.usoftchina.com)是中国领先的IC电子元器件现货采购交易网上商城,提供上千万种电子元器件现货采购交易,采购电子元器件就上优软商城!'
  90. }
  91. return this.commodity.enterpriseName + '提供' + this.commodity.brandNameEn + this.commodity.code + '价格和' + this.commodity.code + '现货库存,并且内容还包含' + this.commodity.code + '产品参数、' + this.commodity.code + '规格书数据手册等。'
  92. } else {
  93. return '优软商城(https://mall.usoftchina.com)是中国领先的IC电子元器件现货采购交易网上商城,提供上千万种电子元器件现货采购交易,采购电子元器件就上优软商城!'
  94. }
  95. },
  96. keywords () {
  97. let path = this.$route.path
  98. if ((path.startsWith('/store/') && getCount(path, '/') === 2) || path.endsWith('/description')) {
  99. if (!this.isConsignment) {
  100. if (!this.storeInfo.storeName) {
  101. return '优软商城,ic芯片库存寄售,电子元器件寄售'
  102. }
  103. return '电子元器件' + this.getStoreType(this.storeInfo.type) + '专卖店'
  104. } else {
  105. return '优软商城,ic芯片库存寄售,电子元器件寄售'
  106. }
  107. } else if (path.startsWith('/store/') && getCount(path, '/') === 3) {
  108. if (!this.commodity) {
  109. return '优软商城'
  110. }
  111. return this.commodity.code + '价格,' + this.commodity.code + '现货,' + this.commodity.code + '报价,' + this.commodity.code + '产品参数'
  112. } else {
  113. return '优软商城'
  114. }
  115. },
  116. storeInfo () {
  117. return this.$store.state.shop.storeInfo.store.data
  118. },
  119. isConsignment () {
  120. return this.storeInfo.type === 'CONSIGNMENT'
  121. },
  122. isInDetail () {
  123. return this.$route.path.indexOf('/store/productDetail/') !== -1
  124. },
  125. isShowShopHeader () {
  126. if (this.isInDetail) {
  127. if (this.$store.state.shop.storeInfo.commodity.data.id) {
  128. return true
  129. } else {
  130. return false
  131. }
  132. } else if (this.storeInfo.id) {
  133. return true
  134. } else {
  135. return false
  136. }
  137. }
  138. },
  139. methods: {
  140. getStoreType: function (type) {
  141. if (type === 'ORIGINAL_FACTORY') {
  142. return '原厂'
  143. } else if (type === 'AGENCY') {
  144. return '代理'
  145. } else if (type === 'DISTRIBUTION') {
  146. return '经销'
  147. } else if (type === 'CONSIGNMENT') {
  148. return '寄售'
  149. }
  150. return ''
  151. }
  152. }
  153. }
  154. </script>
  155. <style scoped>
  156. .banner-img {
  157. margin-top: -10px;
  158. }
  159. .cuxiao-banner {
  160. margin: 15px auto 20px ;
  161. display: block;
  162. }
  163. </style>