| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import request from '@/service/request';
- import { baseUrl, env } from '@/config/env';
- export class BaseService {
- constructor() {
- const crud = {
- page: 'list',
- list: 'list',
- info: 'detail',
- add: 'add',
- delete: 'delete',
- update: 'update'
- };
- if (!this.permission) {
- this.permission = {};
- }
- for (let i in crud) {
- if (this.namespace) {
- this.permission[i] = this.namespace.replace(/\//g, ':') + ':' + crud[i];
- } else {
- this.permission[i] = crud[i];
- }
- }
- }
- request(options = {}) {
- if (!options.params) {
- options.params = {};
- }
- let path = '';
- if (env.NODE_ENV == 'development') {
- path = this.proxy || baseUrl;
- } else {
- if (this.proxy) {
- path = this.url;
- } else {
- path = baseUrl;
- }
- }
- if (this.namespace) {
- path += '/' + this.namespace;
- }
- options.url = path + options.url;
- // options.params.t = Date.parse(new Date());
- console.log(`[${options.method || 'GET'}]`, options.url);
- return request(options);
- }
- list(params) {
- return this.request({
- url: '/list',
- params: {
- ...params
- }
- });
- }
- page(params) {
- return this.request({
- url: '/list',
- params: {
- ...params
- }
- });
- }
- info(params) {
- return this.request({
- url: '/detail',
- params: {
- ...params
- }
- });
- }
- update(params) {
- console.log('this', this);
- return this.request({
- url: '/update',
- method: 'POST',
- data: {
- ...params
- }
- });
- }
- delete(params) {
- return this.request({
- url: '/delete',
- method: 'POST',
- data: {
- ...params
- }
- });
- }
- add(params) {
- return this.request({
- url: '/add',
- method: 'POST',
- data: {
- ...params
- }
- });
- }
- }
|