liujq 3 년 전
부모
커밋
b32b0ec987
4개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      dist/index.html
  2. 0 0
      dist/static/js/chunk-3f16517a.115947c2.js
  3. 0 0
      dist/static/js/chunk-3f16517a.ea9d5912.js
  4. 4 1
      src/views/house/price.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-3f16517a.115947c2.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-3f16517a.ea9d5912.js


+ 4 - 1
src/views/house/price.vue

@@ -51,7 +51,9 @@ export default {
   computed: {
     tableData2() {
       const arr = [...this.tableData]
-      arr.map(item => {})
+      arr.map(item => {
+        item.floor = `${item.cur_layer}/${item.layer}`
+      })
       return arr
     }
   },
@@ -63,6 +65,7 @@ export default {
     this.listConfig = {
       rows: [
         { label: '签约日期', prop: 'sign_at'},
+        { label: '楼层', prop: 'floor'},
         { label: '面积(㎡)', prop: 'area'},
         { label: '总价(万元)', prop: 'price'},
         { label: '单价(元)', prop: 'unit_price'},

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.