editRebate.html
6.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<include file="public/min-header"/>
<div class="wrapper">
<include file="public/breadcrumb"/>
<section class="content">
<!-- Main content -->
<div class="container-fluid">
<div class="pull-right">
<a href="javascript:history.go(-1)" data-toggle="tooltip" title="" class="btn btn-default" data-original-title="返回"><i class="fa fa-reply"></i></a>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-list"></i> 获佣记录</h3>
</div>
<div class="panel-body">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab_tongyong" data-toggle="tab">获佣用户</a></li>
</ul>
<!--表单数据-->
<form method="post" id="editForm">
<!--通用信息-->
<div class="tab-content">
<div class="tab-pane active" id="tab_tongyong">
<table class="table table-bordered">
<tbody>
<tr>
<td>获佣用户id</td>
<td>
<a href="{:U('Admin/user/detail',array('id'=>$rebate_log[user_id]))}">{$rebate_log[user_id]}</a>
</td>
</tr>
<tr>
<td>获佣用户名</td>
<td>
{$rebate_log.user_name}
</td>
</tr>
<tr>
<td>获佣订单</td>
<td>
<a href="{:U('Admin/order/detail',array('order_id'=>$rebate_log[order_id]))}">{$rebate_log.order_sn}</a>
</td>
</tr>
<tr>
<td>获佣金额</td>
<td>
{$rebate_log.money}
</td>
</tr>
<tr>
<td>获佣用户级别</td>
<td>
{$rebate_log.level}
</td>
</tr>
<tr>
<td>分成记录生成时间</td>
<td>
{$rebate_log.create_time|date="Y-m-d H:i",###}
</td>
</tr>
<tr>
<td>状态</td>
<td>
<if condition="$rebate_log[status] eq 0">未付款</if>
<if condition="$rebate_log[status] eq 1">已付款</if>
<if condition="$rebate_log[status] eq 2">等待分成</if>
<if condition="$rebate_log[status] eq 3">已分成</if>
<if condition="$rebate_log[status] eq 4">已取消</if>
</td>
</tr>
<tr>
<td>确定分成或者取消时间</td>
<td>
{$rebate_log.create_time|date="Y-m-d H:i",###}
</td>
</tr>
<tr>
<td>备注</td>
<td>
<textarea rows="4" cols="60" id="remark" name="remark">{$rebate_log.remark}</textarea>
<span id="err_remark" style="color:#F00; display:none;"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pull-right">
<input type="hidden" name="id" value="{$rebate_log.id}">
<input type="hidden" name="user_id" value="{$rebate_log.user_id}">
<input type="hidden" id="status" name="status" value="{$rebate_log[status]}">
<if condition="$rebate_log[status] eq 2">
<button class="btn btn-primary" data-toggle="tooltip" type="button" onclick="confirm_rebate();">确定分成</button>
<button class="btn btn-primary" data-toggle="tooltip" type="button" onclick="cancel_rebate();">取消分成</button>
<else />
<button class="btn btn-primary" data-toggle="tooltip" type='submit'>修改备注</button>
</if>
</div>
</form><!--表单数据-->
</div>
</div>
</div> <!-- /.content -->
</section>
</div>
<script>
// 确定分成
function confirm_rebate()
{
if(!confirm('金额将直接转入用户余额,确定要分成吗?'))
return false;
if($.trim($('#remark').val()).length == 0)
{
alert('请填写分成备注');
return false;
}
$('#status').val('3');
$('#editForm').submit();
}
// 取消分成
function cancel_rebate()
{
if(!confirm('确定要取消分成吗?'))
return false;
if($.trim($('#remark').val()).length == 0)
{
alert('请填写取消备注');
return false;
}
$('#status').val('4');
$('#editForm').submit();
}
</script>
</body>
</html>