12345678910111213141516171819202122232425262728293031 |
- import { request } from "@/utils/request";
- export const getlistNew = (data) => {
- return request({
- url: `/ucenter/user/camera/listNew`,
- method: "post",
- data,
- config: {
- timeout: 10000,
- loading: true,//隐藏进度条
- headers: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- },
- });
- };
- export const findIncrementList = (data) => {
- return request({
- url: `/ucenter/user/increment/findIncrementList`,
- method: "post",
- data,
- config: {
- timeout: 10000,
- loading: true,//隐藏进度条
- headers: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- },
- });
- };
|