531172ac by tianhaohao@pashanhoo.com

修改规则

1 parent a7e3294f
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
107 */ 107 */
108 queryClick () { 108 queryClick () {
109 this.$startLoading(); 109 this.$startLoading();
110 this.queryForm.bsmSqyw = this.bsmSqyw; 110 this.queryForm.bsmSqyw = this.sqywInfo.bsmSqyw;
111 selectQlxx({ ...this.queryForm, ...this.pageData }).then((res) => { 111 selectQlxx({ ...this.queryForm, ...this.pageData }).then((res) => {
112 this.$endLoading(); 112 this.$endLoading();
113 if (res.code === 200) { 113 if (res.code === 200) {
......
...@@ -369,7 +369,12 @@ ...@@ -369,7 +369,12 @@
369 * @author: renchao 369 * @author: renchao
370 */ 370 */
371 openDialog () { 371 openDialog () {
372 let title = "申请业务:" + this.selectParam?.djywmc ? this.selectParam?.djywmc : ''; 372 let title = this.selectParam.djywmc;
373 if(this.selectParam.nodetype=="djqx"){
374 title+="("+this.selectParam.nodename+")";
375 }
376 //let title = "申请业务:";
377 //console.log(title);
373 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "90%", true) 378 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "90%", true)
374 }, 379 },
375 /** 380 /**
......
...@@ -38,8 +38,6 @@ ...@@ -38,8 +38,6 @@
38 * @author: renchao 38 * @author: renchao
39 */ 39 */
40 loadView (view) { 40 loadView (view) {
41 console.log(view, 'view');
42 console.log(this.formData, 'data');
43 return (r) => 41 return (r) =>
44 require.ensure([], () => r(require(`./components/${view}.vue`))); 42 require.ensure([], () => r(require(`./components/${view}.vue`)));
45 }, 43 },
......