|
|
@@ -49,8 +49,8 @@
|
|
|
<a table-data="{'url':'store/taxiuserwithdraw/plectron','action':'put',param:{'status': 30}}" confirm class="layui-btn layui-btn-sm layui-icon layui-icon-pause table-toolbar-btn"> 驳回</a>
|
|
|
<a table-data="{'url':'store/taxiuserwithdraw/plectron','action':'delete'}" confirm class="layui-btn layui-btn-sm layui-icon layui-icon-close table-toolbar-btn"> 删除</a>
|
|
|
|
|
|
- <span class="total" style="margin-left: 10px;">累计待审核:¥{{data.counts.wait}}</span>
|
|
|
- <span class="total" style="margin-left: 10px;">累计提现:¥{{data.counts.success}}</span>
|
|
|
+ <span class="total" style="margin-left: 10px;">累计待审核:¥<em id="countWait"></em></span>
|
|
|
+ <span class="total" style="margin-left: 10px;">累计提现:¥ <em id="countSuccess"></em></span>
|
|
|
</div>
|
|
|
</script>
|
|
|
|
|
|
@@ -137,7 +137,10 @@
|
|
|
{field: 'status', templet: '#tableStateWithdraw', title: '状态', width: 120},
|
|
|
{fixed:'right', align: 'center', toolbar: '#tableBarWithdraw', title: '操作', minWidth: 200}
|
|
|
]],
|
|
|
- done:function () {
|
|
|
+ done:function (res) {
|
|
|
+ console.log(res)
|
|
|
+ $("#countWait").text(res.counts.wait)
|
|
|
+ $("#countSuccess").text(res.counts.success)
|
|
|
admin.renderPerm()
|
|
|
}
|
|
|
});
|