扩展信息
Showing
1 changed file
with
3 additions
and
2 deletions
... | @@ -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) { | ... | ... |
-
Please register or sign in to post a comment