| 1234567891011121314151617181920212223242526272829303132333435 |
- /**
- */
- import { request } from '../../utils/request'
- /**
- * 获取通知消息
- */
- export const getMyNotify = (userId: string): Promise<any> => {
- let url = `/mobile/notify/${userId}`
- return request({
- url: url,
- method: 'GET'
- })
- }
- /**
- * 注册设备
- */
- export const registerServer = (cid: string): Promise<any> => {
- let url = `/push/register/${cid}`
- return request({
- url: url,
- method: 'GET',
- })
- }
- /**
- * 查询首页工单统计数据
- */
- export const selectHomePageData = (): Promise<any> => {
- return request({
- url: '/gxt/repairOrder/selectHomePageData',
- method: 'GET'
- })
- }
|