123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <div id="wisdom" style="background-color: #F5F5F54f;">
- <div class="main">
- <el-col class="title" :span="24"> {{ detail.title }}</el-col>
- <el-col :span="24" class="info">
- <el-col :span="24" class="one">
- <p>服务描述:</p>
- <p>{{ detail.desc }}</p>
- </el-col>
- <el-col :span="24" class="two">
- <p>服务流程:</p>
- <el-col :span="24" class="twoBtn">
- <div><el-button plain>注册登录</el-button><i class="el-icon-right"></i></div>
- <div><el-button plain>提交申请</el-button><i class="el-icon-right"></i></div>
- <div><el-button plain>确认推荐需求</el-button><i class="el-icon-right"></i></div>
- <div><el-button plain>完成智慧推荐</el-button></div>
- </el-col>
- </el-col>
- <el-col :span="24" class="three">
- <el-button type="primary">申请办理</el-button>
- </el-col>
- </el-col>
- </div>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'wisdom',
- props: {},
- components: {},
- data: () => {
- return {
- detail: {
- title: '智慧推荐',
- desc:
- '智慧推荐在你喜欢的推荐场景中穿插原生形式信息的推广产品。超级推荐的核心是用内容创造消费需求,用商品挖掘潜在人群。超级推荐的流量形式是以站内外渠道高效覆盖消费者,其中是以猜你喜欢,有好货,今日头条等优质站内外信息流媒体资源,海量用户流量。投放形式丰富支持商品,图文,直播等多种形式来满足商家在信息流时代下的精准数字营销的需求。',
- },
- };
- },
- created() {},
- methods: {},
- computed: {},
- };
- </script>
- <style lang="less" scoped>
- .main {
- .title {
- text-align: center;
- font-size: 25px;
- color: #22529a;
- font-weight: bold;
- margin: 15px 0;
- }
- .info {
- .one {
- padding: 20px;
- p:first-child {
- width: 15%;
- background: #22529a;
- padding: 10px 0;
- font-size: 18px;
- text-align: center;
- border-radius: 5px;
- font-weight: bold;
- color: #fff;
- }
- p:last-child {
- margin: 15px 0 0 0;
- font-size: 16px;
- border: 1px solid #22529a;
- padding: 20px 10px;
- border-radius: 10px;
- min-height: 70px;
- }
- }
- .two {
- padding: 20px;
- p {
- float: left;
- width: 10%;
- background: #22529a;
- padding: 10px 0;
- font-size: 18px;
- text-align: center;
- border-radius: 5px;
- font-weight: bold;
- color: #fff;
- }
- .twoBtn {
- margin: 15px 0 0 0;
- border: 1px solid #22529a;
- border-radius: 10px;
- min-height: 100px;
- padding: 20px 10px;
- div {
- float: left;
- margin: 0 0 10px 10px;
- .el-button {
- margin: 0 10px 0 0;
- }
- }
- }
- }
- .three {
- text-align: center;
- }
- }
- }
- </style>
|