Browse Source

no message

develop
王健 4 years ago
parent
commit
e737d04b20
  1. 4
      src/views/land/handLand/newLand.vue
  2. 5
      src/views/land/noneHandLand/newLand.vue

4
src/views/land/handLand/newLand.vue

@ -1789,10 +1789,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,
},

5
src/views/land/noneHandLand/newLand.vue

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

Loading…
Cancel
Save