e4e913ac by 蔡俊立

扩展信息

1 parent 4abec01a
......@@ -120,7 +120,7 @@ export default {
},
mounted () {
if (this.$route.query.bsmSlsq) {
this.expandInfo(this.$route.query.bestepid);
this.expandInfo(this.$route.query.bsmSlsq,this.$route.query.bestepid);
this.list(this.$route.query.bsmSlsq)
this.queryForm.bsmSlsq = this.$route.query.bsmSlsq
this.queryForm.bestepid = this.$route.query.bestepid
......@@ -145,9 +145,10 @@ export default {
})
},
//获取环节扩展信息
expandInfo (bestepid) {
expandInfo (bsmSlsq,bestepid) {
let that = this
var formdata = new FormData();
formdata.append("bsmSlsq", bsmSlsq);
formdata.append("bestepid", bestepid);
stepExpandInfo(formdata).then(res => {
if (res.code === 200) {
......