index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="web-foot">
  3. <view
  4. v-show="bottom"
  5. class="r_flex_zy home_lianxi"
  6. style="text-align: left"
  7. >
  8. <view style="width: 329rpx">
  9. <view
  10. style="color: #333; font-size: 13rpx; margin-bottom: 14rpx"
  11. class="r_wzjc"
  12. >联系我们
  13. </view>
  14. <view style="color: #65676a; font-size: 12rpx" class=""
  15. >欢迎任何形式的媒体与商务合作<br />
  16. 24小时客服电话:0898—65366726<br />
  17. 企业邮箱:yangying@hninfornet.com<br />
  18. 联系地址:海南省海口市美兰区国兴大道5号海南大厦46层
  19. </view>
  20. </view>
  21. <view style="width: 177rpx">
  22. <view
  23. style="color: #333; font-size: 12rpx; margin-bottom: 14rpx"
  24. class="r_wzjc"
  25. >增值电信业务经营许可证
  26. </view>
  27. <view style="color: #65676a; font-size: 12rpx" class="">
  28. <view class="r_flex_align"><i></i> 编号:A2.B1.B2-20235652</view>
  29. <view class="r_flex_align"><i></i> 编号:A2.B1.B2-20235652</view>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 尾部 -->
  34. <div class="web-footer r_flex_space">
  35. <img
  36. class=""
  37. src="/static/web/Slice 11@2x.png"
  38. style="width: 100%; height: auto; margin: 0rpx; margin-top: -1rpx"
  39. />
  40. </div>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. /**
  46. * 组件的属性列表
  47. * 用于组件自定义设置
  48. */
  49. props: {
  50. right: {
  51. type: Number,
  52. default: 30,
  53. },
  54. bottom: {
  55. type: Boolean,
  56. default: true,
  57. },
  58. },
  59. data() {
  60. return {
  61. // 弹窗显示控制
  62. isShow: false,
  63. transparent: true,
  64. };
  65. },
  66. computed: {
  67. rightPx() {
  68. return uni.upx2px(this.right);
  69. },
  70. bottomPx() {
  71. return uni.upx2px(this.bottom);
  72. },
  73. },
  74. methods: {
  75. /**
  76. * 导航菜单切换事件
  77. */
  78. onToggleShow() {
  79. const app = this;
  80. app.isShow = !app.isShow;
  81. app.transparent = false;
  82. },
  83. /**
  84. * 导航页面跳转
  85. */
  86. onTargetPage(index = 0) {
  87. const tabLinks = getTabBarLinks();
  88. this.$navTo(tabLinks[index]);
  89. },
  90. },
  91. };
  92. </script>
  93. <style lang="scss" scoped>
  94. /* 快捷导航 */
  95. .web-footer {
  96. width: 100%;
  97. }
  98. .home_lianxi {
  99. width: 750rpx;
  100. height: 178rpx;
  101. text-align: left;
  102. padding: 0rpx 75rpx;
  103. padding-bottom: 120rpx;
  104. padding-top: 40rpx;
  105. position: relative;
  106. font-size: 26rpx;
  107. background-image: url("/static/web/Slice 10@2x.png");
  108. background-size: cover; /* 或 contain */
  109. // background-position-x: 50rpx;
  110. i {
  111. display: block;
  112. margin-right: 6rpx;
  113. margin-top: 2rpx;
  114. width: 3rpx;
  115. height: 3rpx;
  116. border-radius: 100%;
  117. background: #65676a;
  118. }
  119. }
  120. </style>