123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import request from '@/utils/request'
- import Qs from 'qs'
- export function list${doName}(query) {
- return request({
- method: 'post',
- params: {
- _gp: 'admin.${serviceLowCaseName}',
- _mt: 'list',
- page: query.page,
- limit: query.limit,
- ...query
- }
- })
- }
- export function create${doName}(data) {
- return request({
- method: 'post',
- data: Qs.stringify({
- _gp: 'admin.${serviceLowCaseName}',
- _mt: 'create',
- ${doName}DTO: JSON.stringify(data)
- })
- })
- }
- export function update${doName}(data) {
- return request({
- method: 'post',
- data: Qs.stringify({
- _gp: 'admin.${serviceLowCaseName}',
- _mt: 'edit',
- ${doName}DTO: JSON.stringify(data)
- })
- })
- }
- export function delete${doName}(id) {
- return request({
- method: 'post',
- params: {
- _gp: 'admin.${serviceLowCaseName}',
- _mt: 'delete',
- id: id
- }
- })
- }
|