Commit 4385575f by 朱继来

调整退款申请跳转地址

parent c01462a6
......@@ -1919,7 +1919,7 @@
if(resp.errcode === 0){
layer.msg(resp.errmsg || '操作成功');
setTimeout(function(){
location.href = url;
location.href = '/details/' + order_id; // 退款列表
}, 1000);
} else {
layer.alert(resp.errmsg || '网络异常');
......
......@@ -495,6 +495,12 @@
<td>{{$currency . number_format($v['refund_num'] * $v['single_pre_price'], 4)}}</td>
</tr>
@endforeach
<tr>
<td>手动差价</td>
<td></td>
<td></td>
<td>{{'-' . $order_refund_info['price_fall']}}</td>
</tr>
</tbody>
</table>
@endif
......
......@@ -68,7 +68,7 @@
<tr>
<th>调整差价</th>
<td><input class="only_number float_num price_fall" name="price_fall" value="0"></td>
<td><span> - </span><input class="only_number float_num price_fall" name="price_fall" value="0"></td>
</tr>
<tr>
......
......@@ -98,7 +98,7 @@
}
?>
</td>
<td class="show-list">{{$v['update_time'] ? date('Y-m-d H:i:s', $v['update_time']) : ''}}</td>
<td class="show-list">{{$v['refund_time'] ? date('Y-m-d H:i:s', $v['refund_time']) : ''}}</td>
<td>
<div class="btn-group btn-group-xs">
<a class="btn btn-primary" href="/refund_details/{{$v['refund_id']}}" target="_blank">查看申请</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment