Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

184 lines
4.1KB

  1. <template>
  2. <div class="all">
  3. <img class="pageBg" src="../assets/win/winBg.png">
  4. <div class="contentFrame">
  5. <img :class="product+'_'+category+'_'+detailName" :src="require('../assets/win/'+product+'/'+category+'/'+detailName+'.png')">
  6. <img class="pageClose" @click="closeWin" src="../assets/win/winClose.png">
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: "phone_appliances_win",
  13. props:['product','category','detailName'],
  14. methods:{
  15. closeWin(){
  16. this.$store.state.commonWin = false;
  17. this.$emit('hiddenWin');
  18. }
  19. },
  20. mounted() {
  21. this.$store.state.commonWin = true;
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. .pageBg{
  27. position: fixed;
  28. top: 50%;
  29. left: 0;
  30. transform: translateY(-50%);
  31. width: 7.5rem;
  32. height: 15.06rem;
  33. }
  34. .contentFrame{
  35. position: fixed;
  36. left: 50%;
  37. top: 50%;
  38. transform: translate(-50%,-50%);
  39. width: 7.5rem;
  40. height: 12.06rem;
  41. display: flex;
  42. justify-content: center;
  43. overflow: hidden;
  44. }
  45. .phone_high_guitailika{
  46. width: 6.63rem;
  47. height: 9.22rem;
  48. }
  49. .phone_high_guitaitie{
  50. width: 6.6rem;
  51. height: 8.09rem;
  52. }
  53. .phone_high_haibao{
  54. width: 5.84rem;
  55. height: 9.89rem;
  56. }
  57. .phone_high_hengfu{
  58. width: 6.94rem;
  59. height: 6.43rem;
  60. }
  61. .phone_high_mentiedaban{
  62. width: 4.43rem;
  63. height: 10.34rem;
  64. }
  65. .phone_high_pvclipai{
  66. width: 5.12rem;
  67. height: 9.32rem;
  68. }
  69. .phone_high_shoujibeitie{
  70. width: 2.92rem;
  71. height: 10.15rem;
  72. }
  73. .phone_high_yilabao{
  74. width: 4.68rem;
  75. height: 10.77rem;
  76. }
  77. .phone_high_zhizhitaika{
  78. width: 5.84rem;
  79. height: 9.89rem;
  80. }
  81. .phone_standard_baozhahua{
  82. width: 2.92rem;
  83. height: 10.15rem;
  84. }
  85. .phone_standard_guitaitie{
  86. width: 6.6rem;
  87. height: 8.09rem;
  88. }
  89. .phone_standard_haibao{
  90. width: 5.84rem;
  91. height: 9.89rem;
  92. }
  93. .phone_standard_hengfu{
  94. width: 6.94rem;
  95. height: 6.43rem;
  96. }
  97. .phone_standard_mentie{
  98. width: 6.95rem;
  99. height: 8.04rem;
  100. }
  101. .phone_standard_sanjiaolipai{
  102. width: 6.6rem;
  103. height: 8.05rem;
  104. }
  105. .phone_standard_yimitie{
  106. width: 6.94rem;
  107. height: 6.43rem;
  108. }
  109. .phone_standard_zhizhitaika{
  110. width: 5.84rem;
  111. height: 9.89rem;
  112. }
  113. .appliances_high_baozhahua{
  114. width: 2.92rem;
  115. height: 10.15rem;
  116. }
  117. .appliances_high_haibao{
  118. width: 5.84rem;
  119. height: 9.89rem;
  120. }
  121. .appliances_high_hengfu{
  122. width: 6.94rem;
  123. height: 6.43rem;
  124. }
  125. .appliances_high_jiadiansanjiaolipai{
  126. width: 3rem;
  127. height: 9.06rem;
  128. }
  129. .appliances_high_mentiedaban{
  130. width: 4.43rem;
  131. height: 10.34rem;
  132. }
  133. .appliances_high_pvclipai{
  134. width: 5.12rem;
  135. height: 9.32rem;
  136. }
  137. .appliances_high_yilabao{
  138. width: 4.68rem;
  139. height: 10.77rem;
  140. }
  141. .appliances_standard_baozhahua{
  142. width: 2.92rem;
  143. height: 10.15rem;
  144. }
  145. .appliances_standard_dianshisanjiaotie{
  146. width: 2.92rem;
  147. height: 9.64rem;
  148. }
  149. .appliances_standard_haibao{
  150. width: 5.84rem;
  151. height: 9.89rem;
  152. }
  153. .appliances_standard_hengfu{
  154. width: 6.94rem;
  155. height: 6.43rem;
  156. }
  157. .appliances_standard_kongtiaotiezhi{
  158. width: 2.92rem;
  159. height: 9.64rem;
  160. }
  161. .appliances_standard_mentie{
  162. width: 6.95rem;
  163. height: 8.04rem;
  164. }
  165. .appliances_standard_yimitie{
  166. width: 6.94rem;
  167. height: 6.43rem;
  168. }
  169. .appliances_standard_zhizhitaika{
  170. width: 5.84rem;
  171. height: 9.89rem;
  172. }
  173. .pageClose{
  174. position: absolute;
  175. left: 50%;
  176. transform: translateX(-50%);
  177. bottom: 0;
  178. width: 0.8rem;
  179. height: 0.8rem;
  180. }
  181. </style>