diff --git a/src/pages/record/show/index.vue b/src/pages/record/show/index.vue
index 17d72c4..e3c2c37 100644
--- a/src/pages/record/show/index.vue
+++ b/src/pages/record/show/index.vue
@@ -82,15 +82,16 @@
实验项目名称
-
-
+
+
实验目的
-
+
+
@@ -148,8 +150,8 @@
实验总结与体会
-
-
+
+
@@ -171,13 +173,7 @@ export default {
projectId: this.$route.query.projectId,
breadPath: ['实验记录', '实验情况', '实验报告'],
title: "实验报告",
- form: {
- className: "",
- instructor: "",
- period: "",
- projectName: "",
- summarize: "",
- },
+ form: {},
infoData: {},
expData: [],
editing: false,
@@ -199,8 +195,9 @@ export default {
this.$get(`${this.api.reportDetail}?reportId=${reportId}`).then(({ report, userScores }) => {
this.form = report
const form = this.form
-
this.infoData = {
+ reportId,
+ className: form.className,
workNumber: form.workNumber,
experimentalClassName: form.experimentalClassName,
instructor: form.instructor,
@@ -208,7 +205,10 @@ export default {
laboratory: form.laboratory,
submitTime: form.submitTime,
score: form.score,
- userName: form.userName
+ userName: form.userName,
+ projectName: form.projectName,
+ purpose: form.purpose,
+ summarize: form.summarize
}
form.assessmentId && (this.breadPath = ['实验记录', '实验报告'])
const data = report.data
@@ -227,7 +227,6 @@ export default {
// 处理实验数据
handleList(list) {
this.project = list.find(e => e.lcRuleRecords) // 银行系统才有lcRuleRecords
- this.form.className = this.className
if (this.project) {
list.map(e => {
e.assessmentPoint = ''
@@ -308,11 +307,7 @@ export default {
},
editReport() { // 编辑实验报告
if (this.editing) {
- let data = {
- ...this.form,
- reportId: Number(this.reportId),
- };
- this.$post(`${this.api.updateReport}`, data).then(res => {
+ this.$post(`${this.api.updateReport}`, this.infoData).then(res => {
this.editing = false;
util.successMsg("修改成功");
}).catch(err => {});
diff --git a/src/store/modules/user.js b/src/store/modules/user.js
index 7fccdb9..3ab8425 100644
--- a/src/store/modules/user.js
+++ b/src/store/modules/user.js
@@ -79,13 +79,10 @@ export default {
},
logout({ commit, state, dispatch }) {
return new Promise((resolve, reject) => {
- if (util.local.get(Setting.storeKey)) {
- util.local.remove(Setting.storeKey)
- util.local.remove(Setting.tokenKey)
- } else {
- util.local.remove('oc_server_token')
- util.local.remove('oc_server_store')
- }
+ util.local.remove(Setting.storeKey)
+ util.local.remove(Setting.tokenKey)
+ util.local.remove('oc_server_token')
+ util.local.remove('oc_server_store')
location.reload()
resolve()
});