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