ContactWe.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <div class="con-ctnr">
  3. <div class="con-btn" @click="conShow">
  4. <img src="../assets/img/kefu.png">
  5. <span>
  6. 联<br>系<br>客<br>服
  7. </span>
  8. </div>
  9. <div class="contant" v-show="state">
  10. <div class="wechat">
  11. <img src="../assets/img/wechat.png">
  12. </div>
  13. <div class="phone">
  14. <h6>电话咨询</h6>
  15. <img src="../assets/img/phone.png">
  16. <p>+8617354718363</p>
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script>
  22. export default{
  23. data(){
  24. return {
  25. state:false
  26. }
  27. },
  28. methods:{
  29. conShow(){
  30. this.state = !this.state;
  31. }
  32. }
  33. }
  34. </script>
  35. <style scoped>
  36. .con-ctnr{
  37. height: 313px;
  38. .con-btn{
  39. width: 36px;
  40. height: 120px;
  41. margin-left: -36px;
  42. background-color: #20a0ff;
  43. position: absolute;
  44. cursor: pointer;
  45. margin-top: 108px;
  46. border-top-left-radius: 10px;
  47. border-bottom-left-radius: 10px;
  48. img{
  49. margin-top: 8px;
  50. }
  51. span{
  52. color: #fffc00;
  53. font-size: 14px;
  54. }
  55. }
  56. .contant{
  57. border-top-left-radius: 10px;
  58. border-bottom-left-radius: 10px;
  59. background: #20a0ff;
  60. padding: 10px 0;
  61. box-shadow: 0 3px 5px 2px rgba(26,0,0,.4);
  62. width: 150px;
  63. .wechat{
  64. background-color: #fff;
  65. width: 130px;
  66. margin: 0 auto;
  67. border-radius: 10px;
  68. }
  69. .phone{
  70. background-color: #fff;
  71. margin-top: 10px;
  72. border-radius: 10px;
  73. width: 130px;
  74. margin: 10px auto 0px;
  75. padding: 10px 0;
  76. h6{
  77. text-align: left;
  78. margin-left: 10px;
  79. font-size: 14px;
  80. color: #333;
  81. font-weight: 700;
  82. line-height: 30px;
  83. border-bottom: 1px solid #e5e5e5;
  84. }
  85. img{
  86. margin-top: 10px;
  87. }
  88. p{
  89. font-size: 14px;
  90. color: #333;
  91. font-weight: 700;
  92. line-height: 30px;
  93. }
  94. }
  95. }
  96. }
  97. </style>