024bbf3f by jiaozeping@pashanhoo.com

1

1 parent 88200887
...@@ -5,4 +5,4 @@ NODE_ENV=development ...@@ -5,4 +5,4 @@ NODE_ENV=development
5 VUE_APP_BASE_API = '/bdcdj' 5 VUE_APP_BASE_API = '/bdcdj'
6 6
7 # 开发环境 7 # 开发环境
8 VUE_APP_API_BASE_URL = 'http://192.168.2.44:8018' 8 VUE_APP_API_BASE_URL = 'http://192.168.2.88:8018'
......
...@@ -110,23 +110,12 @@ ...@@ -110,23 +110,12 @@
110 </el-form-item> 110 </el-form-item>
111 </el-col> 111 </el-col>
112 <el-col :span="8"> 112 <el-col :span="8">
113 <el-form-item label="权利性质:" prop="qlxz"> 113 <el-form-item label="权利性质:" prop="qlxzmc">
114 <el-select 114 <el-input
115 disabled 115 disabled
116 v-model="ruleForm.qlxz" 116 v-model="ruleForm.qlxzmc"
117 filterable
118 class="width300px" 117 class="width300px"
119 clearable 118 ></el-input>
120 placeholder="请选择权利性质"
121 >
122 <el-option
123 v-for="item in qlxzOption"
124 :key="item.value"
125 :label="item.label"
126 :value="item.value"
127 >
128 </el-option>
129 </el-select>
130 </el-form-item> 119 </el-form-item>
131 </el-col> 120 </el-col>
132 </el-row> 121 </el-row>
...@@ -190,7 +179,6 @@ ...@@ -190,7 +179,6 @@
190 ></el-input> 179 ></el-input>
191 </el-form-item> 180 </el-form-item>
192 </el-col> 181 </el-col>
193
194 </el-row> 182 </el-row>
195 <el-row :gutter="10"> 183 <el-row :gutter="10">
196 <el-col :span="8"> 184 <el-col :span="8">
...@@ -277,7 +265,6 @@ export default { ...@@ -277,7 +265,6 @@ export default {
277 return { 265 return {
278 disabled: true, 266 disabled: true,
279 flagTop: this.flag ? "top" : "", 267 flagTop: this.flag ? "top" : "",
280 qlxzOption: [],
281 tdytOption: [], 268 tdytOption: [],
282 qlsdfsOption: [], 269 qlsdfsOption: [],
283 ruleForm: { 270 ruleForm: {
...@@ -289,7 +276,7 @@ export default { ...@@ -289,7 +276,7 @@ export default {
289 djqx: "", 276 djqx: "",
290 zddm: "", 277 zddm: "",
291 bdcdyh: "", 278 bdcdyh: "",
292 qlxz: "", 279 qlxzmc: "",
293 zdmj: "", 280 zdmj: "",
294 zl: "", 281 zl: "",
295 tdyt: "", 282 tdyt: "",
...@@ -326,6 +313,7 @@ export default { ...@@ -326,6 +313,7 @@ export default {
326 this.ruleForm.fj = res.result.jsydsyqdatas.fj; 313 this.ruleForm.fj = res.result.jsydsyqdatas.fj;
327 this.ruleForm.syqqzsj = res.result.jsydsyqdatas.syqqzsj; 314 this.ruleForm.syqqzsj = res.result.jsydsyqdatas.syqqzsj;
328 this.ruleForm.tdsyqx = res.result.jsydsyqdatas.tdsyqx; 315 this.ruleForm.tdsyqx = res.result.jsydsyqdatas.tdsyqx;
316 this.ruleForm.qlxzmc = res.result.zdjbxxdatas.qlxzmc;
329 } 317 }
330 }); 318 });
331 }, 319 },
......