|
@@ -119,6 +119,56 @@
|
|
|
<el-row class="row-style">
|
|
|
<el-col :xs="24" :sm="12" :lg="6" :span="6">
|
|
|
<el-form-item
|
|
|
+ label="订单号:"
|
|
|
+ prop="orderId"
|
|
|
+ label-width="120px"
|
|
|
+ :class="['postInfo-container-item']"
|
|
|
+ >
|
|
|
+ <el-input :value="major.orderId" class="filter-item" readonly disabled style=" width: 225px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" :span="6">
|
|
|
+ <el-form-item
|
|
|
+ label="产品号:"
|
|
|
+ prop="productionNo"
|
|
|
+ label-width="120px"
|
|
|
+ :class="['postInfo-container-item']"
|
|
|
+ >
|
|
|
+ <el-input :value="major.productionNo" class="filter-item" readonly disabled style=" width: 225px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" :span="6">
|
|
|
+ <el-form-item
|
|
|
+ label="评估面积:"
|
|
|
+ prop="evaluateAcreage"
|
|
|
+ label-width="120px"
|
|
|
+ :class="['postInfo-container-item']"
|
|
|
+ >
|
|
|
+ <el-input :value="major.evaluateAcreage" class="filter-item" readonly disabled style=" width: 225px">
|
|
|
+ <template slot="append">
|
|
|
+ 平米
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" :span="6">
|
|
|
+ <el-form-item
|
|
|
+ label="评估总价:"
|
|
|
+ prop="evaluateAmount"
|
|
|
+ label-width="120px"
|
|
|
+ :class="['postInfo-container-item']"
|
|
|
+ >
|
|
|
+ <el-input :value="major.evaluateAmount" class="filter-item" readonly disabled style=" width: 225px">
|
|
|
+ <template slot="append">
|
|
|
+ 万元
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row class="row-style">
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" :span="6">
|
|
|
+ <el-form-item
|
|
|
label="对象类型:"
|
|
|
prop="businessObjectType"
|
|
|
label-width="120px"
|
|
@@ -729,13 +779,15 @@
|
|
|
"存量房地产再开发利用投资价值评估、咨询",
|
|
|
"公共性、公益性房地产评估",],
|
|
|
saveOrderBtn:null,
|
|
|
- couldEdit:null
|
|
|
+ couldEdit:null,
|
|
|
+ productionNo:null
|
|
|
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.couldEdit = this.$route.query.couldEdit ==='true';
|
|
|
this.couldBack = this.$route.query.couldBack ==='true';
|
|
|
+ this.productionNo = this.$route.query.productionNo;
|
|
|
this.saveOrderBtn = this.$route.query.saveOrderBtn;
|
|
|
this.majorId = this.$route.query.id;
|
|
|
this.getAllUser();
|
|
@@ -813,7 +865,7 @@
|
|
|
},
|
|
|
getMajorDetail(){
|
|
|
if (this.majorId){
|
|
|
- this.$api.major.detail(this.majorId).then(res=>{
|
|
|
+ this.$api.major.productionDetail(this.majorId,this.productionNo).then(res=>{
|
|
|
if (res.code === 200){
|
|
|
this.major = res.data;
|
|
|
this.major.membersId = JSON.parse(this.major.members);
|
|
@@ -863,6 +915,8 @@
|
|
|
}
|
|
|
},
|
|
|
findSubClientele(val){
|
|
|
+ console.log("val",val)
|
|
|
+ console.log("clienteleId",this.major.clienteleId)
|
|
|
if (val===0){
|
|
|
if (this.major.clienteleId){
|
|
|
let simpleAll = new Object();
|