a8afd382 by liangyifan
2 parents 0425dd04 b24ee332
...@@ -59,7 +59,7 @@ export default { ...@@ -59,7 +59,7 @@ export default {
59 }, 59 },
60 heightNum: { 60 heightNum: {
61 type: Number, 61 type: Number,
62 default: 260, 62 default: 275,
63 }, 63 },
64 maxHeight: { 64 maxHeight: {
65 type: Number, 65 type: Number,
......
...@@ -116,8 +116,8 @@ export default { ...@@ -116,8 +116,8 @@ export default {
116 padding-left: 5px; 116 padding-left: 5px;
117 } 117 }
118 .ls-title{ 118 .ls-title{
119 padding: 20px; 119 padding: 16px;
120 background: #1E9FFF; 120 background: linear-gradient(2deg, #00CCFF, transparent);
121 color: #ffffff; 121 color: #ffffff;
122 122
123 } 123 }
...@@ -134,20 +134,20 @@ export default { ...@@ -134,20 +134,20 @@ export default {
134 134
135 .ls-mask-footer { 135 .ls-mask-footer {
136 height: 65px; 136 height: 65px;
137 border-top: 1px solid #f0f0f0;
138 display: flex; 137 display: flex;
139 justify-content: center; 138 justify-content: center;
140 position: absolute; 139 position: absolute;
141 width: 100%; 140 width: 100%;
142 bottom: 0px; 141 bottom: 0px;
143 right: 0px; 142 right: 0px;
144 background: #f3f3f3; 143 box-shadow: 0px 0px 2px 0px;
144 border-radius: 0 0 10px 10px;
145 } 145 }
146 146
147 147
148 /deep/.closeStyle{ 148 /deep/.closeStyle{
149 position: absolute; 149 position: absolute;
150 top: 20px; 150 top: 17px;
151 right: 12px; 151 right: 12px;
152 font-size: 20px; 152 font-size: 20px;
153 cursor: pointer; 153 cursor: pointer;
...@@ -158,6 +158,7 @@ export default { ...@@ -158,6 +158,7 @@ export default {
158 } 158 }
159 /deep/.el-button{ 159 /deep/.el-button{
160 margin: 15px 10px; 160 margin: 15px 10px;
161 width: 75px;
161 } 162 }
162 </style> 163 </style>
163 164
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
7 7
8 &-header { 8 &-header {
9 width: 100%; 9 width: 100%;
10 padding: 10px 10px 3px 10px; 10 padding: 10px;
11 box-sizing: border-box; 11 box-sizing: border-box;
12 background: #FFFFFF; 12 background: #FFFFFF;
13 border-radius: 2px; 13 border-radius: 2px;
......
...@@ -12,6 +12,10 @@ const service = axios.create({ ...@@ -12,6 +12,10 @@ const service = axios.create({
12 headers: { 12 headers: {
13 'Content-Type': 'application/json; charset=utf-8', 13 'Content-Type': 'application/json; charset=utf-8',
14 'Authorization': 'bearer AT-16-oqkOHiUSsDdFA-eAZ49k2rJQDTzQpClO' 14 'Authorization': 'bearer AT-16-oqkOHiUSsDdFA-eAZ49k2rJQDTzQpClO'
15 //token列表
16 //admin:bearer AT-16-oqkOHiUSsDdFA-eAZ49k2rJQDTzQpClO
17 //renc:bearer AT-30-KHB4LXc8-CZXwBEyaFJa9lRmMTc5sHVI
18 //tianh:bearer AT-33-3zFTGkhQ4eUv4nXvzAmbgN5RPZppzEY6
15 }, 19 },
16 timeout: 15000 20 timeout: 15000
17 }) 21 })
......
...@@ -59,7 +59,8 @@ export default { ...@@ -59,7 +59,8 @@ export default {
59 myValue: this.value, 59 myValue: this.value,
60 ruleForm: { 60 ruleForm: {
61 cxyt: '', 61 cxyt: '',
62 ycyrgx: 1 62 ycyrgx: 1,
63 cxlx: '1' //查询类型 1:房产查询 2:登记簿查询
63 }, 64 },
64 dataList: [{ 65 dataList: [{
65 sqrxm: '', 66 sqrxm: '',
......
...@@ -23,8 +23,15 @@ class data extends filter { ...@@ -23,8 +23,15 @@ class data extends filter {
23 } 23 }
24 }, 24 },
25 { 25 {
26 prop: "cxlx",
27 label: "查询类型", 26 label: "查询类型",
27 render: (h, scope) => {
28 switch (scope.row.cxlx) {
29 case '1':
30 return <div>家庭房产</div>
31 case '2':
32 return <div>登记簿</div>
33 }
34 }
28 }, 35 },
29 { 36 {
30 prop: "cxbh", 37 prop: "cxbh",
...@@ -35,19 +42,28 @@ class data extends filter { ...@@ -35,19 +42,28 @@ class data extends filter {
35 label: "查询时间", 42 label: "查询时间",
36 }, 43 },
37 { 44 {
38 prop: "slry", 45 prop: "cxr",
39 label: "受理人员", 46 label: "受理人员",
40 }, 47 },
41 { 48 {
42 prop: "sqr", 49 prop: "sqrxm",
43 label: "申请人", 50 label: "申请人",
44 }, 51 },
45 { 52 {
46 prop: "yqlrgx",
47 label: "与权利人的关系", 53 label: "与权利人的关系",
54 render: (h, scope) => {
55 switch (scope.row.ycyrgx) {
56 case '1':
57 return <div>权利人</div>
58 case '2':
59 return <div>产权利害关系人</div>
60 case '3':
61 return <div>委托人</div>
62 }
63 }
48 }, 64 },
49 { 65 {
50 prop: "qlr", 66 prop: "qlrxm",
51 label: "权利人", 67 label: "权利人",
52 }, 68 },
53 { 69 {
......
...@@ -178,7 +178,7 @@ export default { ...@@ -178,7 +178,7 @@ export default {
178 break; 178 break;
179 case "back": //退回按钮 179 case "back": //退回按钮
180 break; 180 break;
181 case "transfer": //转件按钮 181 case "transfer": //转件按钮
182 getNextLinkInfo({ 182 getNextLinkInfo({
183 bsmSlsq: this.bsmSlsq, 183 bsmSlsq: this.bsmSlsq,
184 bestepid: this.bestepid, 184 bestepid: this.bestepid,
...@@ -258,6 +258,7 @@ export default { ...@@ -258,6 +258,7 @@ export default {
258 completeTask({ 258 completeTask({
259 bsmSlsq: this.bsmSlsq, 259 bsmSlsq: this.bsmSlsq,
260 shyj: "this.bestepid", 260 shyj: "this.bestepid",
261 stepform: JSON.stringify(this.tabList)
261 }).then((res) => { 262 }).then((res) => {
262 if (res.code === 200) { 263 if (res.code === 200) {
263 instance.confirmButtonLoading = false; 264 instance.confirmButtonLoading = false;
......