24 lines
935 B
JavaScript
24 lines
935 B
JavaScript
import syhttp from "@/utils/syhttp.js";
|
|
import http from "@/utils/http.js";
|
|
|
|
// 通用字典
|
|
|
|
//养殖基地类型
|
|
export const farmTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'farm_type'});
|
|
|
|
//养殖种类
|
|
export const breedTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'breed_type'});
|
|
|
|
//栏舍类型
|
|
export const fenceHouseTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'fence_house_type'});
|
|
|
|
//动物类型
|
|
export const animalTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'animal_type'});
|
|
|
|
//饲料类型
|
|
export const feedingTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'feeding_type'});
|
|
|
|
//离栏类型
|
|
export const leaveFenceHouseTypeLists = () => syhttp.get('/common/dict_data_lists_by_type_value', {type_value: 'leave_fence_house_type'});
|
|
|