9fbb4689 by 任超
2 parents c3cb8ee3 b946136b
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 <div class="triangle"></div> 47 <div class="triangle"></div>
48 </div> 48 </div>
49 49
50 <el-button type="primary" style="float: right;margin-right: 20px; " @click="onClick">数据查看</el-button> 50 <el-button type="primary" style="float: right;margin-right: 20px; " @click="dataSelectClick">数据查看</el-button>
51 51
52 <el-row :gutter="10" v-if="ruleForm.qlxx"> 52 <el-row :gutter="10" v-if="ruleForm.qlxx">
53 <el-col :span="8"> 53 <el-col :span="8">
...@@ -137,9 +137,10 @@ ...@@ -137,9 +137,10 @@
137 <el-col :span="14" v-if="ruleForm.qlxx"> 137 <el-col :span="14" v-if="ruleForm.qlxx">
138 <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> 138 <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:">
139 <el-radio-group :disabled="$route.query.viewtype==1" v-model="ruleForm.slywxx.gyfs"> 139 <el-radio-group :disabled="$route.query.viewtype==1" v-model="ruleForm.slywxx.gyfs">
140 <el-radio label="1">单独所有</el-radio> 140 <el-radio label="0">单独所有</el-radio>
141 <el-radio label="2">共同共有</el-radio> 141 <el-radio label="1">共同共有</el-radio>
142 <el-radio label="3">按份所有</el-radio> 142 <el-radio label="2">按份所有</el-radio>
143 <el-radio label="3">其它共有</el-radio>
143 </el-radio-group> 144 </el-radio-group>
144 </el-form-item> 145 </el-form-item>
145 </el-col> 146 </el-col>
...@@ -188,6 +189,7 @@ ...@@ -188,6 +189,7 @@
188 import InformationTable from "@/views/workflow/components/InformationTable"; 189 import InformationTable from "@/views/workflow/components/InformationTable";
189 import {Init, saveBatchData} from "@/api/fwsyqFlow.js"; 190 import {Init, saveBatchData} from "@/api/fwsyqFlow.js";
190 import { mapGetters } from "vuex"; 191 import { mapGetters } from "vuex";
192 import SERVER from "@/api/config";
191 export default { 193 export default {
192 async created () { 194 async created () {
193 this.propsParam = this.$attrs; 195 this.propsParam = this.$attrs;
...@@ -252,8 +254,8 @@ export default { ...@@ -252,8 +254,8 @@ export default {
252 }; 254 };
253 }, 255 },
254 methods: { 256 methods: {
255 onClick(){ 257 dataSelectClick(){
256 this.$popup("房屋信息比对","ywbl/fdcq2/slxxCompareDetai", 258 this.$popup("房屋信息比对",SERVER.SERVERAPI + "/rest/ywbl/fdcq2/slxxCompareDetai",
257 { 259 {
258 formData: { 260 formData: {
259 bsmSldy: this.propsParam.bsmSldy, 261 bsmSldy: this.propsParam.bsmSldy,
......