|
@@ -93,6 +93,7 @@ export function ClassAdd(postdata) {
|
|
|
let url = headapi + 'v1/Class/ClassAdd';
|
|
let url = headapi + 'v1/Class/ClassAdd';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程统计
|
|
// 课程统计
|
|
|
export function ClassStatistics(postdata) {
|
|
export function ClassStatistics(postdata) {
|
|
|
let url = headapi + 'v1/Class/ClassStatistics';
|
|
let url = headapi + 'v1/Class/ClassStatistics';
|
|
@@ -110,6 +111,7 @@ export function ClassDetailOne(postdata) {
|
|
|
let url = headapi + 'v1/Class/ClassDetailOne';
|
|
let url = headapi + 'v1/Class/ClassDetailOne';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// √ 课程基本信息修改
|
|
// √ 课程基本信息修改
|
|
|
export function ClassEdit(postdata) {
|
|
export function ClassEdit(postdata) {
|
|
|
let url = headapi + 'v1/Class/ClassEdit';
|
|
let url = headapi + 'v1/Class/ClassEdit';
|
|
@@ -145,47 +147,56 @@ export function ClassVisibleStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/Class/ClassVisibleStatusEdit';
|
|
let url = headapi + 'v1/Class/ClassVisibleStatusEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// order
|
|
// order
|
|
|
// 最新预约列表查询
|
|
// 最新预约列表查询
|
|
|
export function LastOrderQuery(postdata) {
|
|
export function LastOrderQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/LastOrderQuery';
|
|
let url = headapi + 'v1/Order/LastOrderQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 管理员今日预约添加
|
|
// 管理员今日预约添加
|
|
|
export function OrderAddByManager(postdata) {
|
|
export function OrderAddByManager(postdata) {
|
|
|
let url = headapi + 'v1/Order/OrderAddByManager';
|
|
let url = headapi + 'v1/Order/OrderAddByManager';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 管理员今日预约取消
|
|
// 管理员今日预约取消
|
|
|
export function OrderCancelByManager(postdata) {
|
|
export function OrderCancelByManager(postdata) {
|
|
|
let url = headapi + 'v1/Order/OrderCancelByManager';
|
|
let url = headapi + 'v1/Order/OrderCancelByManager';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 预约记录查询
|
|
// 预约记录查询
|
|
|
export function OrderListQuery(postdata) {
|
|
export function OrderListQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/OrderListQuery';
|
|
let url = headapi + 'v1/Order/OrderListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 今日预约统计
|
|
// 今日预约统计
|
|
|
export function OrderStatistics(postdata) {
|
|
export function OrderStatistics(postdata) {
|
|
|
let url = headapi + 'v1/Order/OrderStatistics';
|
|
let url = headapi + 'v1/Order/OrderStatistics';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 今日课程预约总览
|
|
// 今日课程预约总览
|
|
|
export function TodayClassOrderQuery(postdata) {
|
|
export function TodayClassOrderQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/TodayClassOrderQuery';
|
|
let url = headapi + 'v1/Order/TodayClassOrderQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程预约列表
|
|
// 课程预约列表
|
|
|
export function ClassOrderQuery(postdata) {
|
|
export function ClassOrderQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/ClassOrderQuery';
|
|
let url = headapi + 'v1/Order/ClassOrderQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 今日会员预约列表查询
|
|
// 今日会员预约列表查询
|
|
|
export function TodayVipOrderQuery(postdata) {
|
|
export function TodayVipOrderQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/TodayVipOrderQuery';
|
|
let url = headapi + 'v1/Order/TodayVipOrderQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员预约列表查询
|
|
// 会员预约列表查询
|
|
|
export function VipUserOrderQuery(postdata) {
|
|
export function VipUserOrderQuery(postdata) {
|
|
|
let url = headapi + 'v1/Order/VipUserOrderQuery';
|
|
let url = headapi + 'v1/Order/VipUserOrderQuery';
|
|
@@ -199,26 +210,31 @@ export function ClassOngoingList(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOngoingList';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOngoingList';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表预览
|
|
// 课程表预览
|
|
|
export function SchoolTimetablePreview(postdata) {
|
|
export function SchoolTimetablePreview(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/SchoolTimetablePreview';
|
|
let url = headapi + 'v1/SchoolTimeTable/SchoolTimetablePreview';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程详情判断是否可删除
|
|
// 课程详情判断是否可删除
|
|
|
export function STTDetailAllowDelCheck(postdata) {
|
|
export function STTDetailAllowDelCheck(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailAllowDelCheck';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailAllowDelCheck';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 下课记录详情删除
|
|
// 下课记录详情删除
|
|
|
export function ClassOverDetailDel(postdata) {
|
|
export function ClassOverDetailDel(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailDel';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailDel';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表详情微信可预约状态修改
|
|
// 课程表详情微信可预约状态修改
|
|
|
export function STTDetailWxOrderEdit(postdata) {
|
|
export function STTDetailWxOrderEdit(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailWxOrderEdit';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailWxOrderEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 某日课程表查询
|
|
// 某日课程表查询
|
|
|
export function ClassListByOrderDate(postdata) {
|
|
export function ClassListByOrderDate(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassListByOrderDate';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassListByOrderDate';
|
|
@@ -231,26 +247,31 @@ export function ClassOverConfirm(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverConfirm';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverConfirm';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 下课记录详情添加
|
|
// 下课记录详情添加
|
|
|
export function ClassOverDetailAdd(postdata) {
|
|
export function ClassOverDetailAdd(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailAdd';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailAdd';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 下课记录详情列表
|
|
// 下课记录详情列表
|
|
|
export function ClassOverDetailListQuery(postdata) {
|
|
export function ClassOverDetailListQuery(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailListQuery';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 下课记录详情状态修改
|
|
// 下课记录详情状态修改
|
|
|
export function ClassOverDetailStatusEdit(postdata) {
|
|
export function ClassOverDetailStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailStatusEdit';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverDetailStatusEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 待下课课程列表
|
|
// 待下课课程列表
|
|
|
export function ClassOverPrepare(postdata) {
|
|
export function ClassOverPrepare(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverPrepare';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassOverPrepare';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 下课准备
|
|
// 下课准备
|
|
|
export function ClassPreFinishListQuery(postdata) {
|
|
export function ClassPreFinishListQuery(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassPreFinishListQuery';
|
|
let url = headapi + 'v1/SchoolTimeTable/ClassPreFinishListQuery';
|
|
@@ -262,6 +283,7 @@ export function STTBasicAdd(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicAdd';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicAdd';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表基本信息修改
|
|
// 课程表基本信息修改
|
|
|
export function STTBasicEdit(postdata) {
|
|
export function STTBasicEdit(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicEdit';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicEdit';
|
|
@@ -273,11 +295,13 @@ export function STTBasicListQuery(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicListQuery';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表上下线状态修改
|
|
// 课程表上下线状态修改
|
|
|
export function STTBasicOfflineEdit(postdata) {
|
|
export function STTBasicOfflineEdit(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicOfflineEdit';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicOfflineEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表状态修改
|
|
// 课程表状态修改
|
|
|
export function STTBasicStatusEdit(postdata) {
|
|
export function STTBasicStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicStatusEdit';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTBasicStatusEdit';
|
|
@@ -289,16 +313,19 @@ export function STTDetailBatchSave(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailBatchSave';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailBatchSave';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表详情列表查询
|
|
// 课程表详情列表查询
|
|
|
export function STTDetailListQuery(postdata) {
|
|
export function STTDetailListQuery(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailListQuery';
|
|
let url = headapi + 'v1/SchoolTimeTable/STTDetailListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 复制课程表
|
|
// 复制课程表
|
|
|
export function SchoolTimeTableCopy(postdata) {
|
|
export function SchoolTimeTableCopy(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/SchoolTimeTableCopy';
|
|
let url = headapi + 'v1/SchoolTimeTable/SchoolTimeTableCopy';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 今日未上课课程列表查询
|
|
// 今日未上课课程列表查询
|
|
|
export function WaitingBeginClassList(postdata) {
|
|
export function WaitingBeginClassList(postdata) {
|
|
|
let url = headapi + 'v1/SchoolTimeTable/WaitingBeginClassList';
|
|
let url = headapi + 'v1/SchoolTimeTable/WaitingBeginClassList';
|
|
@@ -311,11 +338,13 @@ export function ShopAdd(postdata) {
|
|
|
let url = headapi + 'v1/Shop/ShopAdd';
|
|
let url = headapi + 'v1/Shop/ShopAdd';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 店铺微信预约状态修改
|
|
// 店铺微信预约状态修改
|
|
|
export function ShopWxStatusEdit(postdata) {
|
|
export function ShopWxStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/Shop/ShopWxStatusEdit';
|
|
let url = headapi + 'v1/Shop/ShopWxStatusEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 店铺单条查询
|
|
// 店铺单条查询
|
|
|
export function ShopDetailOne(postdata) {
|
|
export function ShopDetailOne(postdata) {
|
|
|
let url = headapi + 'v1/Shop/ShopDetailOne';
|
|
let url = headapi + 'v1/Shop/ShopDetailOne';
|
|
@@ -327,6 +356,7 @@ export function ShopDetailQuery(postdata) {
|
|
|
let url = headapi + 'v1/User/ShopDetailQuery';
|
|
let url = headapi + 'v1/User/ShopDetailQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 操作日志列表查询
|
|
// 操作日志列表查询
|
|
|
export function OptLogListQuery(postdata) {
|
|
export function OptLogListQuery(postdata) {
|
|
|
let url = headapi + 'v1/User/OptLogListQuery';
|
|
let url = headapi + 'v1/User/OptLogListQuery';
|
|
@@ -388,6 +418,7 @@ export function SttPlanCopy(postdata) {
|
|
|
let url = headapi + 'v1/SttPlan/SttPlanCopy';
|
|
let url = headapi + 'v1/SttPlan/SttPlanCopy';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表模板基本信息状态修改
|
|
// 课程表模板基本信息状态修改
|
|
|
export function SttPlanBasicStatusEdit(postdata) {
|
|
export function SttPlanBasicStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/SttPlan/SttPlanBasicStatusEdit';
|
|
let url = headapi + 'v1/SttPlan/SttPlanBasicStatusEdit';
|
|
@@ -399,6 +430,7 @@ export function SttPlanDetailListQuery(postdata) {
|
|
|
let url = headapi + 'v1/SttPlan/SttPlanDetailListQuery';
|
|
let url = headapi + 'v1/SttPlan/SttPlanDetailListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 课程表模板发布
|
|
// 课程表模板发布
|
|
|
export function SttPlanPublish(postdata) {
|
|
export function SttPlanPublish(postdata) {
|
|
|
let url = headapi + 'v1/SttPlan/SttPlanPublish';
|
|
let url = headapi + 'v1/SttPlan/SttPlanPublish';
|
|
@@ -417,16 +449,19 @@ export function TeacherAdd(postdata) {
|
|
|
let url = headapi + 'v1/Teacher/TeacherAdd';
|
|
let url = headapi + 'v1/Teacher/TeacherAdd';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 教练信息修改 √
|
|
// 教练信息修改 √
|
|
|
export function TeacherEdit(postdata) {
|
|
export function TeacherEdit(postdata) {
|
|
|
let url = headapi + 'v1/Teacher/TeacherEdit';
|
|
let url = headapi + 'v1/Teacher/TeacherEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 教练信息列表查询 √
|
|
// 教练信息列表查询 √
|
|
|
export function TeacherListQuery(postdata) {
|
|
export function TeacherListQuery(postdata) {
|
|
|
let url = headapi + 'v1/Teacher/TeacherListQuery';
|
|
let url = headapi + 'v1/Teacher/TeacherListQuery';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 教练状态修改 √
|
|
// 教练状态修改 √
|
|
|
export function TeacherStatusEdit(postdata) {
|
|
export function TeacherStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/Teacher/TeacherStatusEdit';
|
|
let url = headapi + 'v1/Teacher/TeacherStatusEdit';
|
|
@@ -463,21 +498,25 @@ export function ShopManagerStatusEdit(postdata) {
|
|
|
let url = headapi + 'v1/User/ShopManagerStatusEdit';
|
|
let url = headapi + 'v1/User/ShopManagerStatusEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员用户课时调整
|
|
// 会员用户课时调整
|
|
|
export function VipUserHourEdit(postdata) {
|
|
export function VipUserHourEdit(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserHourEdit';
|
|
let url = headapi + 'v1/User/VipUserHourEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员统计
|
|
// 会员统计
|
|
|
export function VipUserStatistics(postdata) {
|
|
export function VipUserStatistics(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserStatistics';
|
|
let url = headapi + 'v1/User/VipUserStatistics';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员课程增删
|
|
// 会员课程增删
|
|
|
export function VipUserClassEdit(postdata) {
|
|
export function VipUserClassEdit(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserClassEdit';
|
|
let url = headapi + 'v1/User/VipUserClassEdit';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员有效期调整
|
|
// 会员有效期调整
|
|
|
export function VipUserExpEdit(postdata) {
|
|
export function VipUserExpEdit(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserExpEdit';
|
|
let url = headapi + 'v1/User/VipUserExpEdit';
|
|
@@ -495,6 +534,7 @@ export function VipUserEdit(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserEdit ';
|
|
let url = headapi + 'v1/User/VipUserEdit ';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
// 会员消费记录查询
|
|
// 会员消费记录查询
|
|
|
export function VipUserConsumeListQuery(postdata) {
|
|
export function VipUserConsumeListQuery(postdata) {
|
|
|
let url = headapi + 'v1/User/VipUserConsumeListQuery ';
|
|
let url = headapi + 'v1/User/VipUserConsumeListQuery ';
|
|
@@ -525,6 +565,7 @@ export function QueryTakeCustomerByName(postdata) {
|
|
|
let url = headapi + 'v1/Take/QueryTakeCustomerByName ';
|
|
let url = headapi + 'v1/Take/QueryTakeCustomerByName ';
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
//
|
|
//
|
|
|
// 绑定Take用户
|
|
// 绑定Take用户
|
|
|
export function BindTakeCustomer(postdata) {
|
|
export function BindTakeCustomer(postdata) {
|
|
@@ -532,6 +573,68 @@ export function BindTakeCustomer(postdata) {
|
|
|
return getApiBasic(url, postdata);
|
|
return getApiBasic(url, postdata);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+// 查询商家区域
|
|
|
|
|
+export function QueryShopVenue(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/QueryShopVenue ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 添加商家区域
|
|
|
|
|
+export function AddShopVenue(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/AddShopVenue ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 修改商家区域
|
|
|
|
|
+export function EditShopVenue(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/EditShopVenue ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 修改商家区域状态
|
|
|
|
|
+export function ShopVenueStatusEdit(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/ShopVenueStatusEdit ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 查询商家区域设备
|
|
|
|
|
+export function QueryVenueEquip(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/QueryVenueEquip ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 修改场馆设备状态
|
|
|
|
|
+export function ShopVenueEquipEditStatus(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/ShopVenueEquipEditStatus ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 添加场馆设备
|
|
|
|
|
+export function AddShopVenueEquip(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/AddShopVenueEquip ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 修改场馆设备
|
|
|
|
|
+export function EditShopVenueEquip(postdata) {
|
|
|
|
|
+ let url = headbpi + 'v1/Shop/EditShopVenueEquip ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+// 11/20 新增
|
|
|
|
|
+// 待下课课程列表
|
|
|
|
|
+export function ClassDetailQuery(postdata) {
|
|
|
|
|
+ let url = headapi + 'v1/SchoolTimeTable/ClassDetailQuery ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 上课准备
|
|
|
|
|
+export function ClassStartPrepare(postdata) {
|
|
|
|
|
+ let url = headapi + 'v1/SchoolTimeTable/ClassStartPrepare ';
|
|
|
|
|
+ return getApiBasic(url, postdata);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|