|
|
|
@ -625,9 +625,20 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6" v-if="editForm.deal == '1'"> |
|
|
|
|
<el-form-item label="成交楼面价(元/㎡):"> |
|
|
|
|
<el-input-number controls-position="right" :precision="zero" |
|
|
|
|
v-model="editForm.dealFloorPrice"></el-input-number> |
|
|
|
|
<el-form-item label="出让方式:"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="editForm.transferMode" |
|
|
|
|
placeholder="请选择" |
|
|
|
|
style="width: 100%" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in transferModeList" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6" v-if="editForm.deal == '1'"> |
|
|
|
@ -645,23 +656,6 @@
|
|
|
|
|
</el-row> |
|
|
|
|
<template v-if="editForm.deal == '1'"> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
<el-form-item label="出让方式:"> |
|
|
|
|
<el-select |
|
|
|
|
v-model="editForm.transferMode" |
|
|
|
|
placeholder="请选择" |
|
|
|
|
style="width: 100%" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in transferModeList" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.label" |
|
|
|
|
:value="item.value" |
|
|
|
|
> |
|
|
|
|
</el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
<el-form-item label="受让单位:"> |
|
|
|
|
<el-input v-model="editForm.assignee"></el-input> |
|
|
|
@ -678,6 +672,12 @@
|
|
|
|
|
v-model="editForm.dealPrice"></el-input-number> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="6"> |
|
|
|
|
<el-form-item label="成交楼面价(元/㎡):"> |
|
|
|
|
<el-input-number controls-position="right" :precision="zero" |
|
|
|
|
v-model="editForm.dealFloorPrice"></el-input-number> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="6"> |
|
|
|
@ -1536,7 +1536,7 @@ export default {
|
|
|
|
|
"controlChart": "", |
|
|
|
|
"createDate": "", |
|
|
|
|
"createUserId": "", |
|
|
|
|
"deal": 0, |
|
|
|
|
"deal": "0", |
|
|
|
|
"dealFloorPrice": 0, |
|
|
|
|
"dealPrice": 0, |
|
|
|
|
"developmentScheme": "", |
|
|
|
@ -1701,12 +1701,6 @@ export default {
|
|
|
|
|
getDict("projectStatus").then((res) => { |
|
|
|
|
this.projectStatusList = res.data.data; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// let newObj = {}; |
|
|
|
|
// for (let col of this.cols) { |
|
|
|
|
// newObj[col.prop] = ""; |
|
|
|
|
// } |
|
|
|
|
// this.editForm = newObj; |
|
|
|
|
if (this.$route.query.readOnly === "true") { |
|
|
|
|
this.readOnly = true; |
|
|
|
|
let row = this.$route.query.data; |
|
|
|
@ -1747,7 +1741,7 @@ export default {
|
|
|
|
|
this.editForm.landTransferMu = ( |
|
|
|
|
(this.editForm.landTransferSquare / 2000) * |
|
|
|
|
3 |
|
|
|
|
).toFixed(2); |
|
|
|
|
).toFixed(0); |
|
|
|
|
//容积率 |
|
|
|
|
this.editForm.plotRatio = ( |
|
|
|
|
this.editForm.totalConsArea / this.editForm.landTransferSquare |
|
|
|
@ -1755,7 +1749,7 @@ export default {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (this.editForm.totalConsArea && this.editForm.totalConsArea != 0) { |
|
|
|
|
//商务面积占比(%) |
|
|
|
|
//商业商务占比(%) |
|
|
|
|
this.editForm.bizCommerceRate = ( |
|
|
|
|
((this.editForm.bizSpace + this.editForm.commerceSpace) / |
|
|
|
|
this.editForm.totalConsArea) * |
|
|
|
@ -1765,7 +1759,9 @@ export default {
|
|
|
|
|
this.editForm.startingFloorPrice = ( |
|
|
|
|
(this.editForm.transferPrice * 10000) / |
|
|
|
|
this.editForm.totalConsArea |
|
|
|
|
).toFixed(2); |
|
|
|
|
).toFixed(0); |
|
|
|
|
//成交楼面价(元/㎡) |
|
|
|
|
this.editForm.dealFloorPrice = (this.editForm.dealPrice * 10000 / this.editForm.totalConsArea).toFixed(0) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
deep: true, |
|
|
|
|