confirm.vue
877 Bytes
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
42
43
44
45
46
47
48
49
50
51
<template>
<LayoutApp :show-back="true">
<div class="title">出售</div>
<ProductInfo></ProductInfo>
<div>
<div>需支付保证金:¥0</div>
<div>所有商品必须为国内现货,且承诺36小时内发货,交易成功后将自动退还保证金</div>
</div>
<div class="fee-detail">
<div></div>
<div></div>
<div></div>
</div>
<AddressInfo></AddressInfo>
</LayoutApp>
</template>
<script>
import ProductInfo from './components/confirm/product';
import AddressInfo from './components/confirm/address';
export default {
name: 'OrderConfirm',
components: {
ProductInfo,
AddressInfo
},
data() {
return {};
}
};
</script>
<style lang="scss" scoped>
.footer {
position: absolute;
bottom: 0;
width: 100%;
z-index: 100;
}
.body {
height: 100%;
overflow-y: auto;
}
</style>