游戏数学学习页面调整
This commit is contained in:
parent
e7b4d9b40e
commit
93fc1076b6
@ -35,16 +35,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="text item" v-show="title2">
|
<div class="text item" v-show="title2">
|
||||||
<h3 class="box-card-title">{{title2}}</h3>
|
<h3 class="box-card-title">{{title2}}</h3>
|
||||||
<div class="pad-left">
|
<div class="pad-left" v-html="communicate"></div>
|
||||||
<Editor v-model="communicate" />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="text item" v-show="title3">
|
<div class="text item" v-show="title3">
|
||||||
<h3 class="box-card-title">{{title3}}</h3>
|
<h3 class="box-card-title">{{title3}}</h3>
|
||||||
<div class="pad-left">
|
<div class="pad-left" v-html="sug"></div>
|
||||||
<Editor v-model="sug" />
|
</div>
|
||||||
</div>
|
<div class="text item" v-show="gameplan">
|
||||||
|
<h3 class="box-card-title">{{gameplan}}</h3>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
<div class="pad-left">
|
<div class="pad-left">
|
||||||
<div v-for="(item, index) in planList" :key="index" class="text item">
|
<div v-for="(item, index) in planList" :key="index" class="text item">
|
||||||
<h3 class="box-card-case mr">第{{item.sort}}周 - {{item.name}}</h3>
|
<h3 class="box-card-case mr">第{{item.sort}}周 - {{item.name}}</h3>
|
||||||
@ -99,6 +99,8 @@ export default {
|
|||||||
communicate: "",
|
communicate: "",
|
||||||
//建议
|
//建议
|
||||||
sug: "",
|
sug: "",
|
||||||
|
// 数学游戏方案
|
||||||
|
gameplan: "数学游戏方案",
|
||||||
//活动形式
|
//活动形式
|
||||||
typeOptions: [],
|
typeOptions: [],
|
||||||
//目的
|
//目的
|
||||||
@ -148,7 +150,6 @@ export default {
|
|||||||
getTreeselect() {
|
getTreeselect() {
|
||||||
treeselect().then(response => {
|
treeselect().then(response => {
|
||||||
this.treeOptions = response.data;
|
this.treeOptions = response.data;
|
||||||
console.log(this.treeOptions);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 筛选节点
|
// 筛选节点
|
||||||
@ -159,19 +160,14 @@ export default {
|
|||||||
// 节点单击事件
|
// 节点单击事件
|
||||||
handleNodeClick(data) {
|
handleNodeClick(data) {
|
||||||
this.id = data.id;
|
this.id = data.id;
|
||||||
console.log(data.id);
|
|
||||||
if (data.id >= 9999) {
|
if (data.id >= 9999) {
|
||||||
} else {
|
} else {
|
||||||
this.title = data.label;
|
this.title = data.label;
|
||||||
console.log(this.title);
|
|
||||||
this.getMathDetails();
|
this.getMathDetails();
|
||||||
}
|
}
|
||||||
// console.log(this.dayflowtaskList[date.id])
|
|
||||||
// this.getStandardList();
|
|
||||||
},
|
},
|
||||||
getMathDetails() {
|
getMathDetails() {
|
||||||
getMath(this.id).then(response => {
|
getMath(this.id).then(response => {
|
||||||
//console.log(response);
|
|
||||||
if (response.code == "200") {
|
if (response.code == "200") {
|
||||||
this.title1 = "学习目标";
|
this.title1 = "学习目标";
|
||||||
this.title2 = "表现特征";
|
this.title2 = "表现特征";
|
||||||
@ -179,10 +175,10 @@ export default {
|
|||||||
this.note = response.data.target;
|
this.note = response.data.target;
|
||||||
this.communicate = response.data.feature;
|
this.communicate = response.data.feature;
|
||||||
this.sug = response.data.suggest;
|
this.sug = response.data.suggest;
|
||||||
//this.queryParams.mathid = response.data.id;
|
this.queryParams.mathid = response.data.id;
|
||||||
|
|
||||||
listPlan(this.queryParams).then(req => {
|
listPlan(this.queryParams).then(req => {
|
||||||
//console.log(req);
|
// console.log(req);
|
||||||
if (req.code == "200") {
|
if (req.code == "200") {
|
||||||
this.planList = req.rows;
|
this.planList = req.rows;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user