9910bb97 by renchao@pashanhoo.com

style:申请业务弹框

1 parent 69a283c9
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-25 16:09:44 4 * @LastEditTime: 2023-08-15 10:01:26
5 --> 5 -->
6 <template> 6 <template>
7 <transition name="msgbox-fade"> 7 <transition name="msgbox-fade">
...@@ -148,8 +148,8 @@ ...@@ -148,8 +148,8 @@
148 148
149 .ls-title { 149 .ls-title {
150 padding: 16px; 150 padding: 16px;
151 color: #4a4e56; 151 color: #ffffff;
152 // background: linear-gradient(3deg, #edf0f7, #f4f5f6); 152 background: linear-gradient(3deg, #409eff, #a7cbee);
153 font-size: 16px; 153 font-size: 16px;
154 } 154 }
155 155
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
185 right: 26px; 185 right: 26px;
186 font-size: 24px; 186 font-size: 24px;
187 cursor: pointer; 187 cursor: pointer;
188 color: #4a4e56; 188 color: #ffffff;
189 } 189 }
190 190
191 /deep/.el-loading-mask { 191 /deep/.el-loading-mask {
......
...@@ -148,7 +148,6 @@ ...@@ -148,7 +148,6 @@
148 * @author: renchao 148 * @author: renchao
149 */ 149 */
150 sqywlxClick (item) { 150 sqywlxClick (item) {
151 console.log("item", item);
152 this.btnDisabled = true; 151 this.btnDisabled = true;
153 this.selectType = item.type; 152 this.selectType = item.type;
154 this.sqywQllxList.forEach(item => { 153 this.sqywQllxList.forEach(item => {
...@@ -236,7 +235,6 @@ ...@@ -236,7 +235,6 @@
236 getRepairBiz () { 235 getRepairBiz () {
237 getRepairBiz().then(res => { 236 getRepairBiz().then(res => {
238 if (res) { 237 if (res) {
239 console.log("res", res);
240 this.djqxList = res.result; 238 this.djqxList = res.result;
241 } 239 }
242 }) 240 })
...@@ -260,7 +258,6 @@ ...@@ -260,7 +258,6 @@
260 dialogClick () { 258 dialogClick () {
261 this.openDialog(); 259 this.openDialog();
262 }, 260 },
263 //收藏操作
264 /** 261 /**
265 * @description: 收藏操作 262 * @description: 收藏操作
266 * @param {*} item 263 * @param {*} item
...@@ -358,7 +355,6 @@ ...@@ -358,7 +355,6 @@
358 this.handleSelectYw(item, list) 355 this.handleSelectYw(item, list)
359 this.openDialog() 356 this.openDialog()
360 }, 357 },
361 // 选择不动产信息
362 /** 358 /**
363 * @description: 选择不动产信息 359 * @description: 选择不动产信息
364 * @author: renchao 360 * @author: renchao
...@@ -372,11 +368,9 @@ ...@@ -372,11 +368,9 @@
372 */ 368 */
373 openDialog () { 369 openDialog () {
374 let title = this.selectParam.djywmc; 370 let title = this.selectParam.djywmc;
375 if(this.selectParam.nodetype=="djqx"){ 371 if (this.selectParam.nodetype == "djqx") {
376 title+="("+this.selectParam.nodename+")"; 372 title += "(" + this.selectParam.nodename + ")";
377 } 373 }
378 //let title = "申请业务:";
379 //console.log(title);
380 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "90%", true) 374 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "90%", true)
381 }, 375 },
382 /** 376 /**
......