1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询生命周期列表
- export function listLifeCycle(query) {
- return request({
- url: '/product/lifeCycle/list',
- method: 'get',
- params: query
- })
- }
- // 查询生命周期详细
- export function getLifeCycle(id) {
- return request({
- url: '/product/lifeCycle/' + id,
- method: 'get'
- })
- }
- // 新增生命周期
- export function addLifeCycle(data) {
- return request({
- url: '/product/lifeCycle',
- method: 'post',
- data: data
- })
- }
- // 修改生命周期
- export function updateLifeCycle(data) {
- return request({
- url: '/product/lifeCycle',
- method: 'put',
- data: data
- })
- }
- // 删除生命周期
- export function delLifeCycle(id) {
- return request({
- url: '/product/lifeCycle/' + id,
- method: 'delete'
- })
- }
|