12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * @description 公共模块
- */
- import request from '@/utils/request'
- // 各种类型集合
- export const getTypeList = () => (request({
- method: "POST",
- url: "common/get_type_list"
- }))
- /*
- // 获取出差类型(室内室外)
- export const getAwayType = () => (request({
- method: 'POST',
- url: "common/get_evection_type_list",
- }))
- // 模块列表
- export const getModuleList = () => (request({
- method: 'POST',
- url: 'get_module_list'
- }))
- // 缓急程度列表
- export const getDegreeList = () => (request({
- method: 'POST',
- url: 'get_degree_list'
- }))
- // 采购类型列表
- export const getApplyTypeList = () => (request({
- method: 'POST',
- url: 'get_apply_type_list'
- }))
- // 采购支付方式列表
- export const getApplyPayTypeList = () => (request({
- method: 'POST',
- url: 'get_apply_pay_type_list'
- }))
- // 呈批类型列表
- export const getOfferTypeList = () => (request({
- method: 'POST',
- url: 'get_offer_type_list'
- }))
- // 请假类型列表
- export const getLeaveTypeList = () => (request({
- method: 'POST',
- url: 'get_leave_type_list'
- }))
- // 维修类型列表
- export const getMaintainTypeList = () => (request({
- method: 'POST',
- url: 'get_maintain_type_list'
- }))
- // 合同类型列表
- export const getContractTypeList = () => (request({
- method: 'POST',
- url: 'get_contract_type_list'
- }))
- */
|