• This project
    • Loading...
  • Sign in

Bad / exercising · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • exercising
  • sheep
  • api
  • join
  • join.js
  • 训计api文件提交
    3b40805c
    by qxm
    2026-06-12 15:34:49 +0800  
    Browse Files
join.js 240 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import request from '@/sheep/request';

const joinApi = {
	//获取特定城市包月团课卡
	joinhongxing:(data)=>{
		return request({
			url:`/app/fitness/intention`,
			method:'POST',
			params:data
		});
	}
};

export default joinApi;