e4e913ac by 蔡俊立

扩展信息

1 parent 4abec01a
...@@ -120,7 +120,7 @@ export default { ...@@ -120,7 +120,7 @@ export default {
120 }, 120 },
121 mounted () { 121 mounted () {
122 if (this.$route.query.bsmSlsq) { 122 if (this.$route.query.bsmSlsq) {
123 this.expandInfo(this.$route.query.bestepid); 123 this.expandInfo(this.$route.query.bsmSlsq,this.$route.query.bestepid);
124 this.list(this.$route.query.bsmSlsq) 124 this.list(this.$route.query.bsmSlsq)
125 this.queryForm.bsmSlsq = this.$route.query.bsmSlsq 125 this.queryForm.bsmSlsq = this.$route.query.bsmSlsq
126 this.queryForm.bestepid = this.$route.query.bestepid 126 this.queryForm.bestepid = this.$route.query.bestepid
...@@ -145,9 +145,10 @@ export default { ...@@ -145,9 +145,10 @@ export default {
145 }) 145 })
146 }, 146 },
147 //获取环节扩展信息 147 //获取环节扩展信息
148 expandInfo (bestepid) { 148 expandInfo (bsmSlsq,bestepid) {
149 let that = this 149 let that = this
150 var formdata = new FormData(); 150 var formdata = new FormData();
151 formdata.append("bsmSlsq", bsmSlsq);
151 formdata.append("bestepid", bestepid); 152 formdata.append("bestepid", bestepid);
152 stepExpandInfo(formdata).then(res => { 153 stepExpandInfo(formdata).then(res => {
153 if (res.code === 200) { 154 if (res.code === 200) {
......