jhzh
2024-09-23 e678ec74066a2c5b5b3b404d3344bffbd3cf59bd
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>