123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- import {
- httpAxios_gym,
- httpAxios_gyt,
- httpAxios_klx
- // httpAxios_gyt
- } from "@/api/ApiInstance"
- /** 管乐迷 */
- export const queryTree_gym = () => {
- return httpAxios_gym.axioseRquest({
- method: "get",
- url: "/api-teacher/sysMusicScoreCategories/queryTree"
- })
- }
- export const querySubjectIds_gym = (data?: any) => {
- return httpAxios_gym.axioseRquest({
- method: "get",
- url: "/api-teacher/sysMusicScoreAccompaniment/querySubjectIds",
- params: data
- })
- }
- export const queryPage2_gym = (data: any) => {
- return httpAxios_gym.axioseRquest({
- method: "get",
- url: "/api-teacher/sysMusicScore/queryPageSimple",
- params: data
- })
- }
- export const cbsDetail_gym = (id: number, data?: any) => {
- return httpAxios_gym.axioseRquest({
- method: "get",
- url: `/api-teacher/musicSheet/cbsDetail/${id}`,
- params: data
- })
- }
- /**
- * 管乐团
- */
- export const queryTree_gyt = (data: any) => {
- return httpAxios_gyt.axioseRquest({
- method: "post",
- url: "/api-teacher/musicSheetCategories/page",
- data
- })
- }
- export const querySubjectIds_gyt = (data?: any) => {
- return httpAxios_gyt.axioseRquest({
- method: "get",
- url: "/api-teacher/subject/musicList",
- params: data
- })
- }
- export const queryPage2_gyt = (data: any) => {
- return httpAxios_gyt.axioseRquest({
- method: "post",
- url: "/api-teacher/musicSheet/page",
- data
- })
- }
- /**
- * 酷乐秀
- */
- export const queryTree_klx = (data?: any) => {
- return httpAxios_klx.axioseRquest({
- method: "get",
- url: "/api-teacher/tenantGroupAlbum/buyAlbumInfo",
- params: data
- })
- }
- export const querySubjectIds_klx = (data?: any) => {
- return httpAxios_klx.axioseRquest({
- method: "get",
- url: "/api-teacher/open/subject/queryPage",
- params: data
- })
- }
- export const queryPage2_klx = (data: any) => {
- return httpAxios_klx.axioseRquest({
- method: "post",
- url: "/api-teacher/tenantAlbumMusic/page",
- data
- })
- }
- export const selectCondition_klx = (data: any) => {
- return httpAxios_klx.axioseRquest({
- method: "post",
- url: "/api-teacher/tenantGroupAlbum/selectCondition",
- data
- })
- }
|