|
@@ -1327,7 +1327,9 @@ export default {
|
|
|
if (this.personalId) {
|
|
|
this.$api.personalTarget.detail(this.personalId).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- res.data.amount = utils.roundToDecimalPlace(new Decimal(res.data.amount).div(10000),2)
|
|
|
+ if (res.data.amount){
|
|
|
+ res.data.amount = utils.roundToDecimalPlace(new Decimal(res.data.amount).div(10000),2)
|
|
|
+ }
|
|
|
this.target = res.data;
|
|
|
this.linkAttributes.acreage = this.target.acreage;
|
|
|
if (res.data.isOnline) {
|