123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import request from '@/router/axios';
- // 列表查询
- export function selectInvoiceList(data) {
- return request({
- url: '/api/blade-land/order/list',
- method: 'get',
- params: data
- })
- }
- // 列表单条删除
- export function removeDelegationList(data) {
- return request({
- url: '/api/blade-land/order/remove',
- method: 'post',
- params: data
- })
- }
- // 单据新增修改
- export function saveDelegationList(data) {
- return request({
- url: '/api/blade-land/order/submit',
- method: 'post',
- data: data
- })
- }
- // 单据新增修改
- export function saveSaveList(data) {
- return request({
- url: '/api/blade-land/order/save',
- method: 'post',
- data: data
- })
- }
- // 单据新增
- export function detailDelegationList(data) {
- return request({
- url: '/api/blade-land/order/detail',
- method: 'get',
- params:data
- })
- }
- // 单据新增
- export function removeCollection(data) {
- return request({
- url: '/api/blade-land/orderfee/remove?ids='+data,
- method: 'post'
- })
- }
- //司机查询
- export function driverQueryCollection(data) {
- return request({
- url: '/api/blade-land/order-item/list',
- method: 'get',
- params:data
- })
- }
- //调度箱信息
- export function dispatchCollection(data) {
- return request({
- url: '/api/blade-land/order-item/dispatch',
- method: 'post',
- data:data
- })
- }
- //取消调度箱信息
- export function cancelDispatchCollection(data) {
- return request({
- url: '/api/blade-land/order-item/cancel-dispatch',
- method: 'get',
- params:data
- })
- }
- //派车箱信息
- export function sendACarCollection(data) {
- return request({
- url: '/api/blade-land/order-item/send',
- method: 'post',
- data:data
- })
- }
- //取消派车箱信息
- export function sendACarDispatchCollection(data) {
- return request({
- url: '/api/blade-land/order-item/cancel-send',
- method: 'get',
- params:data
- })
- }
- //受理箱信息
- export function acceptanceCollection(data) {
- return request({
- url: '/api/blade-land/order-item/accept',
- method: 'post',
- data:data
- })
- }
- //取消受理箱信息
- export function acceptanceDispatchCollection(data) {
- return request({
- url: '/api/blade-land/order-item/cancel-accept',
- method: 'get',
- params:data
- })
- }
- //确认完工箱信息
- export function confirmCompletion(data) {
- return request({
- url: '/api/blade-land/order-item/finished',
- method: 'get',
- params:data
- })
- }
- //获取车队司机信息
- export function fleetList() {
- return request({
- url: '/api/blade-client/land-vehicle/vehicle-list',
- method: 'get'
- })
- }
|