123456789101112131415161718192021222324252627282930313233343536373839 |
- import request from '@/utils/request'
- export function getRecipelistFn(data) {
- return request({
- 'url': '/system/recipe/list',
- 'method': 'get',
- 'data':data
- })
- }
- export function getRecipeAddFn(data) {
- return request({
- 'url': '/system/recipe',
- 'method': 'post',
- 'data':data
- })
- }
- export function getRecipedelFn(data) {
- return request({
- 'url': '/system/recipe/delete/'+data,
- 'method': 'get',
- })
- }
- export function getRecipeEditFn(data) {
- return request({
- 'url': '/system/recipe/put',
- 'method': 'post',
- 'data':data
- })
- }
- export function getRecipedetaFn(data) {
- return request({
- 'url': '/system/recipe/'+data,
- 'method': 'get',
- })
- }
|