| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import request from '@/utils/request'
- export function listExpress(query) {
- return request({
- url: '/customer-business/page',
- method: 'get',
- params: query
- })
- }
- export function createExpress(data) {
- return request({
- url: '/customer-business/add',
- method: 'post',
- data
- })
- }
- export function readExpress(data) {
- return request({
- url: '/customer-business/info',
- method: 'get',
- data
- })
- }
- export function updateExpress(data) {
- return request({
- url: '/customer-business/edit',
- method: 'post',
- data
- })
- }
- export function deleteExpress(query) {
- return request({
- url: '/customer-business/remove',
- method: 'post',
- params:query
- })
- }
- export function setState(query) {
- return request({
- url: '/customer-business/updateStatus',
- method: 'post',
- params:query
- })
- }
|