Compare commits

..

No commits in common. "9cf1d824c7bf3374cbf962ce63e2992f913fcae5" and "68b30653a40789db04df9ff6b81717bd9e89e1f2" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ export default {
title: "",
ord: 0,
magid: 0,
topic: "",
topic: "1",
authorPhone: '',
authorName: '',
deptid: null,
@ -222,7 +222,7 @@ export default {
if (row) {
this.form.title = row.title;
this.form.ord = row.ord;
this.form.topic = ""+row.topic;
this.form.topic = row.topic;
this.form.imageUrl = this.$tryToJson(row.images).map(d => {
return { name: d, url: d };
})