| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <!-- 理财首页 -->
- <HeaderNav headerText="理财"></HeaderNav>
- <div class="financial-index">
- <div class="asset-total">
- <div class="my-asset">
- <div class="total-left">
- <div class="asset-title pf400 fs16 fc1F2937">理财总资产(USDT)</div>
- <div class="asset-number pf600 fs32 fc1F2937">1,125,158.00</div>
- <div class="asset-approximately pf400 fs16 fcDF384C">≈35,458.00</div>
- </div>
- <div class="total-right pf500 fs12 fcFFFFFF" @click="goMyFinancial">我的理财</div>
- </div>
- <div class="asset-revenue">
- <div class="asset-left">
- <div class="text pf400 fs12 fc6A7187">昨日收益(USDT)</div>
- <div class="number pf400 fs16 fc061237">5,678.00</div>
- </div>
- <div class="asset-right">
- <div class="text pf400 fs12 fc6A7187">累计收益(USDT)</div>
- <div class="number pf400 fs16 fc061237">5,678.00</div>
- </div>
- </div>
- </div>
- <div class="advertisement">
- <img src="@/assets/img/index/Rectangle 1.svg" alt="" />
- </div>
- <div class="index-menu">
- <div
- class="menu-item"
- v-for="(item, index) in indexMenu"
- :key="index"
- @click="goMenu(index)">
- <img :src="item.image" alt="" />
- <div class="item-text pf400 fs14 fc666666">{{ item.name }}</div>
- </div>
- </div>
- <div class="recommend">
- <div class="title pf600 fs18 fc121212">理财推荐</div>
- <div class="recomment-body">
- <div
- class="recomment-item"
- v-for="(item, index) in 5"
- :key="index"
- @click="goFinancialBuy">
- <div class="item-left">
- <img src="@/assets/icon/coin/bnb.svg" alt="" />
- <div class="item-time">
- <div class="time-top pf500 fs14 fc2C3131">Bitcoin定期</div>
- <div class="time-bottom pf400 fs10 fcA9A9A9">定期</div>
- </div>
- </div>
- <div class="item-right">
- <div class="time-top pf500 fs14 fc2C3131">0.35%</div>
- <div class="time-bottom pf400 fs10 fcA9A9A9">15天</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import HeaderNav from "../components/HeaderNav.vue";
- import { useRoute, useRouter } from "vue-router";
- const router = useRouter();
- const goMyFinancial = () => {
- router.push("/myFinancial");
- };
- const goFinancialBuy = () => {
- router.push("/financialBuy");
- };
- const goMenu = (index) => {
- if (index == 0) {
- router.push("/cloudComPowerIndex");
- } else if (index == 1) {
- router.push("/loanIndex");
- } else if (index == 2) {
- router.push("/stakingIndex");
- }
- };
- const indexMenu = [
- {
- name: "云算力",
- image: require("@/assets/icon/index/yunsuanli.svg"),
- },
- {
- name: "贷款",
- image: require("@/assets/icon/index/daikuan.svg"),
- },
- {
- name: "质押",
- image: require("@/assets/icon/index/zhiya.svg"),
- },
- ];
- </script>
- <style lang="less" scoped>
- .financial-index {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- margin-top: 48px;
- width: 100%;
- .asset-total {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- margin-top: 17px;
- width: 343px;
- .my-asset {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 343px;
- align-items: center;
- .total-left {
- .asset-title {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 22px;
- .eye-close {
- margin-left: 5px;
- width: 16px;
- height: 16px;
- }
- }
- .asset-number {
- margin-top: 3px;
- height: 44px;
- line-height: 44px;
- }
- .asset-approximately {
- margin-top: 1px;
- height: 22px;
- line-height: 22px;
- }
- }
- .total-right {
- width: 76px;
- height: 24px;
- line-height: 24px;
- text-align: center;
- border-radius: 5px;
- background: #df384c;
- }
- }
- .asset-revenue {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 6px;
- height: 44px;
- .asset-left,
- .asset-right {
- height: 100%;
- .text {
- height: 20px;
- line-height: 20px;
- letter-spacing: 0.3px;
- }
- .number {
- margin-top: 3px;
- height: 24px;
- line-height: 24px;
- }
- }
- }
- }
- .advertisement {
- margin-top: 10px;
- width: 345px;
- height: 85px;
- }
- .index-menu {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 15px;
- width: 269px;
- height: 57px;
- .menu-item {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- width: 57px;
- height: 57px;
- img {
- width: 32px;
- height: 32px;
- }
- .item-text {
- margin-top: 1px;
- height: 24px;
- line-height: 24px;
- letter-spacing: 0.2px;
- }
- }
- }
- .recommend {
- width: 345px;
- .title {
- margin-top: 15px;
- height: 24px;
- line-height: 24px;
- letter-spacing: 0.2px;
- }
- .recomment-body {
- margin-top: 13px;
- width: 100%;
- .recomment-item {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 25px;
- height: 34px;
- &:first-child {
- margin-top: 0;
- }
- .item-left {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- img {
- width: 32px;
- height: 32px;
- }
- .item-time {
- margin-left: 10px;
- height: 34px;
- .time-top {
- height: 20px;
- line-height: 20px;
- }
- .time-bottom {
- height: 14px;
- line-height: 14px;
- }
- }
- }
- .item-right {
- height: 34px;
- .time-top {
- height: 20px;
- line-height: 20px;
- }
- .time-bottom {
- height: 14px;
- line-height: 14px;
- }
- }
- }
- }
- }
- }
- </style>
|