Merge branch 'feature/fraud' into 'release/5.6'
防诈骗提示 See merge request !478
Showing
8 changed files
with
49 additions
and
0 deletions
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"> |
apps/home/views/partial/fraud.hbs
0 → 100644
public/img/home/fraud-tip.png
0 → 100644

541 Bytes
public/scss/home/_fraud.css
0 → 100644
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 | +} |
-
Please register or login to post a comment