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

455 lines
10 KiB

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