铝交易,微信公众号
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

239 lines
5.6 KiB

8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="page">
  3. <!--顶部栏-->
  4. <topbar showRight="1" ></topbar>
  5. <!-- 语言切换 -->
  6. <!--<view style="padding: 20rpx;"-->
  7. <!-- @click="$refs.changeLanguage.open()">-->
  8. <!-- {{ $t('pages.index.index.language') }}-->
  9. <!--</view>-->
  10. <!--<changeLanguage ref="changeLanguage"/>-->
  11. <!-- 供应商 -->
  12. <view class="supplier" v-if="userShop">
  13. </view>
  14. <!-- 采购商 -->
  15. <view class="purchaser" v-else>
  16. <!--上面第一个-->
  17. <view class="topItem">
  18. <view class="imageFrame">
  19. <img src="../../static/image/index/4.png" style="width:100%;height:100%;">
  20. </view>
  21. </view>
  22. <!-- 下面三个-->
  23. <view class="threeHeOne">
  24. <!-- 第一个-->
  25. <view class="oneItem">
  26. <view class="left">
  27. <span>Company Profile</span>
  28. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  29. <span class="subText"> {{ $t('pages.index.index.aluminiumProduct') }}</span>
  30. </view>
  31. <view class="right">
  32. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  33. </view>
  34. </view>
  35. <!-- 第二个-->
  36. <view class="twoItem">
  37. <view class="left">
  38. <img src="../../static/image/index/2.png" style="width:100%;height:100%;">
  39. </view>
  40. <view class="right">
  41. <img src="../../static/image/index/3.png" style="width:100%;height:100%;">
  42. </view>
  43. </view>
  44. <!-- 第三个-->
  45. <view class="threeItem">
  46. <view class="right">
  47. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  48. </view>
  49. <view class="left">
  50. <span>Company Profile</span>
  51. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  52. <span class="subText"> {{ $t('pages.index.index.aluminiumProduct') }}</span>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <tabber select="0"/>
  58. </view>
  59. </template>
  60. <script>
  61. import topbar from '@/components/base/topbar.vue'
  62. import tabber from '@/components/base/tabbar.vue'
  63. import productList from '@/components/user/productList.vue'
  64. import {mapGetters} from 'vuex'
  65. import changeLanguage from '@/components/base/changeLanguage.vue'
  66. export default {
  67. components: {
  68. tabber,topbar,
  69. productList,
  70. changeLanguage
  71. },
  72. data() {
  73. return {
  74. queryParams: {
  75. pageNo: 1,
  76. pageSize: 10,
  77. title: ''
  78. },
  79. }
  80. },
  81. computed: {
  82. ...mapGetters(['userShop']),
  83. },
  84. methods: {
  85. }
  86. }
  87. </script>
  88. <style scoped lang="scss">
  89. * {
  90. box-sizing: border-box;
  91. }
  92. .page {
  93. & /deep/ .uv-icon__icon {
  94. font-size: 30rpx !important;
  95. }
  96. // 供应商
  97. .supplier {
  98. }
  99. // 采购商
  100. .purchaser {
  101. display: flex;
  102. flex-direction: column;
  103. //gap: 40rpx;
  104. background-color: #2e394d;
  105. .topItem {
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. height: 350rpx;
  110. background-image: url('../../static/image/index/1.png');
  111. background-size: cover;
  112. .imageFrame {
  113. width: 90%;
  114. height: 90%;
  115. //padding:80rpx;
  116. }
  117. }
  118. .threeHeOne {
  119. display: flex;
  120. padding: 20rpx 40rpx 40rpx;
  121. flex-direction: column;
  122. .oneItem {
  123. display: flex;
  124. //width: 100vw;
  125. .left {
  126. display: flex;
  127. flex-direction: column;
  128. justify-content: center;
  129. align-items: center;
  130. gap: 20rpx;
  131. width: 33%;
  132. background-color: #1e293d;
  133. color: white;
  134. font-size: 26rpx;
  135. .subText {
  136. background-color: #2e394d;
  137. padding: 0 20rpx;
  138. }
  139. }
  140. .right {
  141. height: 200rpx;
  142. width: 66%;
  143. padding: 20rpx;
  144. background-image: url('../../static/image/index/1.png');
  145. background-size: cover;
  146. font-size: 20rpx;
  147. color: white;
  148. }
  149. }
  150. .twoItem {
  151. display: flex;
  152. justify-content: space-between;
  153. gap: 20rpx;
  154. height: 300rpx;
  155. margin-top: 20rpx;
  156. padding: 10rpx;
  157. .left {
  158. width: 60%;
  159. padding: 20rpx;
  160. background-color: #1e293d;
  161. }
  162. .right {
  163. width: 40%;
  164. padding: 20rpx;
  165. background-color: #1e293d;
  166. }
  167. }
  168. .threeItem {
  169. display: flex;
  170. //width: 100vw;
  171. .left {
  172. display: flex;
  173. flex-direction: column;
  174. justify-content: center;
  175. align-items: center;
  176. gap: 20rpx;
  177. width: 33%;
  178. background-color: #1e293d;
  179. color: white;
  180. font-size: 26rpx;
  181. .subText {
  182. background-color: #2e394d;
  183. padding: 0 20rpx;
  184. }
  185. }
  186. .right {
  187. height: 200rpx;
  188. width: 66%;
  189. padding: 20rpx;
  190. background-image: url('../../static/image/index/1.png');
  191. background-size: cover;
  192. font-size: 20rpx;
  193. color: white;
  194. }
  195. }
  196. }
  197. }
  198. }
  199. </style>