7197f023 by 蔡俊立
2 parents 147f66b7 7a78bd0b
...@@ -16,6 +16,14 @@ Vue.prototype.$rules = rules ...@@ -16,6 +16,14 @@ Vue.prototype.$rules = rules
16 // 全局加载 16 // 全局加载
17 Vue.prototype.$startLoading = startLoadingAddCount 17 Vue.prototype.$startLoading = startLoadingAddCount
18 Vue.prototype.$endLoading = endLoadingSubCount 18 Vue.prototype.$endLoading = endLoadingSubCount
19
20 // 弹框
21 import { popupDialog, popupCacel } from "./utils/popup.js";
22 // 全局加载
23 Vue.prototype.$popupDialog = popupDialog
24 Vue.prototype.$popupCacel = popupDialog
25
26
19 import { theme } from "@/directive/theme.js" 27 import { theme } from "@/directive/theme.js"
20 Vue.directive("theme", theme) 28 Vue.directive("theme", theme)
21 Vue.directive('fo', { 29 Vue.directive('fo', {
......
1 /deep/.modifycollapse{
2 border: none;
3
4 .el-collapse-item {
5
6 .el-collapse-item__header {
7 margin-bottom: 10px;
8 background: #F3F4F7;
9 border: 1px solid #D9D9D9;
10 border-radius: 4px;
11 font-size: 16px;
12 font-family: PingFangSC-Medium, PingFang SC;
13 font-weight: 500;
14 color: #333333;
15 line-height: 18px;
16
17 }
18
19 .el-collapse-item__header::before {
20 content: "";
21 margin-left: 10px;
22 margin-right: 10px;
23 width: 4px;
24 height: 18px;
25 background: #2B7FF1;
26 }
27
28 .el-collapse-item__arrow {
29 color: #979797;
30 margin-left: 10px;
31 }
32
33
34 }
35 }
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
23 } 23 }
24 24
25 .el-dialog__body { 25 .el-dialog__body {
26 max-height: 88vh; 26 max-height: 90vh;
27 overflow-x: hidden; 27 overflow-x: hidden;
28 overflow-y: hidden; 28 overflow-y: hidden;
29 } 29 }
......
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
135 </el-col> 135 </el-col>
136 </el-row> 136 </el-row>
137 </el-form> 137 </el-form>
138 <el-collapse accordion> 138 <el-collapse class="modifycollapse" accordion>
139 <el-collapse-item title="登记情形设置" name="1"> 139 <el-collapse-item title="登记情形设置" name="1">
140 <lb-table 140 <lb-table
141 :column="djqxCol" 141 :column="djqxCol"
...@@ -332,6 +332,7 @@ export default { ...@@ -332,6 +332,7 @@ export default {
332 <style lang='scss' scoped> 332 <style lang='scss' scoped>
333 @import "~@/styles/mixin.scss"; 333 @import "~@/styles/mixin.scss";
334 @import "~@/styles/dialogBox.scss"; 334 @import "~@/styles/dialogBox.scss";
335 @import "~@/styles/collapse.scss";
335 336
336 .contentBox { 337 .contentBox {
337 height: 75vh; 338 height: 75vh;
......
...@@ -70,11 +70,11 @@ class data extends filter { ...@@ -70,11 +70,11 @@ class data extends filter {
70 label: "建筑物名称", 70 label: "建筑物名称",
71 }, 71 },
72 { 72 {
73 label: "权利性质", 73 label: "土地/房屋性质",
74 render: (h, scope) => { 74 render: (h, scope) => {
75 return ( 75 return (
76 <div> 76 <div>
77 {(scope.row.showQlxz) + (' / ') + (scope.row.fwxzbsm)} 77 {(scope.row.showQlxz) + (' / ') + (scope.row.fwxzmc)}
78 </div> 78 </div>
79 ) 79 )
80 } 80 }
...@@ -90,7 +90,7 @@ class data extends filter { ...@@ -90,7 +90,7 @@ class data extends filter {
90 } 90 }
91 }, 91 },
92 { 92 {
93 label: "用途", 93 label: "土地/房屋用途",
94 render: (h, scope) => { 94 render: (h, scope) => {
95 return ( 95 return (
96 <div> 96 <div>
......