panhui il y a 3 ans
Parent
commit
fa708d30bf
3 fichiers modifiés avec 6 ajouts et 3 suppressions
  1. 1 1
      .env.development
  2. 2 1
      src/views/Store.vue
  3. 3 1
      src/views/product/SearchCorpse.vue

+ 1 - 1
.env.development

@@ -1,4 +1,4 @@
-VUE_APP_BASE_URL=https://test.raex.vip/
+VUE_APP_BASE_URL=https://www.raex.vip/
 NODE_ENV=development
 VUE_APP_PUBLIC_PATH=/
 ASSETS_PATH=raex

+ 2 - 1
src/views/Store.vue

@@ -530,7 +530,8 @@ export default {
                         query: {
                             userId: this.$store.state.userInfo.id,
                             status: this.status,
-                            prefixName: this.moreTitle
+                            prefixName: this.moreTitle,
+                            type: 'DEFAULT,BLIND_BOX'
                         },
                         sort: 'id,desc'
                     },

+ 3 - 1
src/views/product/SearchCorpse.vue

@@ -330,7 +330,9 @@ export default {
                 })
                 .catch(() => {});
             this.$http
-                .get('/collection/count/' + search)
+                .get('/collection/count', {
+                    search: search
+                })
                 .then(res => {
                     this.displayInformation = res;
                 })