230320a303 1 年之前
父节点
当前提交
762bbec292

文件差异内容过多而无法显示
+ 0 - 0
dist/index.html


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/chunk-656b80e2.79f9639e.css


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.b32b41d9.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/chunk-45dbef07.102d4d37.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/chunk-656b80e2.f7637286.js


+ 11 - 0
src/views/room/components/popup/IndexEdit.vue

@@ -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' },
         ]

部分文件因为文件数量过多而无法显示