班级信息,多角色。
This commit is contained in:
@ -9,6 +9,15 @@ export function listMathtermplan(query) {
|
||||
})
|
||||
}
|
||||
|
||||
// 查询游戏数学学期计划列表
|
||||
export function listMathtermplansp(query) {
|
||||
return request({
|
||||
url: '/benyi/mathtermplan/listsp',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询游戏数学学期计划详细
|
||||
export function getMathtermplan(id) {
|
||||
return request({
|
||||
|
@ -9,6 +9,15 @@ export function listMonthplan(query) {
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合月计划列表
|
||||
export function listMonthplansp(query) {
|
||||
return request({
|
||||
url: '/benyi/thememonthplan/listsp',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合月计划详细
|
||||
export function getMonthplan(id) {
|
||||
return request({
|
||||
|
@ -9,6 +9,15 @@ export function listTermplan(query) {
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合学期计划列表
|
||||
export function listTermplansp(query) {
|
||||
return request({
|
||||
url: '/benyi/themetermplan/listsp',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合学期计划详细
|
||||
export function getTermplan(id) {
|
||||
return request({
|
||||
|
@ -9,6 +9,15 @@ export function listWeekplan(query) {
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合周计划(根据月计划明细)列表
|
||||
export function listWeekplansp(query) {
|
||||
return request({
|
||||
url: '/benyi/themeweekplan/listsp',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询主题整合周计划(根据月计划明细)详细
|
||||
export function getWeekplan(id) {
|
||||
return request({
|
||||
|
@ -236,7 +236,7 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
listMathtermplan,
|
||||
listMathtermplansp,
|
||||
getMathtermplan,
|
||||
delMathtermplan,
|
||||
addMathtermplan,
|
||||
@ -323,7 +323,7 @@ export default {
|
||||
/** 查询游戏数学学期计划列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listMathtermplan(this.queryParams).then((response) => {
|
||||
listMathtermplansp(this.queryParams).then((response) => {
|
||||
this.mathtermplanList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
|
@ -270,7 +270,7 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
listMonthplan,
|
||||
listMonthplansp,
|
||||
getMonthplan,
|
||||
updateMonthplan,
|
||||
} from "@/api/benyi/thememonthplan";
|
||||
@ -416,7 +416,7 @@ export default {
|
||||
/** 查询主题整合月计划列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listMonthplan(this.queryParams).then((response) => {
|
||||
listMonthplansp(this.queryParams).then((response) => {
|
||||
this.monthplanList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
|
@ -236,7 +236,7 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
listTermplan,
|
||||
listTermplansp,
|
||||
getTermplan,
|
||||
updateTermplan,
|
||||
} from "@/api/benyi/themetermplan";
|
||||
@ -342,7 +342,7 @@ export default {
|
||||
/** 查询主题整合学期计划列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listTermplan(this.queryParams).then((response) => {
|
||||
listTermplansp(this.queryParams).then((response) => {
|
||||
this.termplanList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
|
@ -265,7 +265,7 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
listWeekplan,
|
||||
listWeekplansp,
|
||||
getWeekplan,
|
||||
updateWeekplan,
|
||||
} from "@/api/benyi/themeweekplan";
|
||||
@ -373,7 +373,7 @@ export default {
|
||||
/** 查询主题整合周计划(根据月计划明细)列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listWeekplan(this.queryParams).then((response) => {
|
||||
listWeekplansp(this.queryParams).then((response) => {
|
||||
this.weekplanList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
|
Reference in New Issue
Block a user