caimei-about.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view
  3. class="about"
  4. :style="{
  5. background: 'url(' + bgImg + ')',
  6. 'background-repeat': 'no-repeat',
  7. 'background-size': '100% 100%'
  8. }"
  9. >
  10. <slot name="supplier-title"></slot>
  11. <view class="about-container">
  12. <view class="about-explain">
  13. <view class="about-bg"></view>
  14. <view class="about-text">
  15. 采美网是一个生活美容和医疗美容行业B2B数字化营销和供应链服务平台,其核心资产包括采购
  16. 信息中心,媒体矩阵,数字运营以及线上交易和供应链管理软件,建立了一个从信息引流到数字
  17. 运营到交易结算一体化平台,站外引流站内运营,采购转化的闭环生态,采美平台以创造客户价值为核心,借助数字化营销的优
  18. 势,赋能美业供应链上下游企业,共同打造一站式美业双线融合的供应链新生态。
  19. </view>
  20. </view>
  21. <view>
  22. <image class="about-achievement" src="https://static.caimei365.com/app/img/supplier-login/caimeiabout/achievement.png" mode=""></image>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. bgImg: 'https://static.caimei365.com/app/img/supplier-login/caimeiabout/bg.png',
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .about {
  38. padding: 1px;
  39. box-sizing: border-box;
  40. }
  41. .about-container {
  42. padding: 0 70rpx;
  43. box-sizing: border-box;
  44. .about-explain {
  45. width: 610rpx;
  46. height: 760rpx;
  47. position: relative;
  48. margin-bottom: 78rpx;
  49. .about-bg {
  50. width: 100%;
  51. height: 100%;
  52. position: absolute;
  53. left: 0;
  54. top: 0;
  55. background: #FFFFFF;
  56. opacity: 0.2;
  57. border-radius: 4rpx;
  58. }
  59. .about-text {
  60. width: 100%;
  61. height: 100%;
  62. box-sizing: border-box;
  63. padding: 45rpx 34rpx;
  64. color: #FFFFFF;
  65. font-size: 32rpx;
  66. line-height: 64rpx;
  67. }
  68. }
  69. .about-achievement {
  70. width: 610rpx;
  71. height: 400rpx;
  72. margin-bottom: 62rpx;
  73. }
  74. }
  75. </style>