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 }) }