| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- // 查询航线详情列表
- import request from '@/utils/request'
- import { query } from '@/api/track/singleCost'
- export function listCorps(tCntrno) {
- return request({
- url: '/shipping/cntrno/updateTCntrno',
- method: 'post',
- data: {
- tCntrno:tCntrno
- }
- })
- }
- export function postApproval(data) {
- return request({
- url: '/khwarehouse/warehousebills/ruoYiUpdateOrderMessage',
- method: 'post',
- data: data
- })
- }
- // 查询港口详情详细
- export function getCorps(fId) {
- return request({
- url: '/shipping/address/' + fId,
- method: 'get'
- })
- }
- // 获取信息
- export function addmodify(data) {
- return request({
- url: '/khwarehouse/warehousebills/webVersionOrderDetails',
- method: 'post',
- data:data
- })
- }
- // 修改航线详情
- export function updateCorps(data) {
- return request({
- url: '/shipping/address/edit',
- method: 'put',
- data: data
- })
- }
- // 状态修改
- export function changeCorpsStatus(fId, fStatus) {
- const data = {
- fId,
- fStatus
- }
- return request({
- url: '/shipping/route',
- method: 'put',
- data: data
- })
- }
- // 删除客户详情
- export function delCorps(fId) {
- return request({
- url: '/shipping/route/' + fId,
- method: 'delete'
- })
- }
- //集装箱类型
- export function getContainer(query) {
- return request({
- url: '/shipping/cntr/selectRcntrName',
- method: 'get',
- params: query
- })
- }
- // 查询费用信息列表
- export function listFees(query) {
- return request({
- url: '/basicdata/fees/list',
- method: 'get',
- params: query
- })
- }
- // 查询箱型
- export function getCntr(query) {
- return request({
- url: '/shipping/cntr/selectRcntrName',
- method: 'get',
- params: query
- })
- }
- // 查询货物名称
- export function getGoodName(data) {
- return request({
- url: '/khwarehouse/warehousebills/getGoodName',
- method: 'post',
- data: data
- })
- }
- //获取客户信息
- export function getFName(data) {
- return request({
- url: '/khwarehouse/warehousebills/getClientName',
- method: 'post',
- data: data
- })
- }
- //获取审批人
- export function getfee(data) {
- return request({
- url: '/warehouse/paths/projectEndQueryPendingVal',
- method: 'post',
- data: data
- })
- }
|