You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
2.2 KiB

// pages/exercise_setting/exercise_setting.js
import { getNowFormatDate, getNowFormatTime, getNextWeekFormatDate} from "../../../js/utils"
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
exercise: {},
exercise_questions:[],
},
start_publish: function(){
5 years ago
if (!this.exercise_id) {
return;
}
5 years ago
5 years ago
let end_time = getNextWeekFormatDate() + " " + getNowFormatTime();
//end_time = end_time.replace("-11", "-12");
app.api("courses.exercises.publish")({
course_id: this.course_id, check_ids: [this.exercise_id],
end_time: end_time
}).then(res=>{
5 years ago
;
app.showMsg(res);
wx.navigateBack({
delta: 1
});
}
)
},
create_question: function(){
5 years ago
if(!this.exercise_id){
wx.showToast({
title: '请先保存试卷',
icon:"none"
})
return;
}
app.navigateTo({
url: `{question_setting}?exercise_id=${this.exercise_id}`,
})
},
create_exercise: function({detail:{value}}){
5 years ago
;
5 years ago
if(this.exercise_id){
app.api("exercises")({...value, exercise_id: this.exercise_id})
5 years ago
.then(res => {
5 years ago
;
5 years ago
wx.showToast({
title: res.message,
5 years ago
})
})
5 years ago
.catch(e => {
app.showError(e)
5 years ago
});
}else{
app.api("courses.exercises",{method:"POST"})({ ...value, course_id: this.course_id })
5 years ago
.then(res => {
5 years ago
;
this.exercise_id = res.exercise_id
5 years ago
wx.showToast({
title: '创建成功',
})
})
.catch(e => {
app.showError(e);
5 years ago
});
}
},
onLoad: function (options) {
this.intent = options.intent;
this.course_id = options.course_id;
this.exercise_id = options.exercise_id;
},
onShow: function () {
if (this.exercise_id) {
app.api("exercises.edit")({ exercise_id: this.exercise_id })
.then(res => {
5 years ago
;
this.setData(
{
exercise_questions: res.exercise_questions,
exercise: res.exercise
})
})
}
},
onReachBottom: function () {
},
onShareAppMessage(){
}
})