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
| <template>
| <div class="deliveryContract">
| <!-- 头部-->
| <ContractHeader :title="title" :symbol="symbol" :price="price" :range="range" :selectIndex="'2'"></ContractHeader>
| <!-- 全仓-->
| <FullWarehouse></FullWarehouse>
| <!--仓位-->
| <position></position>
| </div>
| </template>
| <script>
| import ContractHeader from '@/components/contract-header/index.vue'
| import FullWarehouse from './FullWarehouse.vue'
| import position from './position.vue'
| export default {
| data() {
| return {
| title:this.$t('交割'),
| symbol:'BTC',
| price:'22637.22',
| range:'-3.81%',
| }
| },
| components: { ContractHeader,FullWarehouse,position},
| mounted() {
| },
| methods: {
| onClickLeft() {
| this.$router.push('/')
| },
| }
| }
| </script>
| <style lang="scss" scoped>
| .deliveryContract{
| background: #F5F5F5;
| }
| </style>
|
|