|
@@ -237,16 +237,36 @@
|
|
this.infos[0].value = this.timeFilterAction(this.dataInfo.openTime)
|
|
this.infos[0].value = this.timeFilterAction(this.dataInfo.openTime)
|
|
this.infos[1].value = this.dataInfo.bizFormat
|
|
this.infos[1].value = this.dataInfo.bizFormat
|
|
if (this.dataInfo.maxPrice > 0) {
|
|
if (this.dataInfo.maxPrice > 0) {
|
|
- this.infos[2].value = this.priceReload(this.dataInfo.minPrice) + '~' + this.priceReload(this.dataInfo
|
|
|
|
- .maxPrice) + '/m²'
|
|
|
|
|
|
+ if (this.dataInfo.minPrice > 0) {
|
|
|
|
+ this.infos[2].value = this.priceReload(this.dataInfo.minPrice) + '~' + this.priceReload(this.dataInfo
|
|
|
|
+ .maxPrice) + '/m²'
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ this.infos[2].value = this.priceReload(this.dataInfo.maxPrice) + '/m²'
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
- this.infos[2].value = this.priceReload(this.dataInfo.minPrice) + '/m²'
|
|
|
|
|
|
+ if (this.dataInfo.minPrice > 0) {
|
|
|
|
+ this.infos[2].value = this.priceReload(this.dataInfo.minPrice) + '/m²'
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ this.infos[2].value = '暂无'
|
|
|
|
+ }
|
|
}
|
|
}
|
|
if (this.dataInfo.maxTotalPrice > 0) {
|
|
if (this.dataInfo.maxTotalPrice > 0) {
|
|
- this.infos[3].value = this.priceReload(this.dataInfo.minTotalPrice) + '~' + this.priceReload(this
|
|
|
|
- .dataInfo.maxTotalPrice) + '/套'
|
|
|
|
|
|
+ if (this.dataInfo.minTotalPrice > 0) {
|
|
|
|
+ this.infos[3].value = this.priceReload(this.dataInfo.minTotalPrice) + '~' + this.priceReload(this
|
|
|
|
+ .dataInfo.maxTotalPrice) + '/套'
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ this.infos[3].value = this.priceReload(this.dataInfo.maxTotalPrice) + '/套'
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
- this.infos[3].value = this.priceReload(this.dataInfo.minTotalPrice) + '/套'
|
|
|
|
|
|
+ if (this.dataInfo.minTotalPrice > 0) {
|
|
|
|
+ this.infos[3].value = this.priceReload(this.dataInfo.minTotalPrice) + '/套'
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ this.infos[3].value = '暂无'
|
|
|
|
+ }
|
|
}
|
|
}
|
|
this.infos[4].value = this.dataInfo.mainHouseType
|
|
this.infos[4].value = this.dataInfo.mainHouseType
|
|
// this.infos[5].value = this.dataInfo.cusGroup
|
|
// this.infos[5].value = this.dataInfo.cusGroup
|