| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="cwg-language cursor-pointer" :data-tooltip="t('Downloadpage.item1')">
- <view class="pc-header-btn" @click="handleScanClick">
- <cwg-icon name="crm-scan" color="#97A1C0" :size="20" />
- <!-- <view></view> -->
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { useI18n } from 'vue-i18n'
- const { t } = useI18n()
- function handleScanClick() {
- uni.navigateTo({
- url: '/pages/common/scan',
- })
- }
- </script>
- <style scoped lang="scss">
- @import "@/uni.scss";
- .pc-header-btn {
- width: auto;
- display: flex;
- align-items: center;
- cursor: pointer;
- gap: px2rpx(6);
- padding: 0 px2rpx(5);
- }
- .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>
|