1234567891011121314151617 |
- /*
- * @FilePath: index.ts
- * @Author: 旭颖
- * @Date: 2022-12-16 12:38:12
- * @LastEditors: king
- * @LastEditTime: 2023-01-31 20:44:28
- */
- import request from '@/utils/request'
- //参数列表
- export function upLoad(data: any) {
- return request({
- url: '/check/apply/progress',
- method: 'post',
- data,
- })
- }
|