移除demo
This commit is contained in:
parent
c75443a56f
commit
12f355e432
@ -1,44 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询客户主表列表
|
||||
export function listCustomer(query) {
|
||||
return request({
|
||||
url: '/mf/customer/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询客户主表详细
|
||||
export function getCustomer(customerId) {
|
||||
return request({
|
||||
url: '/mf/customer/' + customerId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增客户主表
|
||||
export function addCustomer(data) {
|
||||
return request({
|
||||
url: '/mf/customer',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改客户主表
|
||||
export function updateCustomer(data) {
|
||||
return request({
|
||||
url: '/mf/customer',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除客户主表
|
||||
export function delCustomer(customerId) {
|
||||
return request({
|
||||
url: '/mf/customer/' + customerId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询产品树列表
|
||||
export function listProduct(query) {
|
||||
return request({
|
||||
url: '/mf/product/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询产品树详细
|
||||
export function getProduct(productId) {
|
||||
return request({
|
||||
url: '/mf/product/' + productId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增产品树
|
||||
export function addProduct(data) {
|
||||
return request({
|
||||
url: '/mf/product',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改产品树
|
||||
export function updateProduct(data) {
|
||||
return request({
|
||||
url: '/mf/product',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除产品树
|
||||
export function delProduct(productId) {
|
||||
return request({
|
||||
url: '/mf/product/' + productId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询学生信息表列表
|
||||
export function listStudent(query) {
|
||||
return request({
|
||||
url: '/mf/student/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询学生信息表详细
|
||||
export function getStudent(studentId) {
|
||||
return request({
|
||||
url: '/mf/student/' + studentId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增学生信息表
|
||||
export function addStudent(data) {
|
||||
return request({
|
||||
url: '/mf/student',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改学生信息表
|
||||
export function updateStudent(data) {
|
||||
return request({
|
||||
url: '/mf/student',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除学生信息表
|
||||
export function delStudent(studentId) {
|
||||
return request({
|
||||
url: '/mf/student/' + studentId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue
Block a user