|
@@ -297,14 +297,14 @@ var vm = new Vue({
|
|
|
},
|
|
|
// 标准金额区间
|
|
|
inexactPriceChange: function (p) {
|
|
|
- console.info('inexactPriceChange')
|
|
|
- console.info(p)
|
|
|
+ this.filterState.entCapital = p
|
|
|
+ this.doSearch()
|
|
|
},
|
|
|
// 输入金额区间
|
|
|
exactPriceChange: function (p) {
|
|
|
- console.info('exactPriceChange')
|
|
|
this.$refs.entCapital.setState()
|
|
|
- console.info(p)
|
|
|
+ this.filterState.entCapital = [p.min + '-' + p.max]
|
|
|
+ this.doSearch()
|
|
|
},
|
|
|
zbFilterChange: function () {
|
|
|
if (this.power) {
|
|
@@ -356,7 +356,7 @@ var vm = new Vue({
|
|
|
matchType: this.filterState.searchType.join(','),
|
|
|
entArea: this.filterState.entArea.join(','),
|
|
|
entCity: this.filterState.entCity.join(','),
|
|
|
- entCapital: '',
|
|
|
+ entCapital: this.filterState.entCapital.join(','),
|
|
|
entType: this.filterState.entType.join(','),
|
|
|
entStatus: this.filterState.entStatus.join(','),
|
|
|
biddingArea: this.filterState.biddingArea,
|
|
@@ -365,7 +365,7 @@ var vm = new Vue({
|
|
|
pageSize: this.listState.pageSize,
|
|
|
pageNum: this.listState.pageNum - 1, // 当前页, 从0开始
|
|
|
}
|
|
|
-
|
|
|
+ // return console.info(JSON.stringify(data, null, 2))
|
|
|
if (!data.match.replace(/\s+/g, '')) return
|
|
|
|
|
|
this.listState.loading = true
|