| 1234567891011121314151617 |
- import { BaseService, Service } from '@/cool';
- import { baseUrl } from '@/config/env';
- import store from '@/store';
- @Service('shop')
- export class ShopService extends BaseService {
- addStaff(data) {
- return this.request({
- url: '/add-staff',
- method: 'POST',
- data: data
- });
- }
- }
- export default new ShopService();
|