|
- <template>
- <div class="all">
- <img class="pageBg" src="../assets/productBg.jpg">
- <div class="contentFrame">
- <img class="contentImg" src="../assets/phone/high/within.png">
- <img class="pageRedDot pageRedDot1" @click="lookDetail('haibao')" src="../assets/pageRedDot.png">
- <img class="pageRedDot pageRedDot2" @click="lookDetail('zhizhitaika')" src="../assets/pageRedDot.png">
- </div>
- <sidebar class="sidebarSty"></sidebar>
- <phoneAppliancesWin v-if="winShow" :product="product" @hiddenWin='winControl' :category="category" :detailName="detailName"></phoneAppliancesWin>
- </div>
- </template>
-
- <script>
- import Sidebar from '../components/sidebar'
- import phoneAppliancesWin from './phone_appliances_win'
- export default {
- name: "phone_high_within",
- data(){
- return{
- product:"phone",//产品
- category:"high",//类别
- detailName:"",//详细名称
- winShow:false,//是否显示弹窗
- }
- },
- components:{
- Sidebar,
- phoneAppliancesWin
- },
- methods:{
- lookDetail(name){//查看详情
- this.detailName = name;
- this.winControl();
- },
- winControl(){//控制弹窗显示状态
- this.winShow = !this.winShow;
- }
- }
- }
- </script>
-
- <style scoped>
- .pageBg{
- position: fixed;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- width: 7.5rem;
- height: 15.06rem;
- }
- .contentFrame{
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- width: 7.5rem;
- height: 12.06rem;
- display: flex;
- justify-content: center;
- overflow: hidden;
- }
- .contentImg{
- width: 6.93rem;
- height: 11.67rem;
- }
- .pageRedDot{
- position: absolute;
- width: 0.29rem;
- height: 0.29rem;
- animation: dotTwinkle 3s linear infinite;
- }
- @keyframes dotTwinkle {
- 0%{opacity: 0.2}
- 50%{opacity:1}
- 100%{opacity:0.2}
- }
- .pageRedDot1{
- left: 4.16rem;
- top: 4.57rem;
- }
- .pageRedDot2{
- left: 0.85rem;
- top: 7.45rem;
- }
- .sidebarSty{
- position: fixed;
- top:0.3rem;
- left: 0.3rem;
- }
- </style>
|