12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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: '/finance/other/list',
- method: 'get',
- params: query
- })
- }
- // 查询单条数据
- export function single(fId) {
- return request({
- // url: '/basicdata/corps/selectCustomerDriverList',
- url: '/finance/other/' + fId,
- method: 'get',
- })
- }
- // 新增
- export function preservation(data) {
- return request({
- url: '/finance/other/save',
- method: 'post',
- data: data
- })
- }
- // 删除
- export function singleDeletion(fId) {
- return request({
- url: '/finance/other/remove/' + fId,
- method: 'get'
- })
- }
- // 撤销
- export function revokeContainerPort(fId) {
- return request({
- url: '/finance/other/revoke/' + fId,
- method: 'get'
- })
- }
- // 提交
- export function submit(data) {
- return request({
- url: '/finance/other/add',
- method: 'post',
- data: data
- })
- }
- // 基础资料
- export function allInformation() {
- return request({
- url: '/warehouseBusiness/containerPort/selectBasicInformation',
- method: 'get',
- })
- }
|