equipments.js 367 Bytes
import request from '@/sheep/request';

// 动作分类API
const LeftmotionApi = {
	// 获取所有分类(用于左侧导航栏)
	getAllCategories: () => {
		return request({
			url: '/app/motion/categories/get', // 使用正确的接口地址
			method: 'GET',
			custom: {
				showLoading: false,
				auth: true,
			},
		});
	},
}

export default LeftmotionApi;