jump.js
413 Bytes
export default {
methods: {
jump (data, type) {
this.$emit("closeDialog");
const { href } = this.$router.resolve(
"/workFrame?bsmSlsq=" +
data.bsmSlsq +
"&bestepid=" +
data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type
);
window.open(href, "_blank");
},
queryClick () {
this.pageData.currentPage = 1
this.fetchData();
}
}
}