Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
4385575f
authored
Jan 14, 2019
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整退款申请跳转地址
parent
c01462a6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
public/js/order.js
resources/views/detail/content.blade.php
resources/views/detail/refund.blade.php
resources/views/refundlist/content.blade.php
public/js/order.js
View file @
4385575f
...
...
@@ -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
||
'网络异常'
);
...
...
resources/views/detail/content.blade.php
View file @
4385575f
...
...
@@ -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
...
...
resources/views/detail/refund.blade.php
View file @
4385575f
...
...
@@ -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>
...
...
resources/views/refundlist/content.blade.php
View file @
4385575f
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment