智慧画屏客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.2 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <view class="header">
  3. <view class="header-content" @tap="helpClick()">
  4. <text class="iconfont icon-bangzhu" ></text>
  5. 帮助
  6. </view>
  7. <uni-popup ref="uniPop" class="help-cont">
  8. <image src="../static/images/bt.png" class="help-title"></image>
  9. <view>
  10. <text class="step">第一步</text>
  11. <view class="step-txt">下载apk在终端设备上进行安装</view>
  12. </view>
  13. <view>
  14. <text class="step">第二步</text>
  15. <view class="step-txt">输入后台登录账号密码进行登录</view>
  16. </view>
  17. <view>
  18. <text class="step">第三步</text>
  19. <view class="step-txt">账号登录完成后自动绑定当前设备您可以选择输入设备名称设定设备方向</view>
  20. </view>
  21. <view>
  22. <text class="step">第四步</text>
  23. <view class="step-txt">根据当前推荐选择您需要的节目点击进行播放或选择电脑登录后台管理自行发布节目内容</view>
  24. </view>
  25. <view @tap="closedClick()"><text class="iconfont icon-guanbi"></text></view>
  26. </uni-popup>
  27. </view>
  28. </template>
  29. <script>
  30. import uniPopup from '@/components/uni-popup/uni-popup.vue'
  31. export default {
  32. name:'Header',
  33. components: {
  34. uniPopup
  35. },
  36. data() {
  37. return {
  38. };
  39. },
  40. methods: {
  41. helpClick(){
  42. this.$refs.uniPop.open()
  43. },
  44. closedClick(){
  45. this.$refs.uniPop.close()
  46. }
  47. }
  48. };
  49. </script>
  50. <style scoped>
  51. .header-content{
  52. display: flex;
  53. padding: 61.11rpx 41.66rpx 0 41.66rpx;
  54. justify-content: flex-end;
  55. font-size: 27.77rpx;
  56. line-height: 27.77rpx;
  57. color: #fff;
  58. }
  59. .iconfont{
  60. color: #fff;
  61. }
  62. .icon-bangzhu{
  63. font-size: 27.77rpx;
  64. margin-top: 1.38rpx;
  65. margin-right: 11.11rpx;
  66. }
  67. .help-title{
  68. display: block;
  69. width: 133.33rpx;
  70. height: 53.47rpx;
  71. margin: 0 auto;
  72. }
  73. .help-cont /deep/ .uni-popup__wrapper.uni-custom.center .uni-popup__wrapper-box{
  74. padding: 83.33rpx 69.44rpx 62.5rpx 69.44rpx;
  75. border-radius: 20.83rpx;
  76. overflow: initial;
  77. }
  78. .step{
  79. display: block;
  80. font-size: 27.77rpx;
  81. color: #0069f9;
  82. padding: 41.66rpx 0 20.83rpx 0;
  83. }
  84. .step-txt{
  85. font-size: 25rpx;
  86. line-height: 48.61rpx;
  87. }
  88. .icon-guanbi{
  89. position: absolute;
  90. bottom: -76.38rpx;
  91. left: 50%;
  92. font-size: 48.61rpx;
  93. transform: translateX(-50%);
  94. }
  95. </style>