Commit e95419b9 authored by agping's avatar agping

1

parent 8706d06f
......@@ -529,7 +529,12 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
_doc.on('click', '.details-btn-liu', function() {
var _id = $(this).attr("data-id");
var _type = $(this).attr("data-typeC");
$('.iframe-bargaininfo-static').attr('src', '/app_broker/bargaininfo_detail_static_pc?orderid='+_id+'&type='+ _type).load;
if(_type == 2){
$('.iframe-bargaininfo-static').attr('src', '/app_broker/bargaininfo_detail_static_pc_office?orderid='+_id+'&type='+ _type).load;
}else{
$('.iframe-bargaininfo-static').attr('src', '/app_broker/bargaininfo_detail_static_pc?orderid='+_id+'&type='+ _type).load;
}
});
//时间轴点击事件
_doc.on('click', 'a[href="#modal-time-liu"]', function(e){
......@@ -537,7 +542,12 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
e.stopPropagation();
var _id = $(this).attr("data-id");
var _type = $(this).attr("data-typeC");
$('.iframe-time-line').attr('src', '/app_broker/timeline_pc?order_id='+_id+'&type='+ _type);
if(_type == 2){
$('.iframe-time-line').attr('src', '/app_broker/timeline_pc_office?order_id='+_id+'&type='+ _type);
}else{
$('.iframe-time-line').attr('src', '/app_broker/timeline_pc?order_id='+_id+'&type='+ _type);
}
});
//获取调整详情
$(document).on('click','.add-pic-liu',function(e){
......
......@@ -90,7 +90,7 @@ define(['doT', 'text!temp/inspectionRecordAllOffice_list_template_tpl.html', 'cs
var _packdata = $(this).closest('tr').attr('data-data');
e.preventDefault();
e.stopPropagation();
$('.iframe-submit-report').attr('src', '/app_broker/submit_report_pc?packdata=' + _packdata+'&type=2');
$('.iframe-submit-report').attr('src', '/app_broker/submit_report_pc_office?packdata=' + _packdata+'&type=2');
});
$("#search").click(function() { //搜索
record.getList(1);
......
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