You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.1 KiB

3 weeks ago
3 weeks ago
3 weeks ago
4 weeks ago
  1. <template>
  2. <view class="main">
  3. <view :style="{height:iSMT+'px'}"></view>
  4. <view style="height:1.5vh" />
  5. <view class="top">
  6. <image class="image" src="../../static/my/aboutDC.png"></image>
  7. </view>
  8. <view class="bottom">
  9. <view class="title">1.产品定位</view>
  10. <view class="main-text">DeepChart全球最懂机构行为的AI你的AI投资伙伴强化"深度分析"
  11. 的品牌标签DeepChart=全球最懂机构行为的AI主打"深度解读机构行为"的APP</view>
  12. <view class="title">2.产品介绍</view>
  13. <view class="main-text">DeepChart是一款以"Al智能体"为决策核心的智能投资分析平台
  14. 专注于深度研究机构行为专为全球散户投资者量身打造它重新定义了人与投资工具之间的关系
  15. 是一个真正懂投资懂市场更懂用户的AI投资伙伴</view>
  16. <view class="title">3.产品理念</view>
  17. <view class="main-text">人找信息AI智能体替你思考和管理</view>
  18. <view class="title">4.功能定位全景AI决策体系</view>
  19. <!-- <view class="main-text">黄其振是大笨蛋</view>
  20. <view class="main-text">李建霖是大笨蛋</view>
  21. <view class="main-text">double是大笨蛋</view>
  22. <view class="main-text">张鲁平是大笨蛋</view> -->
  23. <view style="height:1.5vh;background-color: white;" />
  24. </view>
  25. </view>
  26. </template>
  27. <script setup>
  28. import {
  29. ref,
  30. onMounted
  31. } from 'vue'
  32. const iSMT = ref(0)
  33. onMounted(() => {
  34. // 状态栏高度
  35. iSMT.value = uni.getSystemInfoSync().statusBarHeight;
  36. console.log('看看高度', iSMT.value)
  37. })
  38. </script>
  39. <style>
  40. .top {
  41. height: 26vh;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. background-color: white;
  46. }
  47. .bottom {
  48. height: 35vh;
  49. padding: 0 60rpx;
  50. background-color: white;
  51. height: auto;
  52. }
  53. .title {
  54. font-size: 30rpx;
  55. font-weight: bold;
  56. margin-bottom: 20rpx;
  57. }
  58. .main-text {
  59. font-size: 27rpx;
  60. margin-bottom: 20rpx;
  61. color: rgb(122, 122, 122);
  62. text-align: justify;
  63. text-justify: inter-character;/* 两端对齐哈哈哈哈 */
  64. }
  65. .image{
  66. width:334rpx;
  67. height:310rpx;
  68. }
  69. </style>