Commit d67699d1 authored by zhangyanni's avatar zhangyanni

政府第三屏

parent 1a797923
This diff is collapsed.
...@@ -24,13 +24,16 @@ ...@@ -24,13 +24,16 @@
<div id="thirdScreen" style="width:100%;height:100%;" v-if="isShowThird"> <div id="thirdScreen" style="width:100%;height:100%;" v-if="isShowThird">
<thirdScreen :isShow="isShowThird" @hidePage="hidePage"></thirdScreen> <thirdScreen :isShow="isShowThird" @hidePage="hidePage"></thirdScreen>
</div> </div>
<div id="fifthScreen" style="width:100%;height:100%;" v-if="isShowForth">
<forthScreen></forthScreen>
</div>
</section> </section>
<div class="buttonWrap" v-show="isShowPage"> <div class="buttonWrap" v-show="isShowPage">
<p :class="currentScreen==1?'activeP':''" @click="handleToWhich(1)"></p> <p :class="currentScreen==1?'activeP':''" @click="handleToWhich(1)"></p>
<p :class="currentScreen==2?'activeP':''" @click="handleToWhich(2)"></p> <p :class="currentScreen==2?'activeP':''" @click="handleToWhich(2)"></p>
<p :class="currentScreen==3?'activeP':''" @click="handleToWhich(3)"></p> <p :class="currentScreen==3?'activeP':''" @click="handleToWhich(3)"></p>
<p :class="currentScreen==4?'activeP':''" @click="handleToWhich(4)"></p> <!--<p :class="currentScreen==4?'activeP':''" @click="handleToWhich(4)"></p>-->
</div> </div>
</div> </div>
</template> </template>
...@@ -38,12 +41,13 @@ ...@@ -38,12 +41,13 @@
<script> <script>
import secondMap from './secondMap'; import secondMap from './secondMap';
import thirdScreen from './thirdScreen'; import thirdScreen from './thirdScreen';
import forthScreen from './forthScreen';
export default { export default {
name: "reportIndex", name: "reportIndex",
components:{ components:{
secondMap, secondMap,
thirdScreen thirdScreen,
forthScreen
}, },
data(){ data(){
return{ return{
...@@ -203,6 +207,7 @@ ...@@ -203,6 +207,7 @@
border: 1px solid #c9c9c9; border: 1px solid #c9c9c9;
border-radius: 50%; border-radius: 50%;
margin: 5px 0; margin: 5px 0;
cursor: pointer;
&.activeP{ &.activeP{
background: #D8D8D8; background: #D8D8D8;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment