点击按钮打开新页面(携带参数)
<el-button size="small" class="button-right" @click="createOrder" type="primary" :disabled='$store.state.powerlist.createOrder!=1'>批量下单</el-button>
createOrder(){
//批量下单
const {href} =this.$router.resolve({
path:'/Rgxd',
query:{
cookie:this.info.cookie,
operationId :this.info.operationId
}
})
window.open(href,'Rgxd')
},