|
|
@ -174,9 +174,9 @@
|
|
|
|
<if condition="$vo['status'] eq 2">
|
|
|
|
<if condition="$vo['status'] eq 2">
|
|
|
|
<a data-href="{:U('download/Remittancecer',['id'=>$vo['id']])}" class="ajax-get">汇款证明</a>
|
|
|
|
<a data-href="{:U('download/Remittancecer',['id'=>$vo['id']])}" class="ajax-get">汇款证明</a>
|
|
|
|
<elseif condition="$vo['status'] eq -1"/>
|
|
|
|
<elseif condition="$vo['status'] eq -1"/>
|
|
|
|
<a href="{:U('settlementOrder', array('id'=>$vo['id']))}" style="color: #0bb20c;">重新审核</a>
|
|
|
|
<span class="renew-review" data-id="{$vo['id']}" style="color: #0bb20c;cursor: pointer;">重新审核</span>
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
<a href="{:U('renewReview', array('id'=>$vo['id']))}">结算单</a>
|
|
|
|
<a href="{:U('settlementOrder', array('id'=>$vo['id']))}">结算单</a>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</volist>
|
|
|
|
</volist>
|
|
|
@ -269,6 +269,30 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$(".select_gallery").select2();
|
|
|
|
$(".select_gallery").select2();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('.renew-review').click(function () {
|
|
|
|
|
|
|
|
var id = parseInt($(this).attr('data-id'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
type: 'post',
|
|
|
|
|
|
|
|
url: '{:U("renewReview")}',
|
|
|
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
|
|
|
data: {id:id},
|
|
|
|
|
|
|
|
success: function (data) {
|
|
|
|
|
|
|
|
if (data.status == 1) {
|
|
|
|
|
|
|
|
layer.msg(data.msg, {icon: 1});
|
|
|
|
|
|
|
|
setTimeout(function(){
|
|
|
|
|
|
|
|
window.location.reload();
|
|
|
|
|
|
|
|
},2000);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
layer.msg(data.msg, {icon: 5});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error: function (result) {
|
|
|
|
|
|
|
|
layer.msg('网络异常', {icon: 5});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|