1234567891011121314151617181920212223242526272829303132 |
- import { request } from '@/utils/request';
- /**
- * 获取首页
- * @returns
- */
- export function getHomePage(data) {
- return request({
- url: '/maintain/customer/index',
- method: 'get',
- data: data,
- header: {
- 'content-type': 'application/x-www-form-urlencoded',
- },
- });
- }
- /**
- * 获取当前位置
- * @returns
- */
- export function getCurrentLocation(data) {
- return request({
- url: '/maintain/location',
- method: 'get',
- data: data,
- header: {
- 'content-type': 'application/x-www-form-urlencoded',
- },
- });
- }
|