spinz777/src/pages/wallet/components/DepositServiceItem.vue

43 lines
1.2 KiB
Vue
Raw Normal View History

2025-03-10 15:44:49 +08:00
<template>
<view class="self-service-utr-container">
2025-03-15 19:02:59 +08:00
<view class="self-service-utr-card plr30 ptb24 flex-acenter flex-sbetween" style="border-radius: 30rpx;"
:style="{ background: themeStore.theme.lightBgColor }" @click.stop="handleClick">
2025-03-10 15:44:49 +08:00
<!-- <theme-image src="@/static/home/icon-service.png" mode="aspectFit" style="width: 76rpx; height: 76rpx;" /> -->
<view>
<view class="ft12">
{{ $t('deposit.message.tips4') }}
</view>
2025-03-15 19:02:59 +08:00
<view class="mt12 ft10" :style="{ color: themeStore.theme.text.theme }">
2025-03-10 15:44:49 +08:00
{{ $t('deposit.message.tips5') }}
</view>
</view>
2025-03-15 19:02:59 +08:00
<theme-image src="@/static/wallet/icon-arrow-right-red.png" mode="aspectFit"
style="width: 16rpx; height: 30rpx;" />
2025-03-10 15:44:49 +08:00
</view>
</view>
</template>
<script setup>
2025-03-15 19:02:59 +08:00
import { useThemeStore } from '@/store/useThemeStore.js'
import { useUserStore } from '@/store/useUserStore'
import { openUrl } from '@/module/utils/openUrl'
const themeStore = useThemeStore()
const userStore = useUserStore()
const handleClick = () => {
// openUrl(userStore.serviceUrl)
uni.navigateTo({
url: '/pages/account/CustomService'
})
}
2025-03-10 15:44:49 +08:00
</script>
<style lang="scss" scoped>
2025-03-15 19:02:59 +08:00
.self-service-utr-container {
.self-service-utr-card {
height: 130rpx;
2025-03-10 15:44:49 +08:00
}
2025-03-15 19:02:59 +08:00
}
2025-03-10 15:44:49 +08:00
</style>