BusinessOpportunities.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <div class="business-opportunities">
  3. <div class="apply-info">
  4. <p class="title">如何获取商机<span></span></p>
  5. <p> <img src="/images/applyPurchase/title1.png" alt="">怎么样才能坐拥<span>商机</span>,<span style="color: #3c7df5; font-size: 18px;">客似云来?</span></p>
  6. <p> <img src="/images/applyPurchase/title2.png" alt="">优软商城<span>海量采购询价单</span>,大数据将为你匹配推送<span>商机</span></p>
  7. <p> <img src="/images/applyPurchase/title1.png" alt="">为什么我没收到<span>推送</span>的<span>信息</span>呢?</p>
  8. <p> <img src="/images/applyPurchase/title2.png" alt="">您需维护您的<span>产品库</span>,越丰富商机越多</p>
  9. <img class="process" src="/images/applyPurchase/business11.png" alt="">
  10. <img class="process" src="/images/applyPurchase/business22.png" alt="">
  11. <p class="process-info">买家发出的<span>公共采购询价单</span>将会通过<span>“数据中心”</span>自动匹配和精准推送给<span>产品库</span>的有该产品的卖家。</p>
  12. <img src="/images/applyPurchase/business333.jpg" alt="">
  13. <div class="case-info"><img id="case" src="/images/applyPurchase/case.png" alt=""><p class="case">买方发布“型号RHU002N06T106”的公共采购询价,“大数据中心”将匹配卖家的【产品库】是否有该型号,如果卖家产品库有该型号即可以收到该商机推送,如果卖家产品库没有该型号即收不到该商机推送。</p></div>
  14. <a class="last" @click="Maintenance()">去维护个人产品&nbsp;<i class="iconfont icon-arrow-right"></i></a>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. computed: {
  21. user () {
  22. return this.$store.state.option.user
  23. }
  24. },
  25. methods: {
  26. Maintenance: function (data) {
  27. if (!this.user.logged) {
  28. this.$message.error('请先登录')
  29. } else {
  30. let isSelf = true
  31. let tempEnterprise = {}
  32. let ens = this.user.data.enterprises
  33. if (ens && ens.length) {
  34. ens.forEach(function (item) {
  35. if (item.current) {
  36. isSelf = false
  37. tempEnterprise = item
  38. }
  39. })
  40. } else {
  41. isSelf = true
  42. }
  43. if (isSelf) {
  44. this.$message.error('请先点击【卖家中心】升级成为卖家')
  45. } else {
  46. if (tempEnterprise.isVendor === 313) {
  47. window.location.href = '/vendor#/vendor_upload?type=self'
  48. } else {
  49. this.$message.error('请先点击【卖家中心】升级成为卖家')
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. .business-opportunities{
  59. width: 100%;
  60. min-width: 1190px;
  61. padding: 0px;
  62. margin: 0;
  63. .apply-info{
  64. width: 1190px;
  65. margin: 0 auto;
  66. text-align: center;
  67. .title {
  68. width: 100%;
  69. font-size: 34px;
  70. color: #333;
  71. text-align: center;
  72. padding: 20px 0px;
  73. border-bottom: 1px solid #9dbbdb;
  74. span{
  75. display: block;
  76. width: 32px;
  77. height: 10px;
  78. margin: 0 auto;
  79. border-bottom: 3px solid #f35178;
  80. position: relative;
  81. top: 22px;
  82. }
  83. }
  84. p {
  85. text-align: left;
  86. color: #3e7cf5;
  87. font-size: 18px;
  88. padding-left: 78px;
  89. line-height: 24px;
  90. img{
  91. margin-right: 29px;
  92. }
  93. span{
  94. color: #ff0013;
  95. font-size: 24px;
  96. }
  97. &:nth-child(3), &:nth-child(5){
  98. color: #666;
  99. padding-top: 8px;
  100. }
  101. &:nth-child(2){
  102. padding-top: 8px;
  103. }
  104. &:nth-child(4){
  105. padding-top: 18px;
  106. }
  107. }
  108. .process-info{
  109. padding: 34px 0px 40px 0px;
  110. width: 768px;
  111. margin: 0 auto;
  112. font-size: 16px;
  113. span{
  114. font-size: 20px;
  115. font-weight: bold;
  116. }
  117. }
  118. .case-info{
  119. width: 1099px;
  120. margin: 0 auto;
  121. height: 101px;
  122. border-radius: 15px;
  123. border: dashed 1px #317be9;
  124. margin-top: 52px;
  125. padding-top: 5px;
  126. position: relative;
  127. .case{
  128. padding: 16px 45px 0px 100px;
  129. color: #fff;
  130. margin: 0 auto;
  131. font-size: 18px;
  132. width: 1089px;
  133. height: 90px;
  134. background-color: #317be9;
  135. border-radius: 10px;
  136. line-height: 30px;
  137. }
  138. #case{
  139. position: absolute;
  140. left: 15px;
  141. top: -50px;
  142. }
  143. }
  144. .process{
  145. margin-top: 8px;
  146. }
  147. .last {
  148. margin: 12px 0px 48px 0px;
  149. display: inline-block;
  150. width: 198px;
  151. height: 40px;
  152. background: #317be9;
  153. border-radius: 20px;
  154. line-height: 40px;
  155. color: #fff;
  156. font-size: 18px;
  157. text-align: center;
  158. .iconfont{
  159. color: #fff;
  160. font-size: 24px;
  161. vertical-align: middle;
  162. }
  163. }
  164. }
  165. }
  166. </style>