Commit c4954e57 authored by zhouzihao's avatar zhouzihao

fix-修复出参识别错误

parent 150f8df5
...@@ -314,8 +314,7 @@ export default { ...@@ -314,8 +314,7 @@ export default {
axios axios
.post(config.serve_url + "/project/build/", this.buildData) .post(config.serve_url + "/project/build/", this.buildData)
.then(rs => { .then(rs => {
var rr = JSON.parse(rs.data); if (rs.data.success) {
if (rr.success) {
this.spinShow = false; this.spinShow = false;
this.showBuild = false; this.showBuild = false;
this.$Message.success("构建成功!"); this.$Message.success("构建成功!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment