<template>
|
<div class="my-detail-page">
|
<assets-head :show-left="true" :back-func="goBack" class="assetsHead" :title="$t('人工智能交易')" />
|
<div class="my-detail-body">
|
<div class="my-detail-placeholder">
|
<img class="ai-strategy-pic" src="@/assets/imgs/new/ai-strategy_pic.png" alt="">
|
<div class="ai-strategy-text">{{ $t('aiStrategyDesc') }}</div>
|
<div class="ai-strategy-empty">
|
<img class="ai-strategy-icon" src="@/assets/imgs/new/empty.png" alt="">
|
</div>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script setup>
|
import { useRouter } from 'vue-router';
|
import AssetsHead from '@/components/Transform/assets-head/index.vue';
|
|
const router = useRouter();
|
const goBack = () => router.go(-1);
|
</script>
|
|
<style lang="scss" scoped>
|
@import '@/assets/theme/index.scss';
|
.ai-strategy-empty{
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
margin-top: 20px;
|
}
|
.ai-strategy-icon{
|
width: 220px;
|
height: 100%;
|
}
|
.ai-strategy-text{
|
padding: 0 12px;
|
font-size: 14px;
|
color: #fff;
|
text-align: left;
|
}
|
:deep(.van-nav-bar) {
|
background-color: #030221 !important;
|
}
|
|
.ai-strategy-pic {
|
width: 100%;
|
height: 100%;
|
}
|
|
.my-detail-page {
|
min-height: 100vh;
|
background-color: #030221 !important;
|
}
|
|
.my-detail-body {}
|
|
.my-detail-placeholder {
|
font-size: 2.2rem;
|
text-align: center;
|
|
@include themify() {
|
color: themed("text_color2");
|
}
|
}
|
</style>
|