|
|
@@ -80,6 +80,7 @@
|
|
|
prodId: null,
|
|
|
videoList: [],
|
|
|
resourcesUrl: process.env.VUE_APP_RESOURCES_URL,
|
|
|
+ shopId: this.$store.state.user.shopId,
|
|
|
dataForm:{
|
|
|
issueId: null,
|
|
|
assetsType: null,
|
|
|
@@ -156,7 +157,7 @@
|
|
|
this.$http({
|
|
|
url: this.$http.adornUrl('/ar/arAssets/listByName'),
|
|
|
method: 'get',
|
|
|
- params: this.$http.adornParams({assetsName: assetsName})
|
|
|
+ params: this.$http.adornParams({shopId: this.shopId, assetsName: assetsName})
|
|
|
}).then(({data}) => {
|
|
|
this.assetsList = data
|
|
|
})
|
|
|
@@ -165,7 +166,7 @@
|
|
|
this.$http({
|
|
|
url: this.$http.adornUrl('/ar/arAssets/listByName'),
|
|
|
method: 'get',
|
|
|
- params: this.$http.adornParams({issueId: this.dataForm.issueId, assetsId: assetsId})
|
|
|
+ params: this.$http.adornParams({shopId: this.shopId, issueId: this.dataForm.issueId, assetsId: assetsId})
|
|
|
}).then(({data}) => {
|
|
|
this.assetsList = data
|
|
|
})
|