1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="nav-wrap">
- <view class="nav-title">
- <image class="logo" src="/static/images/logo.png" mode="widthFix"></image>
- <view class="nav-info">
- <view class="nav-title__text">
- {{title}}
- </view>
- </view>
- </view>
- <view class="nav-desc">
- {{desc}}
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- desc: String,
- title: String,
- },
- }
- </script>
- <style lang="scss" scoped>
- .nav-wrap {
- margin-top: 15px;
- padding: 15px;
- position: relative;
- }
-
- .lang {
- position: absolute;
- top: 15px;
- right: 15px;
- }
-
- .nav-title {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
-
- .nav-info {
- margin-left: 15px;
- }
-
- .nav-title__text {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- color: $u-main-color;
- font-size: 20px;
- font-weight: bold;
- }
-
- .logo {
- width: 100px;
- /* #ifndef APP-NVUE */
- height: auto;
- /* #endif */
- }
-
- .nav-slogan {
- color: $u-tips-color;
- font-size: 14px;
- }
-
- .nav-desc {
- margin-top: 10px;
- font-size: 14px;
- color: $u-content-color;
- }
- </style>
|