style:证书领取查询,在线工程抵押查询模块功能的完善
Showing
4 changed files
with
30 additions
and
32 deletions
... | @@ -102,11 +102,6 @@ | ... | @@ -102,11 +102,6 @@ |
102 | djlx: "", | 102 | djlx: "", |
103 | ywh: "", | 103 | ywh: "", |
104 | }, | 104 | }, |
105 | // pageData: { | ||
106 | // currentPage: 1, | ||
107 | // pageSize: 10, | ||
108 | // total: 0, | ||
109 | // }, | ||
110 | tableData: { | 105 | tableData: { |
111 | total: 0, | 106 | total: 0, |
112 | columns: datas.columns(), | 107 | columns: datas.columns(), |
... | @@ -148,9 +143,9 @@ | ... | @@ -148,9 +143,9 @@ |
148 | handleSort (name, sort) { | 143 | handleSort (name, sort) { |
149 | console.log(name, sort); | 144 | console.log(name, sort); |
150 | }, | 145 | }, |
146 | moreQueryClick () { }, | ||
151 | openDialog (item) { | 147 | openDialog (item) { |
152 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3') | 148 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3') |
153 | // window.open(href, '_blank'); | ||
154 | window.open(href, `urlname${item.bsmSlsq}`); | 149 | window.open(href, `urlname${item.bsmSlsq}`); |
155 | } | 150 | } |
156 | } | 151 | } | ... | ... |
... | @@ -48,10 +48,10 @@ | ... | @@ -48,10 +48,10 @@ |
48 | </div> | 48 | </div> |
49 | </template> | 49 | </template> |
50 | <script> | 50 | <script> |
51 | import table from "@/utils/mixin/table"; | 51 | import table from "@/utils/mixin/table"; |
52 | import { datas, sendThis } from "./lpcxdata"; | 52 | import { datas, sendThis } from "./lpcxdata"; |
53 | import { getLpZrz } from "@/api/lpb.js"; | 53 | import { getLpZrz } from "@/api/lpb.js"; |
54 | export default { | 54 | export default { |
55 | name: "lpcx", | 55 | name: "lpcx", |
56 | components: {}, | 56 | components: {}, |
57 | mixins: [table], | 57 | mixins: [table], |
... | @@ -92,6 +92,7 @@ export default { | ... | @@ -92,6 +92,7 @@ export default { |
92 | handleSort (name, sort) { | 92 | handleSort (name, sort) { |
93 | console.log(name, sort); | 93 | console.log(name, sort); |
94 | }, | 94 | }, |
95 | moreQueryClick () { }, | ||
95 | //打开楼盘表 | 96 | //打开楼盘表 |
96 | openlpbClick (scope) { | 97 | openlpbClick (scope) { |
97 | // var zrzbsm = scope.row.bsm; | 98 | // var zrzbsm = scope.row.bsm; |
... | @@ -102,10 +103,10 @@ export default { | ... | @@ -102,10 +103,10 @@ export default { |
102 | bsm: scope.row.bsm | 103 | bsm: scope.row.bsm |
103 | } | 104 | } |
104 | }) | 105 | }) |
105 | }, | 106 | } |
106 | }, | 107 | } |
107 | }; | 108 | } |
108 | </script> | 109 | </script> |
109 | <style scoped lang="scss"> | 110 | <style scoped lang="scss"> |
110 | @import "~@/styles/public.scss"; | 111 | @import "~@/styles/public.scss"; |
111 | </style> | 112 | </style> | ... | ... |
... | @@ -40,22 +40,19 @@ | ... | @@ -40,22 +40,19 @@ |
40 | </div> | 40 | </div> |
41 | <!-- 表格 --> | 41 | <!-- 表格 --> |
42 | <div class="from-clues-content"> | 42 | <div class="from-clues-content"> |
43 | <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total" | 43 | <lb-table :page-size="pageData.size" class="loadingtext" :current-page.sync="pageData.current" :total="tableData.total" |
44 | @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" | 44 | @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" |
45 | :data="tableData.data"> | 45 | :data="tableData.data"> |
46 | </lb-table> | 46 | </lb-table> |
47 | </div> | 47 | </div> |
48 | <!-- <el-dialog :visible.sync="dialogVisible" width="52%" :before-close="handleClose"> | ||
49 | |||
50 | </el-dialog> --> | ||
51 | </div> | 48 | </div> |
52 | </template> | 49 | </template> |
53 | <script> | 50 | <script> |
54 | import table from "@/utils/mixin/table"; | 51 | import table from "@/utils/mixin/table"; |
55 | import { datas, sendThis } from "./zslqcx"; | 52 | import { datas, sendThis } from "./zslqcx"; |
56 | import { getBdcqzReceiveList } from "@/api/zhcx" | 53 | import { getBdcqzReceiveList } from "@/api/zhcx" |
57 | import { bdcqzPreview } from "@/api/bdcqz" | 54 | import { bdcqzPreview } from "@/api/bdcqz" |
58 | export default { | 55 | export default { |
59 | components: {}, | 56 | components: {}, |
60 | mixins: [table], | 57 | mixins: [table], |
61 | mounted () { | 58 | mounted () { |
... | @@ -103,8 +100,8 @@ export default { | ... | @@ -103,8 +100,8 @@ export default { |
103 | this.dialogVisible = false; | 100 | this.dialogVisible = false; |
104 | } | 101 | } |
105 | }, | 102 | }, |
106 | }; | 103 | }; |
107 | </script> | 104 | </script> |
108 | <style scoped lang="scss"> | 105 | <style scoped lang="scss"> |
109 | @import "~@/styles/public.scss"; | 106 | @import "~@/styles/public.scss"; |
110 | </style> | 107 | </style> | ... | ... |
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-06-19 13:27:58 | ||
5 | --> | ||
1 | <template> | 6 | <template> |
2 | <div class="from-clues"> | 7 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 8 | <!-- 表单部分 --> |
... | @@ -33,7 +38,7 @@ | ... | @@ -33,7 +38,7 @@ |
33 | </div> | 38 | </div> |
34 | <!-- 表格 --> | 39 | <!-- 表格 --> |
35 | <div class="from-clues-content"> | 40 | <div class="from-clues-content"> |
36 | <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total" | 41 | <lb-table :page-size="pageData.size" class="loadingtext" :current-page.sync="pageData.current" :total="tableData.total" |
37 | @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" | 42 | @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" |
38 | :data="tableData.data"> | 43 | :data="tableData.data"> |
39 | </lb-table> | 44 | </lb-table> |
... | @@ -41,10 +46,10 @@ | ... | @@ -41,10 +46,10 @@ |
41 | </div> | 46 | </div> |
42 | </template> | 47 | </template> |
43 | <script> | 48 | <script> |
44 | import table from "@/utils/mixin/table"; | 49 | import table from "@/utils/mixin/table"; |
45 | import { datas, sendThis } from "./zxgcdycx"; | 50 | import { datas, sendThis } from "./zxgcdycx"; |
46 | import { getZjgcdyList } from "@/api/zhcx" | 51 | import { getZjgcdyList } from "@/api/zhcx" |
47 | export default { | 52 | export default { |
48 | components: {}, | 53 | components: {}, |
49 | mixins: [table], | 54 | mixins: [table], |
50 | mounted () { | 55 | mounted () { |
... | @@ -79,8 +84,8 @@ export default { | ... | @@ -79,8 +84,8 @@ export default { |
79 | }, | 84 | }, |
80 | 85 | ||
81 | }, | 86 | }, |
82 | }; | 87 | }; |
83 | </script> | 88 | </script> |
84 | <style scoped lang="scss"> | 89 | <style scoped lang="scss"> |
85 | @import "~@/styles/public.scss"; | 90 | @import "~@/styles/public.scss"; |
86 | </style> | 91 | </style> | ... | ... |
-
Please register or sign in to post a comment