52716f2a by renchao@pashanhoo.com

style:楼盘表方法的统一

1 parent 08b509e6
...@@ -174,7 +174,9 @@ ...@@ -174,7 +174,9 @@
174 </div> 174 </div>
175 </div> 175 </div>
176 <!-- 单元列表页面--> 176 <!-- 单元列表页面-->
177 <selectZrzH v-else :sqywInfo="formData" /> 177 <div :style="{ height: lpbContentHight + 'px' }" v-else>
178 <selectZrzH :sqywInfo="formData" />
179 </div>
178 </div> 180 </div>
179 </template> 181 </template>
180 182
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-25 08:59:56 4 * @LastEditTime: 2023-10-16 13:35:55
5 */ 5 */
6 import { getPrintTemplateByCode } from "@/api/print"; 6 import { getPrintTemplateByCode } from "@/api/print";
7 import { uploadUndo } from "@/api/clxx"; 7 import { uploadUndo } from "@/api/clxx";
...@@ -159,14 +159,14 @@ export default { ...@@ -159,14 +159,14 @@ export default {
159 case "B8": 159 case "B8":
160 !window.djlx && getZrzbsmList(this.bsmSlsq).then((res) => { 160 !window.djlx && getZrzbsmList(this.bsmSlsq).then((res) => {
161 if (res.code === 200) { 161 if (res.code === 200) {
162 this.$popupDialog('楼盘表', 'lpb/index', { 162 ywPopupDialog('楼盘表', 'lpb/index', {
163 bsm: res.result[0], 163 bsm: res.result[0],
164 onlyShow: false, 164 onlyShow: false,
165 unitData: window.unitData, 165 unitData: window.unitData,
166 bsmSlsq: this.bsmSlsq, 166 bsmSlsq: this.bsmSlsq,
167 showSave: true, 167 showSave: true,
168 djlx: window.djlx 168 djlx: window.djlx
169 }, '90%', true) 169 }, '85%', true, false)
170 } else { 170 } else {
171 this.$message.error(res.message) 171 this.$message.error(res.message)
172 } 172 }
...@@ -174,13 +174,13 @@ export default { ...@@ -174,13 +174,13 @@ export default {
174 .catch((err) => { 174 .catch((err) => {
175 this.$message.error(err) 175 this.$message.error(err)
176 }); 176 });
177 window.djlx && this.$popupDialog('楼盘表', 'lpb/zjgcdy', { 177 window.djlx && ywPopupDialog('楼盘表', 'lpb/zjgcdy', {
178 onlyShow: false, 178 onlyShow: false,
179 unitData: window.unitData, 179 unitData: window.unitData,
180 bsmSlsq: this.bsmSlsq, 180 bsmSlsq: this.bsmSlsq,
181 showSave: true, 181 showSave: true,
182 djlx: window.djlx 182 djlx: window.djlx
183 }, '90%', true) 183 }, '85%', true, false)
184 break; 184 break;
185 // 图形定位 185 // 图形定位
186 case "B-TXDW": 186 case "B-TXDW":
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-20 17:08:30 4 * @LastEditTime: 2023-10-16 13:45:25
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
38 </div> 38 </div>
39 <!-- 表格 --> 39 <!-- 表格 -->
40 <div class="loadingtext"> 40 <div class="loadingtext">
41 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="this.zrzbsm ? 390 : 200" 41 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="this.zrzbsm ? 390 : 260"
42 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" @select="select" 42 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" @select="select"
43 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 43 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
44 :data="tableData.data"> 44 :data="tableData.data">
......