Showing
2 changed files
with
46 additions
and
0 deletions
@@ -267,4 +267,28 @@ | @@ -267,4 +267,28 @@ | ||
267 | .btn-rebuy { | 267 | .btn-rebuy { |
268 | margin-left: 10px; | 268 | margin-left: 10px; |
269 | } | 269 | } |
270 | + | ||
271 | + .invoice-info { | ||
272 | + margin: 20px 0; | ||
273 | + border-top: 1px solid #e0e0e0; | ||
274 | + border-bottom: 1px solid #e0e0e0; | ||
275 | + background: #fff; | ||
276 | + padding: 30px; | ||
277 | + box-sizing: border-box; | ||
278 | + overflow: hidden; | ||
279 | + | ||
280 | + span { | ||
281 | + font-size: 28px; | ||
282 | + color: #444; | ||
283 | + line-height: 40px; | ||
284 | + } | ||
285 | + | ||
286 | + .invoice-fr { | ||
287 | + float: right; | ||
288 | + } | ||
289 | + | ||
290 | + .invoice-see { | ||
291 | + color: #d0021b; | ||
292 | + } | ||
293 | + } | ||
270 | } | 294 | } |
@@ -71,6 +71,28 @@ | @@ -71,6 +71,28 @@ | ||
71 | </p> | 71 | </p> |
72 | {{/if}} | 72 | {{/if}} |
73 | 73 | ||
74 | + {{#invoice}} | ||
75 | + <ul class="invoice-info"> | ||
76 | + <li> | ||
77 | + <span>发票信息</span> | ||
78 | + <span class="invoice-fr">{{#if type}}电子发票{{else}}纸质发票{{/if}}</span> | ||
79 | + </li> | ||
80 | + <li> | ||
81 | + <span>发票抬头</span> | ||
82 | + <span class="invoice-fr">{{title}}</span> | ||
83 | + </li> | ||
84 | + <li> | ||
85 | + <span>发票内容</span> | ||
86 | + <span class="invoice-fr">{{contentValue}}</span> | ||
87 | + </li> | ||
88 | + {{#if pdfUrl}} | ||
89 | + <li> | ||
90 | + <a href="{{pdfUrl}}"><span class="invoice-fr invoice-see">点击下载PDF发票</span></a> | ||
91 | + </li> | ||
92 | + {{/if}} | ||
93 | + </ul> | ||
94 | + {{/invoice}} | ||
95 | + | ||
74 | <div class="opt block"> | 96 | <div class="opt block"> |
75 | {{#unless unreceived}} | 97 | {{#unless unreceived}} |
76 | {{#unless unpaid}} | 98 | {{#unless unpaid}} |
-
Please register or login to post a comment