瀏覽代碼

增加代码

humingbo 1 年之前
父節點
當前提交
7167d6a51e
共有 1 個文件被更改,包括 17 次插入0 次删除
  1. 17 0
      src/api/performance/performance.js

+ 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'
+  })
+}
+
+
+
+