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
afff0d14
authored
Jan 25, 2019
by
朱继来
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调整钱包退款按钮
parent
9ddefb4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
resources/views/refundlist/content.blade.php
resources/views/refundlist/content.blade.php
View file @
afff0d14
...
@@ -41,6 +41,7 @@
...
@@ -41,6 +41,7 @@
<select
id=
"apply_status"
name=
"apply_status"
class=
"form-control apply_status selectpicker"
title=
"全部"
multiple
>
<select
id=
"apply_status"
name=
"apply_status"
class=
"form-control apply_status selectpicker"
title=
"全部"
multiple
>
<option
value=
"-1"
>
已拒绝
</option>
<option
value=
"-1"
>
已拒绝
</option>
<option
value=
"1"
>
待处理
</option>
<option
value=
"1"
>
待处理
</option>
<option
value=
"5"
>
已退款
</option>
<option
value=
"10"
>
已处理
</option>
<option
value=
"10"
>
已处理
</option>
</select>
</select>
</dd>
</dd>
...
@@ -107,7 +108,8 @@
...
@@ -107,7 +108,8 @@
<?php
<?php
switch
(
$v
[
'status'
])
{
switch
(
$v
[
'status'
])
{
case
-
1
:
echo
'<span class="list-text-cancel"><b>已拒绝</b></span>'
;
break
;
case
-
1
:
echo
'<span class="list-text-cancel"><b>已拒绝</b></span>'
;
break
;
case
1
:
echo
'<span class="list-text-checking"><b>待处理</b></span>'
;
break
;
case
1
:
echo
'<span class="list-text-checking"><b>待处理</b></span>'
;
break
;
case
5
:
echo
'<span class="list-text-checking"><b>已退款</b></span>'
;
break
;
case
10
:
echo
'<span class="list-text-success"><b>已处理</b></span>'
;
break
;
case
10
:
echo
'<span class="list-text-success"><b>已处理</b></span>'
;
break
;
}
}
?>
?>
...
@@ -120,7 +122,7 @@
...
@@ -120,7 +122,7 @@
<a
class=
"btn btn-primary"
href=
"/refund_details/{{$v['refund_id']}}"
target=
"_blank"
>
查看申请
</a>
<a
class=
"btn btn-primary"
href=
"/refund_details/{{$v['refund_id']}}"
target=
"_blank"
>
查看申请
</a>
<!-- 退款申请已处理且为钱包支付 -->
<!-- 退款申请已处理且为钱包支付 -->
@if ($v['status'] == 1
0
&&
strpos($pay_name, '钱包支付') !== false)
@if ($v['status'] == 1
&&
strpos($pay_name, '钱包支付') !== false)
<!-- <a class="btn btn-info wallet-refund" data-oid="{{$v['order_id']}}" data-amount="{{number_format($v['pay_amount'] - $v['price_fall'], 2)}}" target="_blank">钱包退款</a> -->
<!-- <a class="btn btn-info wallet-refund" data-oid="{{$v['order_id']}}" data-amount="{{number_format($v['pay_amount'] - $v['price_fall'], 2)}}" target="_blank">钱包退款</a> -->
<a
class=
"btn btn-info"
href=
"/wallet_refund/{{$v['refund_id']}}"
target=
"_blank"
>
钱包退款
</a>
<a
class=
"btn btn-info"
href=
"/wallet_refund/{{$v['refund_id']}}"
target=
"_blank"
>
钱包退款
</a>
@endif
@endif
...
...
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