|
@@ -16,11 +16,11 @@
|
|
|
<div class="sp-item" v-for="(product, one) in productData" :key="one">
|
|
|
<div class="sp-title">{{product.product_type_name}}</div>
|
|
|
<div class="sp-content">
|
|
|
- <el-form-item label="产品最低价">
|
|
|
- <el-input v-model="product.price_min" placeholder="请输入产品类型最低价"></el-input>
|
|
|
+ <el-form-item label="产品最低单价">
|
|
|
+ <el-input v-model="product.price_min" placeholder="请输入产品类型最低单价"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="产品最高价">
|
|
|
- <el-input v-model="product.price_max" placeholder="请输入产品类型最高价"></el-input>
|
|
|
+ <el-form-item label="产品最高单价">
|
|
|
+ <el-input v-model="product.price_max" placeholder="请输入产品类型最高单价"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="户型">
|
|
|
<el-select v-model="product.house_type_list_val" placeholder="请选择" :multiple="true" @change="houseTypeChange(one)">
|
|
@@ -279,8 +279,8 @@ export default {
|
|
|
{ label: '楼栋数', key: 'seat_sum', class: 'c-3', type: 'inputFont', appendFont: '栋' },
|
|
|
{ label: '产权年限', key: 'ownership', class: 'c-3' },
|
|
|
{ label: '初次交付时间', key: 'deliver_time', class: 'c-3', type: 'datePicker', type2: 'month', valueFormat: 'yyyy-MM'},
|
|
|
- { label: '价格区间', key: 'price_range', class: 'c-3' },
|
|
|
- { label: '户型面积区间', key: 'built_area', class: 'c-3' },
|
|
|
+ { label: '单价区间', key: 'price_range', class: 'c-3', type: 'inputFont', appendFont: '/㎡' },
|
|
|
+ { label: '户型面积区间', key: 'built_area', class: 'c-3', type: 'inputFont', appendFont: '㎡' },
|
|
|
{ label: '产品类型', key: 'product_type', type: 'select', options: this.$dictData.product_type, multiple: true, changeHandle: this.productTypeChange},
|
|
|
// { label: '房型', key: 'house_type', type: 'select', options: this.$dictData.house_type, multiple: true},
|
|
|
// { label: '面积', label2: '多个面积英文逗号,分开(如:100,120)', key: 'house_area', type: 'inputFont', appendFont: '㎡'},
|
|
@@ -332,6 +332,9 @@ export default {
|
|
|
if (newForm.metro_line) newForm.metro_line = newForm.metro_line.join(',')
|
|
|
if (newForm.metro_type) newForm.metro_type = newForm.metro_type.join(',')
|
|
|
let productData = this.productData || []
|
|
|
+ newForm.custom_tag = newForm.custom_tag.replace(',', ',')
|
|
|
+ newForm.stairs_rate = newForm.stairs_rate.replace(',', ',')
|
|
|
+
|
|
|
productData.map(one => {
|
|
|
const houseTypeList = one.house_type_list || []
|
|
|
houseTypeList.map(two => {
|