班级信息,多角色。

This commit is contained in:
zhanglipeng
2021-08-16 11:27:25 +08:00
parent 5e294546fe
commit d235b5367d
14 changed files with 139 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;