|
@@ -285,15 +285,17 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
sceneCodeSendHttp() {
|
|
sceneCodeSendHttp() {
|
|
- let { sceneCode, description } = this.form;
|
|
|
|
|
|
+ let { sceneCode, description,sceneTitle } = this.form;
|
|
let body = {
|
|
let body = {
|
|
description,
|
|
description,
|
|
sceneCode,
|
|
sceneCode,
|
|
|
|
+ sceneTitle
|
|
};
|
|
};
|
|
this.$http.post("/manage/scene/download", body).then((res) => {
|
|
this.$http.post("/manage/scene/download", body).then((res) => {
|
|
this.$message(res["msg"]);
|
|
this.$message(res["msg"]);
|
|
if (res["code"] === 0) {
|
|
if (res["code"] === 0) {
|
|
console.log("下载成功");
|
|
console.log("下载成功");
|
|
|
|
+ this.getScenes()
|
|
this.dialogFormVisible = false;
|
|
this.dialogFormVisible = false;
|
|
} else {
|
|
} else {
|
|
}
|
|
}
|