caseDetail.vue 2.89 KB
Newer Older
xd's avatar
xd committed
1
<template>
2
  <div class="container" >
xd's avatar
xd committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
    <div class="ct">
      <div class="head">
        <h3>我的一次成功销售案例</h3>
        <div>
          <span>作者: </span>
          <span>亿百分</span>
          <span style="margin-left:24px;">2019 / 12 /24</span>
        </div>
      </div>
      <div class="nr">
        <p>
          马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。
        </p>
        <p>
          马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。
        </p>
        <div class="pic">
            <img src="/img/article.png" alt="">
        </div>
        <p>
          马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。
        </p>
      </div>
    </div>
  </div>
</template>

<script>
xd's avatar
xd committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
import { getCaseDetail } from '@/api/test/active'
export default {
  data() {
    return {
      
    }
  },
  methods: {
    getDeatil() {
      let data = {
        
      }
      getCaseDetail(data).then(res => {
        console.log(res,"案例详情");
        
      })
    } 
  },
};
xd's avatar
xd committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
</script>

<style scoped>
.pic {
    width: 100%;
    margin-bottom: 14px;
}
.pic img {
    width: 100%;
}
.nr {
    margin-top: 12px;
}
.nr p {
  font-size: 12px;
  font-weight: 400;
  color: #576C88;
  margin-bottom: 14px;
}
.container {
  background: #f8f8f8;
xd's avatar
xd committed
71
  height: auto;
xd's avatar
xd committed
72 73 74
  padding: 16px;
  display: flex;
  flex-direction: column;
75
  justify-content: flex-start;
xd's avatar
xd committed
76
  align-items: start;
xd's avatar
xd committed
77
  min-height: 100%;
xd's avatar
xd committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
}
.ct {
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(221, 221, 221, 1);
  padding: 16px;
}
.head {
  height: 74px;
  width: 100%;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.head h3 {
  font-size: 18px;
  font-weight: bold;
  color: rgba(45, 71, 106, 1);
}
.head span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(45, 71, 106, 1);
}
</style>