6 changed files with 325 additions and 35 deletions
@ -0,0 +1,47 @@
|
||||
import request from '@/router/axios' |
||||
|
||||
// 查询楼盘
|
||||
export function queryHousingEstatesList(param) { |
||||
return request({ |
||||
url: '/api/housingestates/page', |
||||
method: 'get', |
||||
params: param |
||||
}) |
||||
} |
||||
|
||||
// 新增楼盘
|
||||
export function addHousingEstates(param) { |
||||
return request({ |
||||
url: '/api/housingestates', |
||||
method: 'post', |
||||
headers: {'Content-Type': 'application/json'}, |
||||
data: param |
||||
}) |
||||
} |
||||
|
||||
// 修改楼盘
|
||||
export function updateHousingEstates(param) { |
||||
return request({ |
||||
url: '/api/housingestates', |
||||
method: 'put', |
||||
headers: {'Content-Type': 'application/json'}, |
||||
data: param |
||||
}) |
||||
} |
||||
|
||||
// 通过id查询楼盘
|
||||
export function queryHousingEstatesByID(housingEstatesId) { |
||||
return request({ |
||||
url: '/api/housingestates/'+housingEstatesId, |
||||
method: 'get' |
||||
}) |
||||
} |
||||
|
||||
// 通过id删除楼盘
|
||||
export function delHousingEstatesByID(housingEstatesId) { |
||||
return request({ |
||||
url: '/api/housingestates/'+housingEstatesId, |
||||
method: 'delete' |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,105 @@
|
||||
<template> |
||||
<div class="normal_page"> |
||||
<div class="page_search"> |
||||
<span>上东汇楼盘基础信息</span> |
||||
<div> |
||||
<el-row> |
||||
<el-col :span="5"> |
||||
<span>楼盘名称:上东汇</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>公告编号:201254</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>城市:重庆</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>行政区:渝北区</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>特区:两江新区</span> |
||||
</el-col> |
||||
<el-col :span="4"> |
||||
<span>环线:三环</span> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row> |
||||
<el-col :span="5"> |
||||
<span>大组团:中央公园</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>小组团:中央公园北</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>操盘企业:金科51</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>合作商:美的49</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>经营企业:美的49</span> |
||||
</el-col> |
||||
</el-row> |
||||
<el-row> |
||||
<el-col :span="5"> |
||||
<span>开发企业:金科51+美的49</span> |
||||
</el-col> |
||||
<el-col :span="5"> |
||||
<span>经纬度(百度BD09):106.573631,29.743152</span> |
||||
</el-col> |
||||
</el-row> |
||||
</div> |
||||
</div> |
||||
<div class="page_content"> |
||||
<div class="page_content_head"> |
||||
</div> |
||||
<div class="page_content_table"> |
||||
<el-table |
||||
:data="tableData" |
||||
border |
||||
style="width: 100%" |
||||
ref="multipleTable" |
||||
v-loading="loading" |
||||
> |
||||
<el-table-column |
||||
v-for="(item, index) in cols" |
||||
:key="index" |
||||
:prop="item.prop" |
||||
:label="item.label" |
||||
:width="item.width" |
||||
:fixed="item.fixed" |
||||
:show-overflow-tooltip="item.hideMore" |
||||
> |
||||
</el-table-column> |
||||
</el-table> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
queryHousingEstatesList, |
||||
addHousingEstates, |
||||
updateHousingEstates, |
||||
queryHousingEstatesByID, |
||||
delHousingEstatesByID, |
||||
} from "@/views/housingestates/api"; |
||||
export default { |
||||
name: "", |
||||
data() { |
||||
return { |
||||
tableData: [], |
||||
// 列 |
||||
cols: [], |
||||
loading: false |
||||
}; |
||||
}, |
||||
methods:{ |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
</style> |
||||
|
Loading…
Reference in new issue