mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-15 22:06:43 +08:00
修改学习天数调用方法调用错误
This commit is contained in:
@@ -298,20 +298,24 @@ export default {
|
|||||||
this.getDays();
|
this.getDays();
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
|
|
||||||
|
// 经验值排行榜(下拉框事件)
|
||||||
experienceCommand(e) {
|
experienceCommand(e) {
|
||||||
this.experience.field = e;
|
this.experience.field = e;
|
||||||
this.experience.name = this.translate(e)
|
this.experience.name = this.translate(e)
|
||||||
this.getExperience();
|
this.getExperience();
|
||||||
},
|
},
|
||||||
|
// 学习时长(下拉框事件)
|
||||||
durationCommand(e) {
|
durationCommand(e) {
|
||||||
this.learningDuration.field = e;
|
this.learningDuration.field = e;
|
||||||
this.learningDuration.name = this.translate(e)
|
this.learningDuration.name = this.translate(e)
|
||||||
this.getDuration();
|
this.getDuration();
|
||||||
},
|
},
|
||||||
|
// 学习天数(下拉框事件)
|
||||||
daysCommand(e) {
|
daysCommand(e) {
|
||||||
this.learningDays.field = e;
|
this.learningDays.field = e;
|
||||||
this.learningDays.name = this.translate(e)
|
this.learningDays.name = this.translate(e)
|
||||||
this.getExperience();
|
this.getDays();
|
||||||
},
|
},
|
||||||
getExperience() {//经验值
|
getExperience() {//经验值
|
||||||
let data = {
|
let data = {
|
||||||
|
|||||||
Reference in New Issue
Block a user