qh 2 年 前
コミット
bae4ff252b
共有1 個のファイルを変更した15 個の追加0 個の削除を含む
  1. 15 0
      src/api/allDaysPriceRuleApi.js

+ 15 - 0
src/api/allDaysPriceRuleApi.js

@@ -0,0 +1,15 @@
+import api from './index'
+import { axios } from '@/utils/request'
+
+
+/**
+ * 获取全天房计费规则
+ * @returns 
+ */
+export function  fetch() { 
+    return axios({
+        url: '/rooms/cesAllDayPriceRule/fetch',
+        method: 'post',
+        params: {}
+    })
+ }