dever 4 years ago
parent
commit
886c5c7373
2 changed files with 16 additions and 2 deletions
  1. 8 2
      pages/dream/index.vue
  2. 8 0
      pages/dream/info.vue

+ 8 - 2
pages/dream/index.vue

@@ -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) {

+ 8 - 0
pages/dream/info.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>