showBp(bp) {
this.getBpJson(bp);
console.log(this.bpJson);
// this.bp2tree(this.bpJson);
},
getBpJson(bp) {
var that = this;
this.$post('/flow/bp/bpJson',bp).then((resp) => {
that.bpJson = resp.data;
});
},
打印为null,但是过会打印就有结果了