All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.saber.api.js.vm Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
import request from '@/router/axios';

export const getList = (current, size, params) => {
  return request({
    url: '/api/$!{serviceName}/$!{entityKey}/list',
    method: 'get',
    params: {
      ...params,
      current,
      size,
    }
  })
}

export const getDetail = (id) => {
  return request({
    url: '/api/$!{serviceName}/$!{entityKey}/detail',
    method: 'get',
    params: {
      id
    }
  })
}

export const remove = (ids) => {
  return request({
    url: '/api/$!{serviceName}/$!{entityKey}/remove',
    method: 'post',
    params: {
      ids,
    }
  })
}

export const add = (row) => {
  return request({
    url: '/api/$!{serviceName}/$!{entityKey}/submit',
    method: 'post',
    data: row
  })
}

export const update = (row) => {
  return request({
    url: '/api/$!{serviceName}/$!{entityKey}/submit',
    method: 'post',
    data: row
  })
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy