531172ac by tianhaohao@pashanhoo.com

修改规则

1 parent a7e3294f
......@@ -107,7 +107,7 @@
*/
queryClick () {
this.$startLoading();
this.queryForm.bsmSqyw = this.bsmSqyw;
this.queryForm.bsmSqyw = this.sqywInfo.bsmSqyw;
selectQlxx({ ...this.queryForm, ...this.pageData }).then((res) => {
this.$endLoading();
if (res.code === 200) {
......
......@@ -369,7 +369,12 @@
* @author: renchao
*/
openDialog () {
let title = "申请业务:" + this.selectParam?.djywmc ? this.selectParam?.djywmc : '';
let title = this.selectParam.djywmc;
if(this.selectParam.nodetype=="djqx"){
title+="("+this.selectParam.nodename+")";
}
//let title = "申请业务:";
//console.log(title);
this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "90%", true)
},
/**
......
......@@ -38,8 +38,6 @@
* @author: renchao
*/
loadView (view) {
console.log(view, 'view');
console.log(this.formData, 'data');
return (r) =>
require.ensure([], () => r(require(`./components/${view}.vue`)));
},
......