mzsm.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <view class="">
  3. <view class="mzsm" @click.stop="mzss">
  4. 免责声明
  5. </view>
  6. <uni-popup ref="popupmz" type="center">
  7. <view class="mzsm-wrap">
  8. <view class="mzsm-tit">
  9. AED导航地图免责声明
  10. </view>
  11. <view class="mzsm-content">
  12. 本应用所提供的网点名称、地址信息,仅供查询参考,实际导航结果以用户所选用的第三方地图应用所显示的位置为准,本应用不保证其导航定位准确性。
  13. </view>
  14. <view class="mzsm-content">
  15. 在法律允许的范围内,本应用声明,不承担用户或任何人士就使用或未能使用本应用所提供的信息所导致的任何直接、间接、附带、从属、特殊、惩罚性或惩戒性的损害赔偿。
  16. </view>
  17. <view class="mzsm-close" @click="mzssClose()">
  18. 确定
  19. </view>
  20. </view>
  21. </uni-popup>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. },
  30. methods: {
  31. mzss() {
  32. this.$refs.popupmz.open();
  33. },
  34. mzssClose() {
  35. this.$refs.popupmz.close();
  36. },
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. .mzsm {
  42. position: fixed;
  43. top: 20rpx;
  44. right: 20rpx;
  45. width: 150rpx;
  46. height: 50rpx;
  47. border-radius: 25rpx;
  48. background-color: #000000;
  49. color: #fff;
  50. font-size: 28rpx;
  51. // line-height: 50rpx;
  52. text-align: center;
  53. z-index: 999;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. }
  58. .mzsm-wrap {
  59. width: 500rpx;
  60. background-color: #fff;
  61. border-radius: 20rpx;
  62. .mzsm-tit {
  63. text-align: center;
  64. line-height: 150rpx;
  65. color: #000;
  66. font-size: 36rpx;
  67. font-weight: bold;
  68. }
  69. .mzsm-content {
  70. text-indent: 56rpx;
  71. width: 450rpx;
  72. margin: auto;
  73. text-align: justify;
  74. line-height: 100rpx;
  75. color: #888;
  76. font-size: 28rpx;
  77. font-weight: 500;
  78. line-height: 1.5;
  79. }
  80. .mzsm-close {
  81. margin-top: 20rpx;
  82. border-top: 1px solid #eee;
  83. text-align: center;
  84. line-height: 100rpx;
  85. font-size: 32rpx;
  86. font-weight: 500;
  87. color: #000;
  88. }
  89. }
  90. </style>