Commit 396f1448 authored by agping's avatar agping

1

parent 371e61cb
......@@ -1141,6 +1141,7 @@
<option value="70" class="shanghaipayType">银满谷银行卡</option>
<option value="73" class="shanghaipayType">新同联福居银行卡</option>
<option value="41" class="shanghaipayType">世家公账</option>
<option value="72" class="shanghaipayType">林老师建行卡</option>
<option value="11" class="hangzhoupayType">林老师支付宝</option>
......
......@@ -1832,18 +1832,20 @@ define(['doT', 'text!temp/financial_manager_daily_list_template_tpl.html', 'css!
search_phone : function(){//成交报告id 下拉列表
var that = bargain ;
$.ajax({
url: '/broker/bargainMain',
url: '/index/bargainListSearchBargainId',
type: 'GET',
async: true,
data: {
// "keyword": $("#report_id_change").val(),
"bargain_id": $("#report_id_change").val(),
'status' : 0,
"keyword": $("#report_id_change").val(),
"type": 3,
'status' : 5,
'is_my_correlation' : 0,
'page_no' : 1,
'page_size' : 20 ,
'AuthToken' : JSON.parse(decodeURIComponent(localStorage.getItem('pcUserInfo'))).AuthToken,
'submit_agent_id' : 0
'submit_agent_id' : JSON.parse(decodeURIComponent(localStorage.getItem('pcUserInfo'))).id
//'AuthToken' : JSON.parse(decodeURIComponent(localStorage.getItem('pcUserInfo'))).AuthToken,
//"bargain_id": $("#report_id_change").val(),
//'submit_agent_id' : 0
},
dataType: 'json',
success: function(data) {
......
......@@ -10,11 +10,25 @@
<td>[%= it[item]['user_phone'] %]</td>
<td>[%= it[item]['city'] %][%= it[item]['disc'] %][%= it[item]['business_district_name'] %]</td>
<td>[%= it[item]['industry_type'] %]</td>
<td>[%= it[item]['area_start'] %]-[%= it[item]['area_end'] %]</td>
[% if(it[item]['area_start'] > it[item]['area_end']){ %]
<td>[%= it[item]['area_start'] %]以上</td>
[% }else{ %]
<td>[%= it[item]['area_start'] %]-[%= it[item]['area_end'] %]</td>
[% } %]
[% if(it[item]['price_type'] == 1){ %]
<td>[%= it[item]['price_start'] %]-[%= it[item]['price_end'] %]//m²</td>
[% if(it[item]['price_start'] > it[item]['price_end']){ %]
<td>[%= it[item]['price_start'] %]以上元//m²</td>
[% }else{ %]
<td>[%= it[item]['price_start'] %]-[%= it[item]['price_end'] %]//m²</td>
[% } %]
[% }else{ %]
<td>[%= it[item]['price_start'] %]-[%= it[item]['price_end'] %]/</td>
[% if(it[item]['price_start'] > it[item]['price_end']){ %]
<td>[%= it[item]['price_start'] %]以上元/</td>
[% }else{ %]
<td>[%= it[item]['price_start'] %]-[%= it[item]['price_end'] %]/</td>
[% } %]
[% } %]
<td>
......
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