|
@@ -169,7 +169,7 @@ export default {
|
|
|
},
|
|
|
getSuggestApp() {
|
|
|
this.$axios.$post('/public/v1/market/getSuggestApp', {
|
|
|
- pageNum: 1, pageSize: -1
|
|
|
+ pageNum: 1, pageSize: -1, merchantCode: this.$route.query.merchantCode,
|
|
|
}).then((res) => {
|
|
|
this.applicationList = res.data
|
|
|
});
|
|
@@ -181,7 +181,7 @@ export default {
|
|
|
search() {
|
|
|
if (!this.searchText) return
|
|
|
this.appSeatchList.slice(0, this.appSeatchList.length)
|
|
|
- this.$axios.$post('/public/v1/market/clientSearchSuggestApp', { pageSize: 100, pageNum: 1, appName: this.searchText }).then((res) => {
|
|
|
+ this.$axios.$post('/public/v1/market/clientSearchSuggestApp', { pageSize: 100, pageNum: 1, appName: this.searchText, merchantCode: this.$route.query.merchantCode }).then((res) => {
|
|
|
this.appSeatchList = res.data.list
|
|
|
this.isShow = false
|
|
|
this.appSeatchList.forEach(element => {
|
|
@@ -194,7 +194,7 @@ export default {
|
|
|
this.pay()
|
|
|
return
|
|
|
}
|
|
|
- let url = `/introductionCloudPhone/onlineService?token=${this.$route.query.token}`
|
|
|
+ let url = `/introductionCloudPhone/onlineService?token=${this.$route.query.token}&merchantCode=${this.$route.query.merchantCode}`
|
|
|
if(this.$route.query.isWeixin) {
|
|
|
url+= '&isWeixin=1'
|
|
|
}
|