铝交易,微信公众号
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.

453 lines
10 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <!--顶部栏-->
  4. <topbar showRight="1"></topbar>
  5. <!-- 供应商 -->
  6. <view class="supplier" v-if="userShop">
  7. <!--上面第一个-->
  8. <view class="topItem">
  9. <view class="imageFrame">
  10. <img src="../../static/image/index/4.png" style="width:100%;height:100%;">
  11. </view>
  12. </view>
  13. <!-- 下面三个-->
  14. <view class="threeHeOne">
  15. <!-- 第一个-->
  16. <view class="oneItem">
  17. <view class="left">
  18. <!--<span>Company Profile</span>-->
  19. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  20. <span class="subText"> {{ $t('other.aluminumProducts') }}</span>
  21. </view>
  22. <view class="right">
  23. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  24. </view>
  25. </view>
  26. <!-- 第二个-->
  27. <view class="twoItem">
  28. <view class="left">
  29. <img src="../../static/image/index/2.png" style="width:100%;height:100%;">
  30. </view>
  31. <view class="right">
  32. <img src="../../static/image/index/3.png" style="width:100%;height:100%;">
  33. </view>
  34. </view>
  35. <!-- 第三个-->
  36. <view class="threeItem">
  37. <view class="right">
  38. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  39. </view>
  40. <view class="left">
  41. <!--<span>Company Profile</span>-->
  42. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  43. <span class="subText"> {{ $t('pages.index.index.aluminiumProduct') }}</span>
  44. </view>
  45. </view>
  46. </view>
  47. <!--报价和挂单-->
  48. <view class="btns">
  49. <span @click="goToPage(0)" class="oneBtn">
  50. {{ $t('other.supplierQuotation') }}
  51. </span>
  52. <span @click="goToPage(1)" class="twoBtn">
  53. {{ $t('other.supplierBilLading') }}
  54. </span>
  55. </view>
  56. </view>
  57. <!-- 采购商 -->
  58. <view class="purchaser" v-else>
  59. <!--上面第一个-->
  60. <view class="topItem">
  61. <view class="imageFrame">
  62. <img src="../../static/image/index/4.png" style="width:100%;height:100%;">
  63. </view>
  64. </view>
  65. <!-- 下面三个-->
  66. <view class="threeHeOne">
  67. <!-- 第一个-->
  68. <view class="oneItem">
  69. <view class="left">
  70. <span>Company Profile</span>
  71. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  72. <span class="subText"> {{ $t('pages.index.index.aluminiumProduct') }}</span>
  73. </view>
  74. <view class="right">
  75. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  76. </view>
  77. </view>
  78. <!-- 第二个-->
  79. <view class="twoItem">
  80. <view class="left">
  81. <img src="../../static/image/index/2.png" style="width:100%;height:100%;">
  82. </view>
  83. <view class="right">
  84. <img src="../../static/image/index/3.png" style="width:100%;height:100%;">
  85. </view>
  86. </view>
  87. <!-- 第三个-->
  88. <view class="threeItem">
  89. <view class="right">
  90. 随着全球经济的快速发展我们这家领先的企业公司应运而生致力于为客户提供卓越的服务和优质的产品我们公司成立于2001年总部位于深圳市横岗大厦拥有广泛的业务领域和专业的团队专注于实现客户的期望和需求
  91. </view>
  92. <view class="left">
  93. <span>Company Profile</span>
  94. <span> {{ $t('pages.index.index.companyProfile') }}</span>
  95. <span class="subText"> {{ $t('pages.index.index.aluminiumProduct') }}</span>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. <tabber select="0" />
  101. </view>
  102. </template>
  103. <script>
  104. import topbar from '@/components/base/topbar.vue'
  105. import tabber from '@/components/base/tabbar.vue'
  106. import productList from '@/components/user/productList.vue'
  107. import {
  108. mapGetters
  109. } from 'vuex'
  110. import changeLanguage from '@/components/base/changeLanguage.vue'
  111. export default {
  112. components: {
  113. tabber,
  114. topbar,
  115. productList,
  116. changeLanguage
  117. },
  118. data() {
  119. return {
  120. queryParams: {
  121. pageNo: 1,
  122. pageSize: 10,
  123. title: ''
  124. },
  125. }
  126. },
  127. onShow(){
  128. this.getImagePhoneOther()
  129. if(!this.$store.state.shop && !this.$store.state.buy){
  130. uni.reLaunch({
  131. url: '/pages_order/auth/selectionIdentity?back=no&'
  132. })
  133. }
  134. },
  135. computed: {
  136. ...mapGetters(['userShop']),
  137. },
  138. methods: {
  139. goToPage(titleIndex) {
  140. uni.navigateTo({
  141. url: '/pages_order/order/offerOrBillLading?titleIndex=' + titleIndex
  142. })
  143. },
  144. getImagePhoneOther(){
  145. this.$api('getImagePhoneOther', res => {
  146. })
  147. },
  148. }
  149. }
  150. </script>
  151. <style scoped lang="scss">
  152. * {
  153. box-sizing: border-box;
  154. }
  155. .page {
  156. background-color: #2e394d;
  157. // 供应商
  158. .supplier {
  159. display: flex;
  160. flex-direction: column;
  161. height: calc(100vh - 120rpx - 120rpx);
  162. background-color: #2e394d;
  163. .topItem {
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. height: 30%;
  168. background-image: url('../../static/image/index/1.png');
  169. background-size: cover;
  170. .imageFrame {
  171. width: 90%;
  172. height: 90%;
  173. //padding:80rpx;
  174. }
  175. }
  176. .threeHeOne {
  177. display: flex;
  178. padding: 20rpx 40rpx 10rpx;
  179. flex-direction: column;
  180. height: 60%;
  181. .oneItem {
  182. display: flex;
  183. height: 33%;
  184. .left {
  185. display: flex;
  186. flex-direction: column;
  187. justify-content: center;
  188. align-items: center;
  189. gap: 10rpx;
  190. width: 33%;
  191. background-color: #1e293d;
  192. color: white;
  193. font-size: 26rpx;
  194. .subText {
  195. width: 80%;
  196. background-color: #2e394d;
  197. padding: 0 20rpx;
  198. }
  199. }
  200. .right {
  201. //height: 30%;
  202. width: 66%;
  203. padding: 20rpx;
  204. background-image: url('../../static/image/index/1.png');
  205. background-size: cover;
  206. font-size: 20rpx;
  207. color: white;
  208. }
  209. }
  210. .twoItem {
  211. display: flex;
  212. justify-content: space-between;
  213. gap: 20rpx;
  214. height: 33%;
  215. margin-top: 20rpx;
  216. padding: 10rpx;
  217. .left {
  218. width: 60%;
  219. padding: 20rpx;
  220. background-color: #1e293d;
  221. }
  222. .right {
  223. width: 40%;
  224. padding: 20rpx;
  225. background-color: #1e293d;
  226. }
  227. }
  228. .threeItem {
  229. display: flex;
  230. //width: 100vw;
  231. height: 33%;
  232. .left {
  233. display: flex;
  234. flex-direction: column;
  235. justify-content: center;
  236. align-items: center;
  237. gap: 20rpx;
  238. width: 33%;
  239. background-color: #1e293d;
  240. color: white;
  241. font-size: 26rpx;
  242. .subText {
  243. background-color: #2e394d;
  244. width: 80%;
  245. padding: 0 20rpx;
  246. }
  247. }
  248. .right {
  249. //height: 200rpx;
  250. width: 66%;
  251. padding: 20rpx;
  252. background-image: url('../../static/image/index/1.png');
  253. background-size: cover;
  254. font-size: 20rpx;
  255. color: white;
  256. }
  257. }
  258. }
  259. .btns {
  260. display: flex;
  261. justify-content: center;
  262. align-items: center;
  263. gap: 40rpx;
  264. .oneBtn {
  265. display: flex;
  266. align-items: center;
  267. justify-content: center;
  268. width: 40%;
  269. height: 70rpx;
  270. border-radius: 40rpx;
  271. color: #1F1C39;
  272. font-size: 28rpx;
  273. margin: 20rpx 10rpx 0 0;
  274. background: #f2f2f2;
  275. //margin-top: 20rpx;
  276. border-radius: 40rpx;
  277. }
  278. .twoBtn {
  279. display: flex;
  280. align-items: center;
  281. justify-content: center;
  282. width: 40%;
  283. height: 70rpx;
  284. border-radius: 40rpx;
  285. color: #1F1C39;
  286. font-size: 28rpx;
  287. margin: 20rpx 10rpx 0 0;
  288. background: #f2f2f2;
  289. //margin-top: 20rpx;
  290. border-radius: 40rpx;
  291. }
  292. }
  293. }
  294. // 采购商
  295. .purchaser {
  296. display: flex;
  297. flex-direction: column;
  298. //gap: 40rpx;
  299. background-color: #2e394d;
  300. .topItem {
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. height: 280rpx;
  305. background-image: url('../../static/image/index/1.png');
  306. background-size: cover;
  307. .imageFrame {
  308. width: 90%;
  309. height: 90%;
  310. //padding:80rpx;
  311. }
  312. }
  313. .threeHeOne {
  314. display: flex;
  315. padding: 20rpx 40rpx 10rpx;
  316. flex-direction: column;
  317. .oneItem {
  318. display: flex;
  319. .left {
  320. display: flex;
  321. flex-direction: column;
  322. justify-content: center;
  323. align-items: center;
  324. gap: 10rpx;
  325. width: 33%;
  326. background-color: #1e293d;
  327. color: white;
  328. font-size: 26rpx;
  329. .subText {
  330. background-color: #2e394d;
  331. padding: 0 20rpx;
  332. }
  333. }
  334. .right {
  335. height: 180rpx;
  336. width: 66%;
  337. padding: 20rpx;
  338. background-image: url('../../static/image/index/1.png');
  339. background-size: cover;
  340. font-size: 20rpx;
  341. color: white;
  342. }
  343. }
  344. .twoItem {
  345. display: flex;
  346. justify-content: space-between;
  347. gap: 20rpx;
  348. height: 280rpx;
  349. margin-top: 20rpx;
  350. padding: 10rpx;
  351. .left {
  352. width: 60%;
  353. padding: 20rpx;
  354. background-color: #1e293d;
  355. }
  356. .right {
  357. width: 40%;
  358. padding: 20rpx;
  359. background-color: #1e293d;
  360. }
  361. }
  362. .threeItem {
  363. display: flex;
  364. //width: 100vw;
  365. .left {
  366. display: flex;
  367. flex-direction: column;
  368. justify-content: center;
  369. align-items: center;
  370. gap: 20rpx;
  371. width: 33%;
  372. background-color: #1e293d;
  373. color: white;
  374. font-size: 26rpx;
  375. .subText {
  376. background-color: #2e394d;
  377. padding: 0 20rpx;
  378. }
  379. }
  380. .right {
  381. height: 200rpx;
  382. width: 66%;
  383. padding: 20rpx;
  384. background-image: url('../../static/image/index/1.png');
  385. background-size: cover;
  386. font-size: 20rpx;
  387. color: white;
  388. }
  389. }
  390. }
  391. }
  392. }
  393. </style>