54188758 by liangyifan

待办箱

1 parent 092e13f5
...@@ -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 },
......
...@@ -114,7 +114,7 @@ export default { ...@@ -114,7 +114,7 @@ export default {
114 bdcdyh: this.bdcdyh 114 bdcdyh: this.bdcdyh
115 }).then(res => { 115 }).then(res => {
116 this.$emit('input', false) 116 this.$emit('input', false)
117 const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw) 117 const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw+'&bsmSlsq='+res.message)
118 window.open(href, '_blank'); 118 window.open(href, '_blank');
119 }) 119 })
120 }, 120 },
......