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

@@ -185,7 +185,17 @@
},
openWindow(art_rev_id) {
window.open(
this.$router.resolve({
path: '/per_text',
query: {
Art_id: art_rev_id
}
}).href,
'_blank'
);
},
// 同意
saveNow() {
// 二次确认
@@ -200,7 +210,8 @@
.then(res => {
if (res.code == 0) {
this.$message.success('Review now successfully!');
this.$router.push('/per_text?Art_id=' + this.Art_id);
this.openWindow(this.Art_id);
// this.$router.push('/per_text?Art_id=' + this.Art_id);
} else {
this.$message.error(res.msg);
}