humingbo 1 жил өмнө
parent
commit
7167d6a51e

+ 17 - 0
src/api/performance/performance.js

@@ -0,0 +1,17 @@
+import request from '@/utils/request'
+
+/**
+ * 根据年份获取日期列表数据
+ * @param year
+ * @returns {*}
+ */
+export function getDateListByYear(year){
+  return request({
+    url: '/performanceDateSet/getDateListByYear?year='+year,
+    method: 'get'
+  })
+}
+
+
+
+