交易所前端蓝色ui, 4.5 jiem
jhzh
2024-04-08 67357c691325dc3cf743267f1ef0e1f5c93d7528
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
<template>
    <div class="w-full h-full">
        <trade-success-detail :back="back">
          
        </trade-success-detail>
    </div>
</template>
 
<script>
import {
    mapState
} from "vuex";
import TradeSuccessDetail from "@/page/c2c-trade/components/TradeSuccessDetail";
export default {
    name: "TradeSuccessDetailSell",
    computed: {
        ...mapState('c2cSell', ['orderInfo'])
    },
    components: {
        TradeSuccessDetail,
    },
    data(){
        return {
            back:true
        }
    },
    created(){
        if (this.$route.query.back){
            this.back = false
        }
    },
}
</script>
 
<style lang="scss" scoped>
::v-deep .order-data {
    .title {
        padding-left: 32px;
    }
}
</style>