wisdom.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div id="wisdom" style="background-color: #F5F5F54f;">
  3. <div class="main">
  4. <el-col class="title" :span="24"> {{ detail.title }}</el-col>
  5. <el-col :span="24" class="info">
  6. <el-col :span="24" class="one">
  7. <p>服务描述:</p>
  8. <p>{{ detail.desc }}</p>
  9. </el-col>
  10. <el-col :span="24" class="two">
  11. <p>服务流程:</p>
  12. <el-col :span="24" class="twoBtn">
  13. <div><el-button plain>注册登录</el-button><i class="el-icon-right"></i></div>
  14. <div><el-button plain>提交申请</el-button><i class="el-icon-right"></i></div>
  15. <div><el-button plain>确认推荐需求</el-button><i class="el-icon-right"></i></div>
  16. <div><el-button plain>完成智慧推荐</el-button></div>
  17. </el-col>
  18. </el-col>
  19. <el-col :span="24" class="three">
  20. <el-button type="primary">申请办理</el-button>
  21. </el-col>
  22. </el-col>
  23. </div>
  24. </div>
  25. </template>
  26. <script>
  27. import { mapState, createNamespacedHelpers } from 'vuex';
  28. export default {
  29. name: 'wisdom',
  30. props: {},
  31. components: {},
  32. data: () => {
  33. return {
  34. detail: {
  35. title: '智慧推荐',
  36. desc:
  37. '智慧推荐在你喜欢的推荐场景中穿插原生形式信息的推广产品。超级推荐的核心是用内容创造消费需求,用商品挖掘潜在人群。超级推荐的流量形式是以站内外渠道高效覆盖消费者,其中是以猜你喜欢,有好货,今日头条等优质站内外信息流媒体资源,海量用户流量。投放形式丰富支持商品,图文,直播等多种形式来满足商家在信息流时代下的精准数字营销的需求。',
  38. },
  39. };
  40. },
  41. created() {},
  42. methods: {},
  43. computed: {},
  44. };
  45. </script>
  46. <style lang="less" scoped>
  47. .main {
  48. .title {
  49. text-align: center;
  50. font-size: 25px;
  51. color: #22529a;
  52. font-weight: bold;
  53. margin: 15px 0;
  54. }
  55. .info {
  56. .one {
  57. padding: 20px;
  58. p:first-child {
  59. width: 15%;
  60. background: #22529a;
  61. padding: 10px 0;
  62. font-size: 18px;
  63. text-align: center;
  64. border-radius: 5px;
  65. font-weight: bold;
  66. color: #fff;
  67. }
  68. p:last-child {
  69. margin: 15px 0 0 0;
  70. font-size: 16px;
  71. border: 1px solid #22529a;
  72. padding: 20px 10px;
  73. border-radius: 10px;
  74. min-height: 70px;
  75. }
  76. }
  77. .two {
  78. padding: 20px;
  79. p {
  80. float: left;
  81. width: 10%;
  82. background: #22529a;
  83. padding: 10px 0;
  84. font-size: 18px;
  85. text-align: center;
  86. border-radius: 5px;
  87. font-weight: bold;
  88. color: #fff;
  89. }
  90. .twoBtn {
  91. margin: 15px 0 0 0;
  92. border: 1px solid #22529a;
  93. border-radius: 10px;
  94. min-height: 100px;
  95. padding: 20px 10px;
  96. div {
  97. float: left;
  98. margin: 0 0 10px 10px;
  99. .el-button {
  100. margin: 0 10px 0 0;
  101. }
  102. }
  103. }
  104. }
  105. .three {
  106. text-align: center;
  107. }
  108. }
  109. }
  110. </style>