123456789101112131415161718192021222324252627282930313233 |
- /*
- * @Author: your name
- * @Date: 2021-07-26 08:54:08
- * @LastEditTime: 2021-08-20 08:58:28
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: /TracerMethodology_PC/src/pages/DepartmentMana/service.js
- */
- import { request } from 'umi';
- //获取 成本分摊前查询列表
- export async function getBeforeCostShareSearchList(params, options) {
- return request('/api/costAccount/costcostinggroup/queryStartAllocation', {
- method: 'GET',
- params:{...params},
- ...(options || {}),
- });
- }
- //导入数据
- export async function addIncomeCostDataImport(body, options) {
- const {fileFormData} = body;
- return request('/api/costAccount/excel/importDataByFileType', {
- method: 'POST',
- data:fileFormData,
- ...(options || {}),
- });
- }
|