Authored by 郭成尧

Merge branch 'feature/fraud' into 'release/5.6'

防诈骗提示



See merge request !478
1 <div class="order-page yoho-page"> 1 <div class="order-page yoho-page">
2 {{# order}} 2 {{# order}}
  3 + {{> fraud}}
3 <ul id="order-nav" class="order-nav clearfix"> 4 <ul id="order-nav" class="order-nav clearfix">
4 {{#each navs}} 5 {{#each navs}}
5 <li class="tap-hightlight {{#if active}}active{{/if}}" data-type="{{typeId}}"> 6 <li class="tap-hightlight {{#if active}}active{{/if}}" data-type="{{typeId}}">
1 <div class="order-detail-page yoho-page"> 1 <div class="order-detail-page yoho-page">
2 {{# orderDetail}} 2 {{# orderDetail}}
  3 +
  4 + {{> fraud}}
  5 +
3 <div id="order-detail" data-id="{{orderCode}}"> 6 <div id="order-detail" data-id="{{orderCode}}">
4 {{#if isVirtual}} 7 {{#if isVirtual}}
5 <section class="block"> 8 <section class="block">
  1 +<div class="fraud-tip">
  2 + <a class="iconfont" href="http://activity.yoho.cn/feature/45.html?title=防诈骗提醒">&#xe614;</a>
  3 + <span class="tip-title">关于防诈骗的重要提醒</span>
  4 + <span class="tip-content">有货不会以任何理由要求您退货退款,请您提高警惕。
  5 + </span>
  6 +</div>
  1 +.fraud-tip {
  2 + background: #fff;
  3 + display: block;
  4 + padding: 20px 30px;
  5 + margin-bottom: 30px;
  6 + border-bottom: 1px solid #e0e0e0;
  7 +
  8 + .tip-title {
  9 + display: block;
  10 + height: 26px;
  11 + line-height: 26px;
  12 + color: #444;
  13 + font-size: 24px;
  14 + background-image: resolve("home/fraud-tip.png");
  15 + background-repeat: no-repeat;
  16 + background-size: auto 97%;
  17 + padding-left: 36px;
  18 + }
  19 +
  20 + .tip-content {
  21 + display: inline-block;
  22 + margin-top: 16px;
  23 + color: #b0b0b0;
  24 + font-size: 22px;
  25 + }
  26 +
  27 + .iconfont {
  28 + display: block;
  29 + color: #b0b0b0;
  30 + float: right;
  31 + height: 70px;
  32 + width: 30px;
  33 + line-height: 70px;
  34 + text-align: right;
  35 + }
  36 +}
@@ -220,6 +220,7 @@ @@ -220,6 +220,7 @@
220 .order-nav { 220 .order-nav {
221 border-bottom: 1px solid #e0e0e0; 221 border-bottom: 1px solid #e0e0e0;
222 background: #fff; 222 background: #fff;
  223 + border-top: 1px solid #e0e0e0;
223 224
224 a { 225 a {
225 display: block; 226 display: block;
1 @import "layout/swiper"; 1 @import "layout/swiper";
2 @import "order"; 2 @import "order";
3 @import "order-detail"; 3 @import "order-detail";
  4 +@import "fraud";
1 @import "order"; 1 @import "order";
  2 +@import "fraud";
2 @import "layout/swiper"; 3 @import "layout/swiper";