Commit 3f0a2e72 authored by huangjie's avatar huangjie

集团详情-土地交易

parent 43d519ac
...@@ -93,7 +93,7 @@ export default { ...@@ -93,7 +93,7 @@ export default {
}, },
methods: { methods: {
handleEXCEL(){ handleEXCEL(){
if(value <= 2000){ if(this.value <= 2000){
this.loading = true; this.loading = true;
} }
this.$nextTick(() => { this.$nextTick(() => {
......
...@@ -28,10 +28,9 @@ ...@@ -28,10 +28,9 @@
<div v-if="scope.row.companyId&&scope.row.companyName" class="a-link" @click="getUipIdByCid(scope.row.companyId)" v-html="scope.row.companyName"></div> <div v-if="scope.row.companyId&&scope.row.companyName" class="a-link" @click="getUipIdByCid(scope.row.companyId)" v-html="scope.row.companyName"></div>
<div v-else v-html="scope.row.companyName || '--'"></div> <div v-else v-html="scope.row.companyName || '--'"></div>
</template> </template>
<template slot="landAddr" slot-scope="scope"> <template slot="projectName" slot-scope="scope">
<div> <div v-if="scope.row.id&&scope.row.projectName" class="a-link" @click="getDetail(scope.row.id)" v-html="scope.row.projectName"></div>
{{scope.row.landAddr || '--'}} <div v-else v-html="scope.row.projectName || '--'"></div>
</div>
</template> </template>
<template slot="stockPercent" slot-scope="scope"> <template slot="stockPercent" slot-scope="scope">
<div>{{scope.row.stockPercent || '--'}}{{scope.row.stockPercent ? '%':''}}</div> <div>{{scope.row.stockPercent || '--'}}{{scope.row.stockPercent ? '%':''}}</div>
...@@ -69,7 +68,7 @@ ...@@ -69,7 +68,7 @@
forData: [ forData: [
{label: '受让人/集团成员', prop: 'companyName',minWidth: '285',slot:true}, {label: '受让人/集团成员', prop: 'companyName',minWidth: '285',slot:true},
{label: '持股比例', prop: 'stockPercent', minWidth: '100',slot:true}, {label: '持股比例', prop: 'stockPercent', minWidth: '100',slot:true},
{label: '项目名称', prop: 'projectName',minWidth: '285'}, {label: '项目名称', prop: 'projectName',minWidth: '285',slot:true},
{label: '成交金额(万元)', prop: 'transactionPrice',minWidth: '120'}, {label: '成交金额(万元)', prop: 'transactionPrice',minWidth: '120'},
{label: '行政区划', prop: 'domicile',minWidth: '180'}, {label: '行政区划', prop: 'domicile',minWidth: '180'},
{label: '出让面积(平方米)', prop: 'acreage',minWidth: '150'}, {label: '出让面积(平方米)', prop: 'acreage',minWidth: '150'},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment