|
@@ -37,13 +37,18 @@
|
|
|
|
|
|
<view v-if="rankingState">
|
|
|
<ranking :id="id" :bgcolor="fetch.button.bgcolor" :color="fetch.button.color" @hideRanking="hideRanking"></ranking>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view v-if="infoState">
|
|
|
+ <info :id="id" :bgcolor="fetch.button.bgcolor" :color="fetch.button.color" @hideRanking="hideRanking"></info>
|
|
|
</view>
|
|
|
</view>
|
|
|
</gracePage>
|
|
|
</template>
|
|
|
<script>
|
|
|
import buy from "@/pages/dream/buy.vue";
|
|
|
-import ranking from "@/pages/dream/ranking.vue";
|
|
|
+import ranking from "@/pages/dream/ranking.vue";
|
|
|
+import info from "@/pages/dream/info.vue";
|
|
|
export default{
|
|
|
data() {
|
|
|
return {
|
|
@@ -59,7 +64,8 @@ export default{
|
|
|
code : '',
|
|
|
},
|
|
|
buyState : false,
|
|
|
- rankingState : false,
|
|
|
+ rankingState : false,
|
|
|
+ infoState : false,
|
|
|
}
|
|
|
},
|
|
|
onLoad(option) {
|