about.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="index tn-safe-area-inset-bottom">
  3. <tn-nav-bar customBack>
  4. <view slot="back" class='tn-custom-nav-bar__back' @click="goBack()">
  5. <text class='icon tn-icon-left'></text>
  6. </view>
  7. <view slot="default" style="display: flex;">
  8. <view style="flex:1;margin-left:25px">
  9. <text>了解速立保</text>
  10. </view>
  11. </view>
  12. </tn-nav-bar>
  13. <view :style="{paddingTop: vuex_custom_bar_height + 'px'}">
  14. <view style="text-align: center;" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
  15. <image style="width: 180px;height: 150px" src="../../static/logo.png"></image>
  16. <view style="margin-top:24px"><text style="font-size:30px;">生物制药产业</text></view>
  17. <view><text style="font-size:30px">国际产品展示中心</text></view>
  18. <view style="margin-top:24px"><text style="font-size:20px;">生物制药产业一站式产品资源供需平台</text></view>
  19. <image style="width: 180px; margin-top: 80px;" src="../../static/callus.png"></image>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. },
  30. methods: {
  31. goBack() {
  32. uni.navigateBack();
  33. },
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. /* 胶囊*/
  39. .tn-custom-nav-bar__back {
  40. width: 60%;
  41. height: 100%;
  42. position: relative;
  43. display: flex;
  44. justify-content: space-evenly;
  45. align-items: center;
  46. box-sizing: border-box;
  47. // background-color: rgba(0, 0, 0, 0.15);
  48. border-radius: 1000rpx;
  49. border: 1rpx solid rgba(255, 255, 255, 0.5);
  50. // color: #FFFFFF;
  51. font-size: 18px;
  52. .icon {
  53. display: block;
  54. flex: 1;
  55. margin: auto;
  56. text-align: center;
  57. }
  58. &:before {
  59. content: " ";
  60. width: 1rpx;
  61. height: 110%;
  62. position: absolute;
  63. top: 22.5%;
  64. left: 0;
  65. right: 0;
  66. margin: auto;
  67. transform: scale(0.5);
  68. transform-origin: 0 0;
  69. pointer-events: none;
  70. box-sizing: border-box;
  71. opacity: 0.7;
  72. background-color: #FFFFFF;
  73. }
  74. }
  75. </style>