754de92e by 田浩浩

修改bug

1 parent 9cca005b
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
4 <el-tabs v-model="activeName" @tab-click="handleClick" v-if="headTabBdcqz.length > 1"> 4 <el-tabs v-model="activeName" @tab-click="handleClick" v-if="headTabBdcqz.length > 1">
5 <el-tab-pane :label="item.qlr + '(' + item.bdcqzh + ')'" :name="item.bsmBdcqz" v-for="(item,index) in headTabBdcqz" :key="index"></el-tab-pane> 5 <el-tab-pane :label="item.qlr + '(' + item.bdcqzh + ')'" :name="item.bsmBdcqz" v-for="(item,index) in headTabBdcqz" :key="index"></el-tab-pane>
6 </el-tabs> 6 </el-tabs>
7 <div class="zsyl-title">{{bdcqz.bdcqzlx == '1' ? '不动产权证书' : '不动产权证明'}}</div> 7 <!-- <div class="zsyl-title">{{bdcqz.bdcqzlx == '1' ? '不动产权证书' : '不动产权证明'}}</div> -->
8 <img :src="previewImage"> 8 <img :src="previewImage" :class="imgClass">
9 </div> 9 </div>
10 </template> 10 </template>
11 11
...@@ -96,6 +96,11 @@ export default { ...@@ -96,6 +96,11 @@ export default {
96 </script> 96 </script>
97 <style scoped lang="scss"> 97 <style scoped lang="scss">
98 @import "~@/styles/mixin.scss"; 98 @import "~@/styles/mixin.scss";
99 .imgClass{
100 display: inline-block;
101 height: auto;
102 max-width: 100%;
103 }
99 .middle_padding { 104 .middle_padding {
100 padding-bottom: 10px; 105 padding-bottom: 10px;
101 } 106 }
......
...@@ -76,12 +76,7 @@ ...@@ -76,12 +76,7 @@
76 </el-form-item> 76 </el-form-item>
77 </el-col> 77 </el-col>
78 </el-row> 78 </el-row>
79 <el-row :gutter="10"> 79 <el-row :gutter="10">
80 <el-col :span="8">
81 <el-form-item :class="flag ? 'marginBot0' : ''" label="用途:">
82 <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input>
83 </el-form-item>
84 </el-col>
85 <el-col :span="8"> 80 <el-col :span="8">
86 <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> 81 <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:">
87 <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input> 82 <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input>
...@@ -92,6 +87,11 @@ ...@@ -92,6 +87,11 @@
92 <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input> 87 <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input>
93 </el-form-item> 88 </el-form-item>
94 </el-col> 89 </el-col>
90 <el-col :span="8">
91 <el-form-item :class="flag ? 'marginBot0' : ''" label="用途:">
92 <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input>
93 </el-form-item>
94 </el-col>
95 </el-row> 95 </el-row>
96 96
97 <div class="slxx_title title-block"> 97 <div class="slxx_title title-block">
......
...@@ -120,7 +120,7 @@ export default { ...@@ -120,7 +120,7 @@ export default {
120 return; 120 return;
121 } 121 }
122 startBusinessFlow({ 122 startBusinessFlow({
123 bsmSqyw: this.bsmSqyw, 123 bsmSqyw: this.sqywInfo.bsmSqyw,
124 bdcdysz: this.bdcdysz, 124 bdcdysz: this.bdcdysz,
125 djqxbm: this.sqywInfo.nodetype=="djqx"?this.sqywInfo.nodecode:"", 125 djqxbm: this.sqywInfo.nodetype=="djqx"?this.sqywInfo.nodecode:"",
126 djqxmc: this.sqywInfo.nodetype=="djqx"?this.sqywInfo.nodename:"", 126 djqxmc: this.sqywInfo.nodetype=="djqx"?this.sqywInfo.nodename:"",
...@@ -132,7 +132,7 @@ export default { ...@@ -132,7 +132,7 @@ export default {
132 type: 'success' 132 type: 'success'
133 }) 133 })
134 if (!this.isJump) { 134 if (!this.isJump) {
135 this.jump(res.result, this.djywbm) 135 this.jump(res.result, this.sqywInfo.djywbm)
136 } else { 136 } else {
137 this.$emit('updateDialog', true) 137 this.$emit('updateDialog', true)
138 } 138 }
......