123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import request from '@/utils/request'
- // 查询客户详情列表
- export function listCorps(query) {
- return request({
- // url: '/basicdata/corps/selectCustomerDriverList',
- url: '/basicdata/corps/list',
- method: 'get',
- params: query
- })
- }
- // 查询客户详情列表
- export function listCorps_s(query) {
- return request({
- url: '/warehouseBusiness/otherFees/list',
- method: 'get',
- params: query
- })
- }
- // 查询单条数据
- export function single(fId) {
- return request({
- // url: '/basicdata/corps/selectCustomerDriverList',
- url: '/warehouseBusiness/otherFees/' + fId,
- method: 'get',
- })
- }
- // 新增
- export function preservation(data) {
- return request({
- url: '/warehouseBusiness/otherFees/save',
- method: 'post',
- data: data
- })
- }
- // 删除
- export function singleDeletion(fId) {
- return request({
- url: '/warehouseBusiness/otherFees/remove/' + fId,
- method: 'get'
- })
- }
- // 撤销
- export function revokeContainerPort(fId) {
- return request({
- url: '/warehouseBusiness/otherFees/revoke/' + fId,
- method: 'get'
- })
- }
- // 提交
- export function submit(data) {
- return request({
- url: '/warehouseBusiness/otherFees/add',
- method: 'post',
- data: data
- })
- }
- // 基础资料
- export function allInformation() {
- return request({
- url: '/warehouseBusiness/containerPort/selectBasicInformation',
- method: 'get',
- })
- }
- //导出
- export function exportData(query) {
- return request({
- url: '/warehouseBusiness/otherFees/export',
- method: 'get',
- params: query
- })
- }
|