You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
902 B
36 lines
902 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* 单位信息列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const umInformationSearch = data => createAPI(`/plm/umInformation/umInformationSearch`,'post',data)
|
|
|
|
/**
|
|
* 查询单位列表
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const searchUmInformationList = data =>createAPI(`/plm/umInformation/searchUmInformationList`,'get',data);
|
|
/**
|
|
* 单位信息新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const umInformationSave = data => createAPI(`/plm/umInformation/umInformationSave`,'post',data)
|
|
/**
|
|
* 单位信息编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const umInformationEdit = data => createAPI(`/plm/umInformation/umInformationEdit`,'post',data)
|
|
/**
|
|
* 单位信息删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const umInformationDelete = data => createAPI(`/plm/umInformation/umInformationDelete`,'post',data)
|
|
|
|
|
|
|