wenkai 2 周之前
父节点
当前提交
a5fc708a04
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      src/api/system/article/index.ts

+ 11 - 0
src/api/system/article/index.ts

@@ -73,3 +73,14 @@ export const changeArticleDefault = (data: ArticleForm): AxiosPromise<void> => {
     data: data
   });
 };
+
+/**
+ * 查询赛事项目数量
+ * @returns {*}
+ */
+export const getArticleCount = () => {
+  return request({
+    url: '/system/article/count',
+    method: 'get'
+  });
+};