|
@@ -76,12 +76,12 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
|
|
+ <el-col :span="24" v-if="siteid !== 'HY'">
|
|
|
<el-form-item label="总投资额(万元):" prop="totalinvestment">
|
|
<el-form-item label="总投资额(万元):" prop="totalinvestment">
|
|
|
<el-input v-model="form.totalinvestment" placeholder="请填写金额(万元)"></el-input>
|
|
<el-input v-model="form.totalinvestment" placeholder="请填写金额(万元)"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="24">
|
|
|
|
|
|
|
+ <el-col :span="24" v-if="siteid !== 'HY'">
|
|
|
<el-form-item label="造价(万元):" prop="costofconstruction">
|
|
<el-form-item label="造价(万元):" prop="costofconstruction">
|
|
|
<el-input v-model="form.costofconstruction" placeholder="请填写金额(万元)"></el-input>
|
|
<el-input v-model="form.costofconstruction" placeholder="请填写金额(万元)"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -233,12 +233,14 @@ export default {
|
|
|
},
|
|
},
|
|
|
options:[],
|
|
options:[],
|
|
|
tradefieldSelect:[],
|
|
tradefieldSelect:[],
|
|
|
|
|
+ siteid:''
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
props:['data','disabled','rowData'],
|
|
props:['data','disabled','rowData'],
|
|
|
methods:{
|
|
methods:{
|
|
|
editBtn () {
|
|
editBtn () {
|
|
|
this.drawer = true
|
|
this.drawer = true
|
|
|
|
|
+ this.siteid = JSON.parse(sessionStorage.getItem('active_account')).siteid
|
|
|
this.form = Object.assign({},this.form,this.data)
|
|
this.form = Object.assign({},this.form,this.data)
|
|
|
this.form.enterprisename = this.data.enterprisename_customer
|
|
this.form.enterprisename = this.data.enterprisename_customer
|
|
|
this.form.province = [this.form.province,this.form.city,this.form.county]
|
|
this.form.province = [this.form.province,this.form.city,this.form.county]
|