Commit 0fb04a51 authored by agping's avatar agping

2

parent f4fd1d6d
......@@ -220,7 +220,6 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
if(data.code == 200) {
$('.modal').modal("hide");
refund.getList(that.pageNo);
$('#container_body_img_area3').empty();
} else {
alert(data.msg);
}
......@@ -255,17 +254,19 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
tag += '</div>';
}
$('.check_person').append(tag);
refund.status = data.data.status;
var str = '' ;
if (data.data.status == 1) {
str = '总监已审';
$(".pass").html("财务一级审核");
$(".pass").show();
refund.status = 2;
} else if (data.data.status == 2) {
str = '财务一级审核通过';
$(".pass").html("财务二级审核");
$(".pass").show();
refund.status = 3;
} else if (data.data.status == 3) {
str = '财务二级审核通过';
......
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