|
|
@@ -6,8 +6,8 @@ |
|
|
|
</div> |
|
|
|
<div class="list_main"> |
|
|
|
<van-divider>资源性资产信息</van-divider> |
|
|
|
<van-field readonly v-model="form.resourceType" label="资源类型" placeholder="资源类型" input-align="right" :border="false"/> |
|
|
|
<van-field readonly v-model="form.useType" label="使用情况" placeholder="使用情况" input-align="right" :border="false"/> |
|
|
|
<van-field readonly v-model="form.resourceTypeText" label="资源类型" placeholder="资源类型" input-align="right" :border="false"/> |
|
|
|
<van-field readonly v-model="form.useTypeText" label="使用情况" placeholder="使用情况" input-align="right" :border="false"/> |
|
|
|
<van-field readonly v-model="form.totalArea + '亩'" label="面积" placeholder="面积" input-align="right" :border="false"/> |
|
|
|
<div v-if="form.contractionId"> |
|
|
|
<van-divider>关联合同信息</van-divider> |
|
|
@@ -29,7 +29,7 @@ |
|
|
|
return { |
|
|
|
form: {}, |
|
|
|
useTypeOptions: [], |
|
|
|
usedTypeOptions: [], |
|
|
|
usedAreaOptions: [], |
|
|
|
resourceTypeOptions: [] |
|
|
|
}; |
|
|
|
}, |
|
|
@@ -37,9 +37,6 @@ |
|
|
|
this.getDicts("use_type").then((response) => { |
|
|
|
this.useTypeOptions = response.data; |
|
|
|
}); |
|
|
|
this.getDicts("used_area").then((response) => { |
|
|
|
this.usedTypeOptions = response.data; |
|
|
|
}); |
|
|
|
this.getDicts("resource_type").then((response) => { |
|
|
|
this.resourceTypeOptions = response.data; |
|
|
|
}); |
|
|
@@ -54,8 +51,8 @@ |
|
|
|
}; |
|
|
|
jyxzyqkgkDetail(this.$route.query.id).then((res) => { |
|
|
|
if (res.code === 200) { |
|
|
|
res.data.useType = this.selectDictLabel(this.useTypeOptions, res.data.useType); |
|
|
|
res.data.resourceType = this.selectDictLabel(this.resourceTypeOptions, res.data.resourceType); |
|
|
|
res.data.useTypeText = this.selectDictLabel(this.useTypeOptions, res.data.useType); |
|
|
|
res.data.resourceTypeText = this.selectDictLabel(this.resourceTypeOptions, res.data.resourceType); |
|
|
|
this.form = res.data; |
|
|
|
} |
|
|
|
}) |
|
|
|