|
@@ -268,19 +268,19 @@
|
|
|
getVoteType() {
|
|
|
if(this.voteInfo != undefined) {
|
|
|
if(this.voteInfo.times == "once") {
|
|
|
- return "单次"
|
|
|
+ return this.$t("studentWeb.vote.type.once")
|
|
|
}
|
|
|
else if(this.voteInfo.times == "day") {
|
|
|
- return "每日"
|
|
|
+ return this.$t("studentWeb.vote.type.day")
|
|
|
}
|
|
|
else if(this.voteInfo.times == "week") {
|
|
|
- return "每周"
|
|
|
+ return this.$t("studentWeb.vote.type.week")
|
|
|
}
|
|
|
else if(this.voteInfo.times == "month") {
|
|
|
- return "每月"
|
|
|
+ return this.$t("studentWeb.vote.type.month")
|
|
|
}
|
|
|
else if(this.voteInfo.times == "year") {
|
|
|
- return "每年"
|
|
|
+ return this.$t("studentWeb.vote.type.year")
|
|
|
}
|
|
|
}
|
|
|
},
|