detail-download.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <div class="dialog" @click.stop="">
  3. <img class="logo" src="/static/logo_big.png" alt="" />
  4. <div class="text">
  5. <!-- Download the Onecric app for a better live streaming experience of matches. -->
  6. {{ $t('live.lab55') }}
  7. </div>
  8. <div class="brns">
  9. <div class="btn ltn" @click="installClick">
  10. <!-- Download -->
  11. {{ $t('live.lab56') }}
  12. </div>
  13. <div class="btn rtn" @click="cancel">
  14. <!-- Cancel -->
  15. {{ $t('video.lab13') }}
  16. </div>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. export default {
  22. data () {
  23. return {
  24. }
  25. },
  26. methods: {
  27. cancel() {
  28. this.$emit('cancel')
  29. },
  30. installClick() {
  31. this.$toUrl('/download/google')
  32. },
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .dialog {
  38. position: absolute;
  39. left: 50%;
  40. top: 50%;
  41. transform: translate(-50%, -50%);
  42. z-index: 9999;
  43. width: 283px;
  44. background: rgba(0, 0, 0, .6);
  45. border: 2.5px solid rgba(255,255,255,0.19);
  46. border-radius: 15px;
  47. box-shadow: 0px 5px 9.5px 0px rgba(0, 0, 0, .6);
  48. padding: 15px 28px 28px;
  49. color: #fff;
  50. box-sizing: border-box;
  51. }
  52. .logo {
  53. height: 24px;
  54. display: block;
  55. margin: 0 auto 15px;
  56. }
  57. .text {
  58. font-size: 13px;
  59. line-height: 16px;
  60. text-align: center;
  61. margin-bottom: 19px;
  62. }
  63. .brns {
  64. display: flex;
  65. align-items: center;
  66. .btn {
  67. flex: 1;
  68. line-height: 27px;
  69. text-align: center;
  70. cursor: pointer;
  71. }
  72. .ltn {
  73. border: 1px solid #ffffff;
  74. border-radius: 6px;
  75. font-size: 11px;
  76. font-weight: bold;
  77. }
  78. .rtn {
  79. font-size: 13px;
  80. }
  81. }
  82. </style>