|
|
@@ -149,15 +149,28 @@ export default {
|
|
|
if (this.isLogin && this.assignment && pageUrl === 'productDetail') {
|
|
|
return resolveUrl(
|
|
|
this.$baseUrl,
|
|
|
- '9th/productTasks?id=' + id + '&invitor=' + this.$store.state.userInfo.id
|
|
|
+ 'sass' +
|
|
|
+ '/' +
|
|
|
+ this.$route.params.companyId +
|
|
|
+ '/productTasks?id=' +
|
|
|
+ id +
|
|
|
+ '&invitor=' +
|
|
|
+ this.$store.state.userInfo.id
|
|
|
);
|
|
|
} else if (this.isLogin) {
|
|
|
return resolveUrl(
|
|
|
this.$baseUrl,
|
|
|
- '9th/' + pageUrl + '?id=' + id + '&invitor=' + this.$store.state.userInfo.id
|
|
|
+ 'sass/' +
|
|
|
+ this.$route.params.companyId +
|
|
|
+ '/' +
|
|
|
+ pageUrl +
|
|
|
+ '?id=' +
|
|
|
+ id +
|
|
|
+ '&invitor=' +
|
|
|
+ this.$store.state.userInfo.id
|
|
|
);
|
|
|
} else {
|
|
|
- return resolveUrl(this.$baseUrl, '9th/' + pageUrl + '?id=' + id);
|
|
|
+ return resolveUrl(this.$baseUrl, 'sass/' + this.$route.params.companyId + '/' + pageUrl + '?id=' + id);
|
|
|
}
|
|
|
},
|
|
|
banners() {
|