95d7a962 by tianhaohao@pashanhoo.com

111

1 parent c2433178
1 <!--
2 * @Description: 交易合同
3 * @Autor: renchao
4 * @LastEditTime: 2024-03-21 16:58:45
5 -->
6 <template> 1 <template>
7 <div class='jyht'> 2 <div class='jyht'>
8 <el-form :model="queryForm"> 3 <el-form :model="queryForm">
9 <el-row :gutter="10"> 4 <el-row :gutter="10">
10 <el-col :span="6"> 5 <el-col :span="8">
11 <el-form-item label="合同号"> 6 <el-form-item label="行政区">
12 <el-input v-model="queryForm.htbh"></el-input>
13 </el-form-item>
14 </el-col>
15 <!-- <el-col :span="6">
16 <el-form-item label="证件号码">
17 <el-input v-model="queryForm.sfzjhm"></el-input> 7 <el-input v-model="queryForm.sfzjhm"></el-input>
18 </el-form-item> 8 </el-form-item>
19 </el-col> 9 </el-col>
20 <el-col :span="6"> 10 <el-col :span="8">
21 <el-form-item label="业务号"> 11 <el-form-item label="业务号">
22 <el-input v-model="queryForm.ywh"></el-input> 12 <el-input v-model="queryForm.ywh"></el-input>
23 </el-form-item> 13 </el-form-item>
24 </el-col> --> 14 </el-col>
25 <!-- <el-col :span="6" class="btnColRight"> 15 <el-col :span="8">
26 <el-button type="primary" @click="handleSearch">查询</el-button> 16 <el-form-item label="用户编号">
27 </el-col> --> 17 <el-input v-model="queryForm.ywh"></el-input>
18 </el-form-item>
19 </el-col>
20 </el-row>
21 <el-row :gutter="10">
22 <el-col :span="8">
23 <el-form-item label="房产证编号">
24 <el-input v-model="queryForm.ywh"></el-input>
25 </el-form-item>
26 </el-col>
27 <el-col :span="16">
28 <el-form-item label="房屋坐落(地址)">
29 <el-input v-model="queryForm.sfzjhm"></el-input>
30 </el-form-item>
31 </el-col>
28 </el-row> 32 </el-row>
29 </el-form> 33 </el-form>
30
31 <lb-table ref="table" @row-click="handleRowClick" :pagination="false" :key="key" 34 <lb-table ref="table" @row-click="handleRowClick" :pagination="false" :key="key"
32 :column="tableData.columns" 35 :column="tableData.columns"
33 :data="tableData.data"> 36 :data="tableData.data">
34 </lb-table> 37 </lb-table>
35 <div class="text-center"> 38 <div class="text-center">
36 <el-button @click="$popupCacel">取消</el-button> 39 <el-button @click="$popupCacel">取消</el-button>
37 <!-- <el-button type="primary" @click="handleSubmit" plain>保存</el-button> --> 40 <el-button type="primary" @click="handleSearch">保存</el-button>
38 <el-button type="primary" @click="handleSearch">查询</el-button>
39 </div> 41 </div>
40 </div> 42 </div>
41 </template> 43 </template>
......
...@@ -71,8 +71,7 @@ ...@@ -71,8 +71,7 @@
71 </el-row> 71 </el-row>
72 <div class="slxx_title title-block"> 72 <div class="slxx_title title-block">
73 电力过户信息 73 电力过户信息
74 74 <el-button type="primary" @click="handleDlxx">电力过户信息修改</el-button>
75 <el-button @click="showDialogDlxx">电力过户信息修改</el-button>
76 <div class="triangle"></div> 75 <div class="triangle"></div>
77 </div> 76 </div>
78 <el-row :gutter="10"> 77 <el-row :gutter="10">
...@@ -172,12 +171,6 @@ ...@@ -172,12 +171,6 @@
172 </div> 171 </div>
173 </div> 172 </div>
174 </el-form> 173 </el-form>
175 <el-dialog :visible.sync="dialogDlxx" title="电力过户信息修改">
176 <div class="text-center">
177 <el-button @click="$popupCacel">取消</el-button>
178 <el-button type="primary" @click="onSubmit" plain>保存</el-button>
179 </div>
180 </el-dialog>
181 </div> 174 </div>
182 </template> 175 </template>
183 <script> 176 <script>
...@@ -195,7 +188,6 @@ export default { ...@@ -195,7 +188,6 @@ export default {
195 }, 188 },
196 data() { 189 data() {
197 return { 190 return {
198 dialogDlxx: false,
199 loading: false, 191 loading: false,
200 //表单是否可操作 192 //表单是否可操作
201 viewEdit: false, 193 viewEdit: false,
...@@ -220,8 +212,18 @@ export default { ...@@ -220,8 +212,18 @@ export default {
220 }); 212 });
221 }, 213 },
222 onSubmit() {}, 214 onSubmit() {},
223 showDialogDlxx() { 215 handleDlxx() {
224 this.dialogDlxx = true; 216 let formData = {
217 bsmSldy: this.propsParam.bsmSldy,
218 qxdm: this.ruleForm.qlxx.qxdm,
219 bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
220 };
221 if(this.ruleForm.wqht==null){
222 formData.htbh='';
223 }else{
224 formData.htbh=this.ruleForm.wqht.wqhth;
225 }
226 this.$popupDialog('房产电力过户详情', 'workflow/main/sdqxx/dlxx', formData, '60%', true)
225 }, 227 },
226 }, 228 },
227 }; 229 };
......