| 1234567891011121314151617181920 |
- import request from '@/router/axios';
- export const getList = (params) => {
- return request({
- url: '/api/kd-scientific/archive/fjbczl',
- method: 'get',
- params: {
- ...params,
- }
- })
- }
- export const update = (row) => {
- return request({
- url: '/api/kd-scientific/archive/fjbczl',
- method: 'post',
- data: row
- })
- }
|