33a30d15 by 任超
2 parents 5035e007 d4449a61
...@@ -145,6 +145,10 @@ export default { ...@@ -145,6 +145,10 @@ export default {
145 openDialog() { 145 openDialog() {
146 console.log(999999999999999); 146 console.log(999999999999999);
147 }, 147 },
148 ywhClick(bsmSlsq){
149 const { href } = this.$router.resolve('/fqsq?bsmSlsq=' + bsmSlsq)
150 window.open(href, '_blank');
151 },
148 }, 152 },
149 }; 153 };
150 </script> 154 </script>
......
...@@ -32,6 +32,13 @@ class data extends filter { ...@@ -32,6 +32,13 @@ class data extends filter {
32 label: "业务号", 32 label: "业务号",
33 }, 33 },
34 { 34 {
35 label: '业务号',
36 align: 'center',
37 render: (h, scope) => {
38 return <el-button type="text" onClick={() => { vm.ywhClick(scope.row.bsmSlsq) }}>{scope.row.ywh}</el-button>
39 }
40 },
41 {
35 prop: "sqywmc", 42 prop: "sqywmc",
36 label: "申请业务名称", 43 label: "申请业务名称",
37 }, 44 },
......
...@@ -116,7 +116,7 @@ export default { ...@@ -116,7 +116,7 @@ export default {
116 bdcdyh: this.bdcdyh 116 bdcdyh: this.bdcdyh
117 }).then(res => { 117 }).then(res => {
118 this.$emit('input', false) 118 this.$emit('input', false)
119 const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw) 119 const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw+'&bsmSlsq='+res.message)
120 window.open(href, '_blank'); 120 window.open(href, '_blank');
121 }) 121 })
122 }, 122 },
......