| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="cwg-language">
- <view class="pc-header-btn" @click="handleMenuClick">
- <cwg-icon name="crm-download" color="#97A1C0" :size="20" />
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { useI18n } from 'vue-i18n'
- const { t } = useI18n()
- function handleMenuClick() {
- uni.navigateTo({
- url: '/pages/common/download',
- })
- }
- </script>
- <style scoped lang="scss">
- @import "@/uni.scss";
- .pc-header-btn {
- display: flex;
- align-items: center;
- cursor: pointer;
- gap: px2rpx(6);
- }
- .cwg-language {
- @media screen and (max-width: 991px) {
- :deep(.cwg-dropdown-menu-container) {
- right: px2rpx(-20) !important;
- }
- }
- }
- :deep(.cwg-dropdown-menu-container .menu .menu-item) {
- min-height: px2rpx(36);
- }
- :deep(.cwg-dropdown) {
- overflow: visible !important;
- }
- </style>
|