1
2
3
4
5
6
7
8
9
10
11
12
13
| import {request} from '@/plugins';
|
|
| export const changeBatchStatusByGeneral = (data) => {
| return request({
| url: `/root_demo_cal/fee/changeBatchStatusByGeneral`,
| method: 'post',
| data,
| options: {
| successMessage: '操作成功!'
| }
| })
| };
|
|