关于我们:接入 100%

This commit is contained in:
YunaiV
2023-12-27 21:25:58 +08:00
parent 6a19833044
commit 1bd12a1a3b
6 changed files with 36 additions and 59 deletions
+2 -2
View File
@@ -2,11 +2,11 @@ import request from '@/sheep/request';
export default {
// 获得文章详情
getArticle: (id) => {
getArticle: (id, title) => {
return request({
url: '/app-api/promotion/article/get',
method: 'GET',
params: { id }
params: { id, title }
});
}
}