@@ -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: {}
+ })
+ }