12345678910111213141516171819202122232425 |
- import request from "@/utils/request"
- // 获取精选企业列表
- export const getVersion = () => {
- return request({
- url: '/app-api/menduner/system/get/version',
- method: 'GET',
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- export const sendError = (data) => {
- return request({
- url: '/app-api/menduner/system/error-record/create',
- method: 'POST',
- data,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
|