12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import request, { postBlob, handleImport, getBlob } from '@/utils/request'
- export function getListCostBillV2(params) {
- return request({
- url: `/customer/costBill/list?moduleId=${params.moduleId}`,
- method: 'post',
- data: params
- })
- }
- export function getOrderTrackList2(params) {
- return request({
- url: `/customer/frontOrder/orderTrackList?moduleId=${params.moduleId}`,
- method: 'post',
- data: params
- })
- }
- export function exportListCostBillV2(data, name) {
- return postBlob({
- url: '/customer/costBill/list/export',
- data,
- name
- })
- }
- export function getListSubCostBillV2(params) {
- return request({
- url: `/customer/costBill/listV2?moduleId=${params.moduleId}`,
- method: 'post',
- data: params
- })
- }
- export function exportListSubCostBillV2(data, name) {
- return postBlob({
- url: '/customer/costBill/listV2/export',
- data,
- name
- })
- }
- export function getInstalDetail(params) {
- return request({
- url: '/customer/install/detail',
- method: 'get',
- params
- })
- }
|