couponDetail.vue 3.37 KB
Newer Older
1 2
<template>
  <div class="container">
xd's avatar
xd committed
3 4
    <div>
      <div class="topb">
5 6
    </div>
    <div class="title">
leiqingsong's avatar
leiqingsong committed
7
      <span class="bt">送券活动</span>
8 9
      <div class="tb">
        <img src="../../../public/img/zp.png" alt="" />
leiqingsong's avatar
leiqingsong committed
10
        送券活动
11 12 13 14 15 16 17 18 19 20 21 22 23 24
      </div>
    </div>
    <div class="wtitle">
      <img src="../../../public/img/water.png" alt="" />
      <span class="wan">玩法介绍</span>
    </div>
    <div class="content">
      <p>
        马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。
      </p>
      <p>
        马几一民号传所把半米料己走专管每见严且具还京叫海公好速信调化眼务难心化二响住厂图电没速严义常象关更了低。由压反几风列线法再石究说布通总织第量回儿称从消片度音济学地通斯带老水亲东志报月者进放北传看术走形解林直动效提情影和复色米最只等。济交感去照象强手式性九己值正可心什体收并适部该置可山省十。
      </p>
    </div>
xd's avatar
xd committed
25 26
    </div>
    
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    <div class="creat" @click="createActive">创建同款活动</div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      
    }
  },
  methods: {
    createActive() {
      this.$router.push({
        name: 'createActive'
      })
    }
  },
};
</script>

<style>

</style>
<style scoped>
p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(45, 71, 106, 0.8);
  margin-top: 14px;
}
.wan {
  position: absolute;
  left: 77px;
  top: 8px;
  font-size: 16px;
  font-weight: bold;
}
.wtitle {
  width: 200px;
  height: 24px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 268px;
  z-index: 999;
}
.wtitle img {
  width: 100%;
}
.topb {
  width: 100%;
  height: 200px;
xd's avatar
xd committed
80 81
  background:url(../../../public/img/zpbg.png) no-repeat;
  background-size: cover;
82
}
xd's avatar
xd committed
83

84 85 86 87 88 89 90 91 92 93 94 95
.title {
  width: 100%;
  height: 50px;
  font-size: 18px;
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(221, 221, 221, 1);
  line-height: 50px;
  padding-left: 16px;
  position: relative;
}
.container {
  background-color: rgba(248, 248, 248, 1);
xd's avatar
xd committed
96
  height: auto;
xd's avatar
xd committed
97
  display: flex;
xd's avatar
xd committed
98
  justify-content: space-between;
xd's avatar
xd committed
99 100
  align-items: center;
  flex-direction: column;
xd's avatar
xd committed
101
  min-height: 100%;
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
}
.bt {
  font-size: 16px;
  margin-left: 96px;
  font-weight: bold;
  color: rgba(45, 71, 106, 1);
}
.tb {
  position: absolute;
  height: 24px;
  line-height: 24px;
  left: 16px;
  top: 14px;
  border-radius: 2px;
  border: 1px solid rgba(45, 71, 106, 1);
  font-size: 10px;
  font-weight: 500;
  color: rgba(45, 71, 106, 1);
  width: 88px;
  text-align: center;
}
.tb img {
  width: 12px;
  height: 12px;
}
.content {
  margin: 36px 16px 16px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 4px 0px rgba(221, 221, 221, 1);
  position: relative;
  padding: 16px 16px 30px 16px;
}
.creat {
  width: 343px;
  height: 40px;
  line-height: 40px;
  background: rgba(117, 178, 253, 1);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  margin-bottom: 16px;
}
</style>