Showing
1 changed file
with
3 additions
and
2 deletions
@@ -78,7 +78,7 @@ export default { | @@ -78,7 +78,7 @@ export default { | ||
78 | }, | 78 | }, |
79 | searchGoods: function() { | 79 | searchGoods: function() { |
80 | this.addLocalWord(); | 80 | this.addLocalWord(); |
81 | - this.yasInput({type: 0, index: 0}); | 81 | + this.yasInput({type: 0, index: 0, query: this.query}); |
82 | this.$router.push({ | 82 | this.$router.push({ |
83 | name: 'List', | 83 | name: 'List', |
84 | query: { | 84 | query: { |
@@ -94,6 +94,7 @@ export default { | @@ -94,6 +94,7 @@ export default { | ||
94 | let query = parameters.query; | 94 | let query = parameters.query; |
95 | 95 | ||
96 | this.addLocalWord(query); | 96 | this.addLocalWord(query); |
97 | + param.query = query; | ||
97 | this.yasInput(param); | 98 | this.yasInput(param); |
98 | this.$router.push({ | 99 | this.$router.push({ |
99 | name: 'List', | 100 | name: 'List', |
@@ -136,7 +137,7 @@ export default { | @@ -136,7 +137,7 @@ export default { | ||
136 | params: { | 137 | params: { |
137 | param: { | 138 | param: { |
138 | SEARCH_POS: this.SEARCH_POS, | 139 | SEARCH_POS: this.SEARCH_POS, |
139 | - KEYWORD: this.query, | 140 | + KEYWORD: param.query, |
140 | POS_ID: param.type, | 141 | POS_ID: param.type, |
141 | TYPE_ID: 1, | 142 | TYPE_ID: 1, |
142 | FLR_INDEX: param.index + 1, | 143 | FLR_INDEX: param.index + 1, |
-
Please register or login to post a comment