Sfoglia il codice sorgente

Merge branch 'wk-dev' into dev

wenkai 2 settimane fa
parent
commit
edf30e9c82
1 ha cambiato i file con 11 aggiunte e 0 eliminazioni
  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'
+  });
+};