| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <!-- 期权 -->
- <div class="option">
- <div class="asset-total">
- <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 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">盈亏率(%)</div>
- <div class="number-two pf400 fs16 fc061237">5.25</div>
- </div>
- </div>
- </div>
- <div class="submit pf600 fs14 fcFFFFFF">交易</div>
- <div class="notifi-classifi">
- <div class="classifi-left">
- <div class="pf600 fs14 fc121212">持有仓位(2)</div>
- <div class="sys-notifi pf600 fs14 fcA8A8A8">当前委托(0)</div>
- </div>
- <div class="classifi-right pf600 fs14 fcA8A8A8">
- <img src="@/assets/icon/index/history.svg" alt="" />全部
- </div>
- </div>
- </div>
- </template>
- <script setup></script>
- <style lang="less" scoped>
- .option {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 30px;
- width: 100%;
- .asset-total {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- margin-top: 16px;
- width: 343px;
- .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;
- }
- .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;
- }
- .number-two {
- margin-top: 3px;
- height: 24px;
- line-height: 24px;
- text-align: end;
- }
- }
- }
- }
- .submit {
- margin-top: 16px;
- width: 311px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- border-radius: 100px;
- background: #df384c;
- letter-spacing: 0.2px;
- }
- .notifi-classifi {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-top: 15px;
- width: 349px;
- height: 24px;
- .classifi-left {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-end;
- height: 24px;
- .sys-notifi {
- margin-left: 29px;
- }
- }
- .classifi-right {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: end;
- height: 24px;
- img {
- margin-right: 4px;
- }
- }
- }
- }
- </style>
|