1
jhzh
2026-05-22 ef52095f5e9f0a9fe2da779bb1573947d77d75b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<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>