| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import request from '@/utils/request'
-
-
- // 执行高斯正算
- export function calculate(data) {
- return request({
- url: `/calculate/gaussPositive/calculate`,
- method: 'post',
- data: data
- })
- }
-
- // 导入Excel
- export function importExcel(data) {
- return request({
- url: `/calculate/gaussPositive/import`,
- method: 'post',
- data: data,
- headers: {
- 'Content-Type': 'multipart/form-data'
- }
- })
- }
-
- // 导出高斯正算
- export function exportExcel(data) {
- return request({
- url: `/calculate/gaussPositive/export`,
- method: 'post',
- data: data,
- responseType: 'blob'
- })
- }
-
- // 下载模板
- export function downloadTemplate() {
- return request({
- url: '/calculate/gaussPositive/template',
- method: 'get',
- responseType: 'blob'
- })
- }
|