12345678910111213141516171819202122232425262728293031 |
- import {
- request
- } from '../utils/request'
- //客商用户获取对账信息
- export function getReconcile(data) {
- return request({
- url: '/appStand/getReconcile',
- method: 'post',
- data: data,
- isAddress:true,
- })
- }
- //客商保存对账信息
- export function saveReconcile(data) {
- return request({
- url: '/appStand/saveReconcile',
- method: 'post',
- data: data,
- isAddress:true,
- })
- }
- //客商获取已对账列表
- export function queryReconcile(data) {
- return request({
- url: '/appStand/queryReconcile',
- method: 'post',
- data: data,
- isAddress:true,
- })
- }
|