Commit 995a8ebf authored by duxinyuan's avatar duxinyuan

修改调整商铺ID

parent 75200f79
...@@ -484,7 +484,7 @@ ...@@ -484,7 +484,7 @@
</div> </div>
<div class="col-xs-12" > <div class="col-xs-12" >
<div class="form-group"> <div class="form-group">
<strong><span class="col-xs-2 ld-Marheight">调整后带看ID:</span></strong> <strong><span class="col-xs-2 ld-Marheight" id="order_title">调整后带看ID:</span></strong>
<div class="col-xs-9" style="padding:0px 10px 0px 5px;"> <div class="col-xs-9" style="padding:0px 10px 0px 5px;">
<input class="form-control" type="text" value="" id="into_id_change" data-status="100" autocomplete="off" /> <input class="form-control" type="text" value="" id="into_id_change" data-status="100" autocomplete="off" />
<ul class="intoIdArea" style="display:none" data-status="100"></ul></div> <ul class="intoIdArea" style="display:none" data-status="100"></ul></div>
......
...@@ -52,6 +52,9 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css', ...@@ -52,6 +52,9 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
$('.pic-con2').show(); $('.pic-con2').show();
$('.pic-con1').hide(); $('.pic-con1').hide();
/*
* 收款图片功能
*/
$('.tit_con').unbind('click').bind('click',function(e){ $('.tit_con').unbind('click').bind('click',function(e){
$(this).parent('div').find('h4.active').removeClass("active"); $(this).parent('div').find('h4.active').removeClass("active");
$(this).addClass("active"); $(this).addClass("active");
...@@ -174,13 +177,17 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css', ...@@ -174,13 +177,17 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
e.stopPropagation(); e.stopPropagation();
$('.iframe-time-line').attr('src', '/app_broker/timeline_pc?order_id=' + house_id); $('.iframe-time-line').attr('src', '/app_broker/timeline_pc?order_id=' + house_id);
}); });
//操作----收款详情 //操作----收款详情
$(document).on('click','.add-pic',function(e){ $(document).on('click','.add-pic',function(e){
var id = e.target.dataset.id; var id = e.target.dataset.id;
//获取收款详情单条数据
that.getMoneyDetail(id); that.getMoneyDetail(id);
that.house_fatherid = id; that.house_fatherid = id;
//获取图片
that.getaddPicList(id); that.getaddPicList(id);
}); });
//操作---调整 //操作---调整
$(document).on('click','.money_change',function(e){ $(document).on('click','.money_change',function(e){
var id = e.target.dataset.id; var id = e.target.dataset.id;
...@@ -640,16 +647,19 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css', ...@@ -640,16 +647,19 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
$('.choose_topic_2').show(); $('.choose_topic_2').show();
$('.rep').hide(); $('.rep').hide();
$("#into_id_change").removeAttr("readOnly") $("#into_id_change").removeAttr("readOnly")
$("#order_title").text("调整商铺ID")
} else if ( val == '保管金' ) { } else if ( val == '保管金' ) {
$('.choose_topic_1').hide(); $('.choose_topic_1').hide();
$('.choose_topic_2').show(); $('.choose_topic_2').show();
$('.rep').hide(); $('.rep').hide();
$("#into_id_change").removeAttr("readOnly") $("#into_id_change").removeAttr("readOnly")
$("#order_title").text("调整商铺ID")
} else { } else {
$('.choose_topic_2').hide(); $('.choose_topic_2').hide();
$('.choose_topic_1').show(); $('.choose_topic_1').show();
$('.rep').show(); $('.rep').show();
$('#into_id_change').attr("readonly","readonly"); $('#into_id_change').attr("readonly","readonly");
$("#order_title").text("调整后带看ID");
} }
}, },
......
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