Commit bd839ae2 authored by agping's avatar agping

视频审核 开业确定时间

parent 8bcc167d
......@@ -357,10 +357,10 @@
onClick="WdatePicker({el:this,dateFmt:'yyyy-MM-dd',minDate:'#F{ $dp.$D(\'into_time_start\')}',maxDate:'%y-%M-%d',readOnly:'readonly'})">
<span class="fore-span ld-Marheight">开业确定时间:</span>
<input id="into_time_start" class="form-control btn4 ld-Marheight" type="text"
<input id="open_time_start" class="form-control btn4 ld-Marheight" type="text"
onClick="WdatePicker({el:this,dateFmt:'yyyy-MM-dd',maxDate:'#F{ $dp.$D(\'into_time_end\')||\'%y-%M-%d\'}',readOnly:'readonly'})">
<span class="fore-span ld-Marheight">-</span>
<input id="into_time_end" class="form-control btn4 ld-Marheight" type="text"
<input id="open_time_end" class="form-control btn4 ld-Marheight" type="text"
onClick="WdatePicker({el:this,dateFmt:'yyyy-MM-dd',minDate:'#F{ $dp.$D(\'into_time_start\')}',maxDate:'%y-%M-%d',readOnly:'readonly'})">
<select class="form-control btn2 ld-Marheight" id="maintable_deal_type">
......
......@@ -101,6 +101,10 @@
<tr>
<td colspan="10">
<form id="form_search">
<span class="fore-span margin-left-10 ld-Marheight">视频上传时间:</span>
<input class="form-control btn4 ld-Marheight" value="" data-rule-phoneus="false" data-rule-required="false" id="maintable_create_time" name="start_date" type="date">
<span class="fore-span margin-left-10 ld-Marheight"></span>
<input class="form-control btn4 ld-Marheight" value="" data-rule-phoneus="false" data-rule-required="false" id="maintable_end_time" name="end_date" type="date">
<select class="form-control btn4 ld-Marheight input" name="" id="district_id">
<option value="">上传人所属部门</option>
</select>
......
......@@ -1262,7 +1262,8 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
var comit_name = $('#comit_name').val("");
var is_open = $('#is_open').val("-1");
var is_normality = $('#is_normality').val("0");
$('#open_time_start').val("");
$('#open_time_end').val("");
},
......@@ -1315,6 +1316,17 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
var paramsStr = "" ;
var is_open = $('#is_open').val();
var is_normality = $('#is_normality').val();
var open_time_start = $('#open_time_start').val();
var open_time_end = $('#open_time_end').val();
if ( open_time_start ) {
params.open_time_start = open_time_start;
paramsStr += "open_time_start=" + open_time_start + "&"
}
if ( open_time_end ) {
params.open_time_end = open_time_end;
paramsStr += "open_time_end=" + open_time_end + "&"
}
if ( commite_time_start ) {
params.start_time = commite_time_start;
paramsStr += "start_time=" + commite_time_start + "&"
......@@ -1495,6 +1507,8 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
doc.find("#tijiaoren").text(data.agent_name);
doc.find("#address").text(data.address);
doc.find("#comit_time").text(data.create_time);
doc.find("#open_time").text(data.open_time);//开业确定时间
//判断收款详情的类型
if(data.type == 91){
$('.agency_fees_type_hide').show();
......
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