|
@@ -17,17 +17,32 @@
|
|
<span>44.77</span>
|
|
<span>44.77</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <p class="origin-price">原价¥ 599</p>
|
|
|
|
+ <div
|
|
|
|
+ class="name-wrap">
|
|
|
|
+ <img src="" alt="">
|
|
|
|
+ <p>这是名字这是名字这是名字这是名字这是名字这是名这是名字这是名字这是名字这是名字这是名字这是名</p>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="coupon-wrap">
|
|
|
|
+ <div>
|
|
|
|
+ <p class="amount">333元优惠券</p>
|
|
|
|
+ <p class="expires">10月20日-11月11日</p>
|
|
|
|
+ </div>
|
|
|
|
+ <van-button type="default">立即领券</van-button>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import Banner from './child/banner'
|
|
import Banner from './child/banner'
|
|
|
|
+import { Button } from 'vant'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
components: {
|
|
components: {
|
|
- Banner
|
|
|
|
|
|
+ Banner,
|
|
|
|
+ 'van-button': Button
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -100,4 +115,73 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.origin-price {
|
|
|
|
+ margin-top: 6px;
|
|
|
|
+ font-size: 13px;
|
|
|
|
+ text-decoration: line-through;
|
|
|
|
+ color: #999999;
|
|
|
|
+ line-height: 18px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.name-wrap {
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+
|
|
|
|
+ img {
|
|
|
|
+ width: 30px;
|
|
|
|
+ height: 16px;
|
|
|
|
+ margin-right: 4px;
|
|
|
|
+ float: left;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ p {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.coupon-wrap {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
+ width: 359px;
|
|
|
|
+ height: 84px;
|
|
|
|
+ margin-top: 14px;
|
|
|
|
+ background: url("./image/ic_coupon_big.png") center center/100% 100% no-repeat;
|
|
|
|
+
|
|
|
|
+ & > div {
|
|
|
|
+ width: 227px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .amount {
|
|
|
|
+ font-size: 19px;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #000000;
|
|
|
|
+ line-height: 31px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .expires {
|
|
|
|
+ font-size: 11px;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #BCA763;
|
|
|
|
+ line-height: 18px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ::v-deep .van-button--default {
|
|
|
|
+ width: 86px;
|
|
|
|
+ padding: 0;
|
|
|
|
+ border: none;
|
|
|
|
+ background: transparent;
|
|
|
|
+
|
|
|
|
+ .van-button__text {
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|