|
@@ -113,7 +113,15 @@
|
|
|
<el-button class="xl-form-btn t2" @click="close">关 闭</el-button>
|
|
|
<el-button class="xl-form-btn t1" @click="close('confirm')">确定</el-button>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div slot="otherItem" style="padding-left: 100px">
|
|
|
+ <div v-for="(op, index) in historyPriceList" :key="index">{{ op.des }}</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
</base-form>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</el-dialog>
|
|
|
<handle-map :is-show="isShowMap" @close="closeMap" />
|
|
|
</div>
|
|
@@ -148,6 +156,7 @@ export default {
|
|
|
fileConfig: {},
|
|
|
fileNextResObj: {},
|
|
|
fileCompleteResObj: {},
|
|
|
+ historyPriceList: [],
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
@@ -162,6 +171,7 @@ export default {
|
|
|
this.loading = true
|
|
|
this.$api.house.admeshousedetail({id: this.curObj.id}).then(res => {
|
|
|
let cObj = res || {}
|
|
|
+ this.historyPriceList = cObj.history_price ? JSON.parse(cObj.history_price) : []
|
|
|
this.imagesArr = cObj.images ? cObj.images.split(',') : []
|
|
|
this.cObj = {...cObj}
|
|
|
this.getDef()
|
|
@@ -327,6 +337,7 @@ export default {
|
|
|
{ keyRO: params.sale_name, valRO: params.sale_id }
|
|
|
]
|
|
|
},
|
|
|
+ { label: '销售状态', key: 'is_sold', class: 'c-3', type: 'select', options: this.$dictData.sys_yesno },
|
|
|
{ label: '(对外展示)房源简介', key: 'introduce', type: 'textarea' },
|
|
|
{ label: '备注', key: 'remarked', type: 'textarea' },
|
|
|
]
|