Merge branch 'dev'
Showing
5 changed files
with
16 additions
and
15 deletions
... | @@ -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 | ... | ... |
... | @@ -147,7 +147,7 @@ | ... | @@ -147,7 +147,7 @@ |
147 | if (this.unitData.length > 1) { | 147 | if (this.unitData.length > 1) { |
148 | let qllx = this.$route.query?.djywbm?.substring(0, 3); | 148 | let qllx = this.$route.query?.djywbm?.substring(0, 3); |
149 | switch (qllx) { | 149 | switch (qllx) { |
150 | case 'A04': | 150 | case 'A04': case 'A06': case 'A08': |
151 | this.showBatch = true; | 151 | this.showBatch = true; |
152 | this.batchButtonName = '房屋批量操作'; | 152 | this.batchButtonName = '房屋批量操作'; |
153 | break; | 153 | break; | ... | ... |
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-08-17 15:09:55 | 4 | * @LastEditTime: 2023-10-16 11:14:29 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -29,7 +29,6 @@ | ... | @@ -29,7 +29,6 @@ |
29 | </el-col> | 29 | </el-col> |
30 | <el-col :span="6" class="btnColRight"> | 30 | <el-col :span="6" class="btnColRight"> |
31 | <el-form-item> | 31 | <el-form-item> |
32 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | ||
33 | <el-button type="primary" @click="handleSearch">查询</el-button> | 32 | <el-button type="primary" @click="handleSearch">查询</el-button> |
34 | </el-form-item> | 33 | </el-form-item> |
35 | </el-col> | 34 | </el-col> | ... | ... |
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 : 290" | 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"> |
... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
52 | </template> | 52 | </template> |
53 | <script> | 53 | <script> |
54 | import store from '@/store/index.js' | 54 | import store from '@/store/index.js' |
55 | import { ywPopupDialog,popupCacel } from "@/utils/popup.js"; | 55 | import { ywPopupDialog, popupCacel } from "@/utils/popup.js"; |
56 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; | 56 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; |
57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
58 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
... | @@ -131,9 +131,9 @@ | ... | @@ -131,9 +131,9 @@ |
131 | this.close() | 131 | this.close() |
132 | } else { | 132 | } else { |
133 | if (res.result && res.result.length > 0) { | 133 | if (res.result && res.result.length > 0) { |
134 | this.$popup("申请错误明细", "components/ywdialog", { width:'36%', formData:{result: res.result} }) | 134 | this.$popup("申请错误明细", "components/ywdialog", { width: '36%', formData: { result: res.result } }) |
135 | } else { | 135 | } else { |
136 | this.$popup("申请错误明细", "components/ywdialog", { width:'36%', formData:{message: res.message} }) | 136 | this.$popup("申请错误明细", "components/ywdialog", { width: '36%', formData: { message: res.message } }) |
137 | } | 137 | } |
138 | } | 138 | } |
139 | }).catch(() => { | 139 | }).catch(() => { |
... | @@ -145,7 +145,7 @@ | ... | @@ -145,7 +145,7 @@ |
145 | * @param {*} val | 145 | * @param {*} val |
146 | * @author: renchao | 146 | * @author: renchao |
147 | */ | 147 | */ |
148 | close(){ | 148 | close () { |
149 | popupCacel() | 149 | popupCacel() |
150 | }, | 150 | }, |
151 | /** | 151 | /** | ... | ... |
-
Please register or sign in to post a comment