123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <view class="index tn-safe-area-inset-bottom">
-
- <tn-nav-bar customBack>
- <view slot="back" class='tn-custom-nav-bar__back' @click="goBack()">
- <text class='icon tn-icon-left'></text>
- </view>
-
- <view slot="default" style="display: flex;">
- <view style="flex:1;margin-left:25px">
- <text>了解速立保</text>
- </view>
-
-
-
- </view>
- </tn-nav-bar>
-
- <view :style="{paddingTop: vuex_custom_bar_height + 'px'}">
- <view style="text-align: center;" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
- <image style="width: 180px;height: 150px" src="../../static/logo.png"></image>
-
- <view style="margin-top:24px"><text style="font-size:30px;">生物制药产业</text></view>
- <view><text style="font-size:30px">国际产品展示中心</text></view>
- <view style="margin-top:24px"><text style="font-size:20px;">生物制药产业一站式产品资源供需平台</text></view>
-
- <image style="width: 180px; margin-top: 80px;" src="../../static/callus.png"></image>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- goBack() {
- uni.navigateBack();
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- /* 胶囊*/
- .tn-custom-nav-bar__back {
- width: 60%;
- height: 100%;
- position: relative;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- box-sizing: border-box;
- // background-color: rgba(0, 0, 0, 0.15);
- border-radius: 1000rpx;
- border: 1rpx solid rgba(255, 255, 255, 0.5);
- // color: #FFFFFF;
- font-size: 18px;
- .icon {
- display: block;
- flex: 1;
- margin: auto;
- text-align: center;
- }
- &:before {
- content: " ";
- width: 1rpx;
- height: 110%;
- position: absolute;
- top: 22.5%;
- left: 0;
- right: 0;
- margin: auto;
- transform: scale(0.5);
- transform-origin: 0 0;
- pointer-events: none;
- box-sizing: border-box;
- opacity: 0.7;
- background-color: #FFFFFF;
- }
- }
- </style>
|