This commit is contained in:
2025-11-03 10:14:27 +08:00
parent 4dd5fa6a42
commit b66b390f2c
16 changed files with 5902 additions and 1186 deletions

View File

@@ -189,7 +189,16 @@
})
.then(res => {
if (res.code == 0) {
this.$router.push('/per_text?Art_id=' + index);
window.open(
this.$router.resolve({
path: '/per_text',
query: {
Art_id: index
}
}).href,
'_blank'
);
// this.$router.push('/per_text?Art_id=' + index);
} else {
this.$message.error(res.msg);
}
@@ -271,7 +280,16 @@
.then(res => {
if (res.code == 0) {
this.$message.success('Successful application!');
this.$router.push('/per_text?Art_id=' + res.data.art_rev_id);
window.open(
this.$router.resolve({
path: '/per_text',
query: {
Art_id: res.data.art_rev_id
}
}).href,
'_blank'
);
// this.$router.push('/per_text?Art_id=' + res.data.art_rev_id);
} else {
this.$message.error(res.msg);
}