Commit 141fcd4b authored by agping's avatar agping

退款修改

parent 3256dc6e
{layout name="global/frame_tpl" /} {layout name="global/frame_tpl" /}
<input type="hidden" class="page-load" id="stateMent" /> <input type="hidden" class="page-load" id="statementBackout" />
<style> <style>
#note_text{ #note_text{
width: 80%; width: 80%;
......
{layout name="global/frame_tpl" /} {layout name="global/frame_tpl" /}
<input type="hidden" class="page-load" id="reportList" /> <input type="hidden" class="page-load" id="waitBackout" />
<style> <style>
#note_text{ #note_text{
width: 80%; width: 80%;
...@@ -72,13 +72,12 @@ ...@@ -72,13 +72,12 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th class="text-center">提交时间</th> <th class="text-center">撤销提交时间</th>
<th class="text-center">商铺地址</th> <th class="text-center">商铺地址</th>
<th class="text-center">商铺名称</th> <th class="text-center">商铺名称</th>
<th class="text-center">成交客户</th> <th class="text-center">成交客户</th>
<th class="text-center">客户电话</th> <th class="text-center">客户电话</th>
<th class="text-center">应收佣金</th> <th class="text-center">撤销原因</th>
<th class="text-center">实收佣金</th>
<th class="text-center">操作</th> <th class="text-center">操作</th>
</tr> </tr>
</thead> </thead>
......
This diff is collapsed.
...@@ -427,7 +427,7 @@ define (['doT', 'text!temp/statement_backout_template_tpl.html', 'css!style/home ...@@ -427,7 +427,7 @@ define (['doT', 'text!temp/statement_backout_template_tpl.html', 'css!style/home
params.user_phone = $('#user_phone') .val();// params.user_phone = $('#user_phone') .val();//
$.ajax ({ $.ajax ({
url: '/index/reportListStatement/4',//获取列表 url: '/index/reportListUndone/6',//获取列表
type: 'GET', type: 'GET',
async: true, async: true,
data: params, data: params,
......
This diff is collapsed.
<script id="refund_list_tpl" type="text/template">
[% if(it) { %]
[% for(var item in it){ %]
<tr class="text-center">
<td>[%= it[item]['create_time'] %]</td>
<td>[%= it[item]['internal_address'] %]</td>
<td>[%= it[item]['internal_title'] %]</td>
<td>[%= it[item]['user_name'] %]</td>
<td>[%= it[item]['user_phone'] %]</td>
<td>[%= it[item]['commission'] %]</td>
<td>[%= it[item]['practical_fee'] %]</td>
<td>
<a class="btn1 btn-success edit" href="#modal-edit" data-toggle="modal" data-id='[%= it[item]["id"] %]'>驳回</a>
<a class="btn1 btn-success is_pass" href="#modal-pass" data-toggle="modal" data-id='[%= it[item]["id"] %]'>通过</a>
<a class="btn1 btn-success timeline" href="#modal-time" data-toggle="modal" data-id='[%= it[item]["id"] %]'>时间轴</a>
</td>
</tr>
[% } %]
[% }else{ %]
<tr>
<td colspan="8" style="text-align:center;"> 暂无数据</td>
</tr>
[% } %]
</script>
\ No newline at end of file
<script id="wait_backout_list_tpl" type="text/template">
[% if(it) { %]
[% for(var item in it){ %]
<tr class="text-center">
<td>[%= it[item]['create_time'] %]</td>
<td>[%= it[item]['internal_address'] %]</td>
<td>[%= it[item]['internal_title'] %]</td>
<td>[%= it[item]['user_name'] %]</td>
<td>[%= it[item]['user_phone'] %]</td>
<td>[%= it[item]['content'] %]</td>
<td>
<a class="btn1 btn-success edit" href="#modal-edit" data-toggle="modal" data-id='[%= it[item]["id"] %]'>编辑</a>
<a class="btn1 btn-success is_pass" href="#modal-pass" data-toggle="modal" data-id='[%= it[item]["id"] %]'>通过</a>
<a class="btn1 btn-success genjing" href="#modal-follow" data-toggle="modal" data-id='[%= it[item]["id"] %]' >跟进</a>
<a class="btn1 btn-success timeline" href="#modal-time" data-toggle="modal" data-id='[%= it[item]["id"] %]'>时间轴</a>
</td>
</tr>
[% } %]
[% }else{ %]
<tr>
<td colspan="8" style="text-align:center;"> 暂无数据</td>
</tr>
[% } %]
</script>
\ No newline at end of file
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 to comment