| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import request from '@/utils/request'
- // 查询费用列表
- export function listCost(query) {
- return request({
- url: '/sc-service/cost/list',
- method: 'get',
- params: query
- })
- }
- // 查询发票列表
- export function selectInvoiceList(query) {
- return request({
- url: '/sc-service/cost/listInvoice',
- method: 'get',
- params: query
- })
- }
- // 查询开票地址信息
- export function listInvoice(scyId,zciId) {
- return request({
- url: '/sc-service/cost/invoiceList/'+ scyId +'/' + zciId,
- method: 'get'
- })
- }
- // 申请开票
- export function applyInvoice(data) {
- return request({
- url: '/sc-service/cost/applyInvoice',
- method: 'put',
- data: data
- })
- }
- // 开票或冲红或修改物流单号
- export function invoicing(data) {
- return request({
- url: '/sc-service/cost/invoicing',
- method: 'put',
- data: data
- })
- }
- // 开票作废
- export function daleteInvoice(zciId) {
- return request({
- url: '/sc-service/cost/' + zciId,
- method: 'delete'
- })
- }
- // 查询当前操作员
- export function getUser() {
- return request({
- url: '/sc-service/rel/getUser',
- method: 'get'
- })
- }
- // 去缴费
- export function changeZfiStatus(data) {
- return request({
- url: '/sc-service/cost/changeZfiStatus',
- method: 'put',
- data: data
- })
- }
|