准备调整就餐和退费
This commit is contained in:
parent
48cd587477
commit
b34ca07a45
@ -1,5 +1,12 @@
|
||||
import { get, post } from "@/utils/request";
|
||||
|
||||
/**
|
||||
* 校验学生就餐标准情况
|
||||
*/
|
||||
export const checkXsJcApi = async (params: any) => {
|
||||
return await get("/mobile/jz/jc/checkXsJc", params);
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取就餐标准列表
|
||||
*/
|
||||
|
||||
@ -71,25 +71,6 @@ export const getXsXkStatusApi = async (params: any) => {
|
||||
return await get("/mobile/jz/xkkc/list", params);
|
||||
};
|
||||
|
||||
/**
|
||||
* 选课相关其他接口
|
||||
*/
|
||||
export const xkAddXkqdApi = async (params: any) => {
|
||||
return await post("/mobile/xk/addXkqd", params);
|
||||
};
|
||||
|
||||
export const xkListApi = async (params: any) => {
|
||||
return await get("/mobile/xk/list", params);
|
||||
};
|
||||
|
||||
export const xkXkqdApi = async (params: any) => {
|
||||
return await get("/mobile/xk/xkqd", params);
|
||||
};
|
||||
|
||||
export const xkxkbmInfoApi = async (params: any) => {
|
||||
return await get("/mobile/xk/xkbmInfo", params);
|
||||
};
|
||||
|
||||
export const xkqddeleteApi = async (params: any) => {
|
||||
return await post("/api/xkqd/delete?ids=" + params.ids);
|
||||
};
|
||||
|
||||
@ -233,12 +233,18 @@ const menuItems = ref([
|
||||
lxId: '816059832',
|
||||
},
|
||||
{
|
||||
title: "就餐缴费",
|
||||
title: "就餐报名",
|
||||
icon: "/static/base/home/contacts-book-3-line.png",
|
||||
path: "/pages/base/gzs/index",
|
||||
permissionKey: "school-jcjf",
|
||||
lxId: 'JC',
|
||||
},
|
||||
{
|
||||
title: "退费申请",
|
||||
icon: "/static/base/home/contacts-book-3-line.png",
|
||||
path: "/pages/base/tf/index",
|
||||
permissionKey: "school-jlb",
|
||||
},
|
||||
]);
|
||||
|
||||
// 通知公告数据
|
||||
|
||||
0
src/pages/base/tf/indexvue
Normal file
0
src/pages/base/tf/indexvue
Normal file
@ -1,4 +1,5 @@
|
||||
import { checkXsXkApi } from "@/api/base/xkApi";
|
||||
import { checkXsJcApi } from "@/api/base/jcApi";
|
||||
import { useUserStore } from "@/store/modules/user";
|
||||
import { useDataStore } from "@/store/modules/data";
|
||||
const userStore = useUserStore();
|
||||
@ -46,7 +47,7 @@ export const PageUtils = {
|
||||
switch (lxId) {
|
||||
// 就餐逻辑单独处理
|
||||
case "JC": {
|
||||
|
||||
|
||||
} break;
|
||||
// 默认当作 选课的选课类型ID(xkLxId)处理
|
||||
default: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user