|
@@ -74,6 +74,7 @@ export default {
|
|
|
return {
|
|
|
examDatetimeRange: [],
|
|
|
ruleForm: {
|
|
|
+ id: null,
|
|
|
rootOrgId: -1,
|
|
|
content: "",
|
|
|
startTime: null,
|
|
@@ -125,8 +126,11 @@ export default {
|
|
|
let data = response.data;
|
|
|
(this.ruleForm.rootOrgId = data.rootOrgId),
|
|
|
(this.ruleForm.content = data.content);
|
|
|
+ this.ruleForm.id = data.id;
|
|
|
this.ruleForm.startTime = data.startTime;
|
|
|
this.ruleForm.endTime = data.endTime;
|
|
|
+ this.ruleForm.title = data.title;
|
|
|
+ this.ruleForm.enable = data.enable;
|
|
|
|
|
|
this.examDatetimeRange = [
|
|
|
this.ruleForm.startTime,
|