This commit is contained in:
2026-01-13 09:32:33 +08:00
parent 0f3ee631e3
commit 1755fd2202
20 changed files with 3656 additions and 3385 deletions

View File

@@ -720,7 +720,7 @@ export default {
article_id: this.$route.query.id
})
.then((res) => {
console.log('res at line 191:', res);
if (res.code == 0) {
this.article_pay_info = {
fee: res.data.article ? res.data.article.fee : 0,
@@ -1049,34 +1049,7 @@ export default {
return e.stage_year + ' Vol.' + e.stage_vol + ' issue.' + e.stage_no + e.stage_pagename + e.stage_page;
},
// 1----保存稿件信息
ZsSaveMes() {
if (this.detailMes.journal_stage_id == 0) {
this.$message.error('Please select an installment!');
return;
}
this.$refs.Mes_Form.validate((valid) => {
if (valid) {
this.$api
.post('api/Production/editProduction', this.detailMes)
.then((res) => {
if (res.code == 0) {
this.$message.success(`Successfully save the article!`);
this.getData();
} else {
this.$message.error(res.msg);
}
})
.catch((err) => {
this.$message.error(err);
});
} else {
this.$message.error('Please complete Essential Information first!');
this.jumpTab(0, this.tabsList[0]);
return false;
}
});
},
// 2----添加作者操作
add_Authorclick(index, row) {