Commit 9e7f24f8 authored by agping's avatar agping

1

parent 8563f642
...@@ -1301,7 +1301,7 @@ ...@@ -1301,7 +1301,7 @@
</div> </div>
</div> </div>
<div class="col-xs-12"> <div class="col-xs-12">
<div class="col-xs-6 ky"> <div class="col-xs-6 ky" style="display: none;">
<div class="form-group"> <div class="form-group">
<strong><span class="col-xs-3 ld-Marheight">是否开业:</span></strong> <strong><span class="col-xs-3 ld-Marheight">是否开业:</span></strong>
<div class="col-xs-6"> <div class="col-xs-6">
...@@ -1328,7 +1328,7 @@ ...@@ -1328,7 +1328,7 @@
</div> </div>
</div> </div>
<div class="col-xs-12"> <div class="col-xs-12">
<div class="col-xs-6 ky"> <div class="col-xs-6 ky" style="display: none;">
<div class="form-group"> <div class="form-group">
<strong><span class="col-xs-3 ld-Marheight">开业确定时间:</span></strong> <strong><span class="col-xs-3 ld-Marheight">开业确定时间:</span></strong>
<!--<div class="col-xs-6">--> <!--<div class="col-xs-6">-->
...@@ -1829,7 +1829,7 @@ ...@@ -1829,7 +1829,7 @@
</div> </div>
<div class="col-xs-6 choose_topic_1"> <div class="col-xs-6 choose_topic_1">
<div class="form-group"> <div class="form-group tiaozheng_kaiye" style="display: none;">
<strong><span class="col-xs-4 ld-Marheight">是否开业:</span></strong> <strong><span class="col-xs-4 ld-Marheight">是否开业:</span></strong>
<div class="col-xs-6"> <div class="col-xs-6">
<select class="form-control " id="change_kaiye"> <select class="form-control " id="change_kaiye">
......
...@@ -555,6 +555,13 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl ...@@ -555,6 +555,13 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
$(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;
bargain.isOffice = $(this).attr("data-typeC");//标识商铺 办公楼 bargain.isOffice = $(this).attr("data-typeC");//标识商铺 办公楼
//调整详情 隐藏是否开业
if(bargain.isOffice == 1){
$(".tiaozheng_kaiye").show();
}else{
$(".tiaozheng_kaiye").hide();
}
var type = e.target.dataset.type ; var type = e.target.dataset.type ;
var order_id = e.target.dataset.order_id ; var order_id = e.target.dataset.order_id ;
that.type_num = e.target.dataset.type_num; that.type_num = e.target.dataset.type_num;
...@@ -1653,10 +1660,14 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl ...@@ -1653,10 +1660,14 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
$('.xqac').hide(); $('.xqac').hide();
} }
if ( data.type == 10 || data.type == 30) { if ( data.type == 10 || data.type == 30) {
$('.ky').hide(); if(bargain.isOffice == 1){//商铺才执行的操作
$('.ky').hide();
}
$('.shout').show(); $('.shout').show();
} else { } else {
$('.ky').show(); if(bargain.isOffice == 1){//商铺才执行的操作
$('.ky').show();
}
$('.shout').hide(); $('.shout').hide();
} }
if ( data.type == 91 ){ if ( data.type == 91 ){
...@@ -2215,6 +2226,7 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl ...@@ -2215,6 +2226,7 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
$('.rep').show(); $('.rep').show();
$('#into_id_change').attr("readonly","readonly"); $('#into_id_change').attr("readonly","readonly");
} }
}, },
//将li里的值 赋给input(分佣方姓名) //将li里的值 赋给input(分佣方姓名)
intoIdBuild: function(obj) {//新增客户 input赋值 intoIdBuild: function(obj) {//新增客户 input赋值
......
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