|
|
|
@ -1006,6 +1006,7 @@ import {getAreaList, getBigGroupList, getCityList, getSmallGroupList} from "@/vi
|
|
|
|
|
import { |
|
|
|
|
getStore |
|
|
|
|
} from '@/util/store' |
|
|
|
|
|
|
|
|
|
const CITY = getStore({ |
|
|
|
|
name: 'city' |
|
|
|
|
}) |
|
|
|
@ -1296,10 +1297,10 @@ export default {
|
|
|
|
|
//成交楼面价(元/㎡) |
|
|
|
|
this.editForm.dealFloorPrice = (this.editForm.dealPrice * 10000 / this.editForm.totalConsArea).toFixed(0) |
|
|
|
|
} |
|
|
|
|
if (this.editForm.transferPrice && this.editForm.transferPrice != 0) { |
|
|
|
|
//溢价率 |
|
|
|
|
if (this.editForm.transferPrice && this.editForm.transferPrice != 0 && this.editForm.dealPrice && this.editForm.dealPrice != 0) { |
|
|
|
|
this.editForm.premiumRate = ((this.editForm.dealPrice - this.editForm.transferPrice) / this.editForm.transferPrice).toFixed(2) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
deep: true, |
|
|
|
|
}, |
|
|
|
|