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.
reagent_manage/vue/src/api/system/resource.js

9 lines
222 B

import request from "@/config/request"
import BASE from './baseUrl'
6 years ago
export const baseUrl = `${BASE}/resource`
6 years ago
export function getAllResources() {
return request.get(`${baseUrl}/getAll`).then(({data}) => data.data)
6 years ago
}