Authored by 周少峰

return

... ... @@ -28,7 +28,7 @@
{{/if}}
<div class="detail-container">
{{# express}}
<h2>{{noticeTitle}}</h2>
<h2>{{#if expressDeadLine}}请您在<span>{{expressDeadLine}}</span>前将商品寄回并填写物流,逾期将自动取消申请 {{^}}请填写寄回快递单号,以便我们查询{{/if}}</h2>
<div class="courier-code{{#unless id}} in-edit{{/unless}}">
{{#with detail}}
<ul style="display: none;">
... ...
... ... @@ -59,6 +59,9 @@
color: #333;
font-weight: 400;
margin-bottom: 10px;
span {
color: #e8044f;
}
}
.courier-code {
margin: 60px auto;
... ...
... ... @@ -155,7 +155,7 @@ class ReturnsModel
$detail['express']['id'] = isset($res['notice']['express_id']) ? $res['notice']['express_id'] : '';
$detail['express']['company'] = isset($res['notice']['express_company']) ? $res['notice']['express_company'] : '';
$detail['express']['number'] = isset($res['notice']['express_number']) ? $res['notice']['express_number'] : '';
$detail['express']['noticeTitle'] = isset($res['notice']['title']) ? $res['notice']['title'] : '';
$detail['express']['expressDeadLine'] = isset($res['notice']['date']) ? $res['notice']['date'] : '';
}
foreach ($res['statusList'] as $key => $value) {
$detail['statusList'][$key]['act'] = ($value['act'] == 'Y') ? true : false;
... ...