批量上传、添加注释

This commit is contained in:
mabo
2021-07-14 18:00:59 +08:00
parent 0fd4645514
commit 0499a9c237
27 changed files with 226 additions and 1011 deletions

View File

@@ -217,11 +217,13 @@ export default {
};
},
methods: {
// 跳转页面
navigateTo(name) {
this.$router.push({
name,
});
},
// 初始化数据
async init() {
let userInfo = JSON.parse(Cookies.get("userInfo"));
@@ -232,7 +234,7 @@ export default {
this.notices = res.result.records;
}
},
// 跳转文章页
async clickLinkNotices(val) {
let res = await seeArticle(val.id);
if (res.success) {
@@ -240,7 +242,7 @@ export default {
this.noticeFlage = true;
}
},
// 获取首页数据
async getHomeData() {
let res = await getSellerHomeData();
if (res.success) {