123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import request from '@/utils/request'
- // 创建签约管理
- export function createSigningInfo(data) {
- return request({
- url: '/supplier/signing-info/create',
- method: 'post',
- data: data
- })
- }
- // 更新签约管理
- export function updateSigningInfo(data) {
- return request({
- url: '/supplier/signing-info/update',
- method: 'put',
- data: data
- })
- }
- // 删除签约管理
- export function deleteSigningInfo(id) {
- return request({
- url: '/supplier/signing-info/delete?id=' + id,
- method: 'delete'
- })
- }
- // 获得签约管理
- export function getSigningInfo(id) {
- return request({
- url: '/supplier/signing-info/get?id=' + id,
- method: 'get'
- })
- }
- // 获得签约管理分页
- export function getSigningInfoPage(query) {
- return request({
- url: '/supplier/signing-info/page',
- method: 'get',
- params: query
- })
- }
- // 导出签约管理 Excel
- export function exportSigningInfoExcel(query) {
- return request({
- url: '/supplier/signing-info/export-excel',
- method: 'get',
- params: query,
- responseType: 'blob'
- })
- }
|