tijiao 分类变成接口

This commit is contained in:
2025-06-05 09:16:41 +08:00
parent e35f9f69c2
commit 071276e284
10 changed files with 157 additions and 255 deletions

View File

@@ -1335,9 +1335,9 @@ export default {
deep: true
}
},
created() {
this.journal_type=this.$commonJS.journalTypeList()
async created() {
this.journal_type = await this.$commonJS.journalTypeList();
console.log('this.journal_type at line 1340:', this.journal_type);
this.initSelect();
this.getAutData();
if (this.stagingID != undefined) {
@@ -2232,7 +2232,7 @@ export default {
reader.onload = function (e) {
that.$commonJS.extractWordTablesToArrays(File.raw, function (wordTables) {
console.log('tablesHtml at line 61:', wordTables);
return
return;
that.addWordTablesList(wordTables);
});
};