ソースを参照

Merge branch 'master' of http://git.izouma.com/xiongzhu/raex_front into dev

panhui 4 年 前
コミット
e39a7c2b61
1 ファイル変更5 行追加1 行削除
  1. 5 1
      src/mixins/asset.js

+ 5 - 1
src/mixins/asset.js

@@ -31,7 +31,11 @@ export default {
     },
     computed: {
         opened() {
-            return this.info ? (this.info.type === 'BLIND_BOX' ? this.info.opened : true) : true;
+            return this.info
+                ? this.info.type === 'BLIND_BOX' && !this.info.fromAssetId
+                    ? this.info.opened
+                    : true
+                : true;
         }
     }
 };