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
52
53
54
55
56
57
58
59
| <template>
| <wantBuy :showDot="false"></wantBuy>
| </template>
|
| <script>
| import wantBuy from "@/page/placeAnOrder/page/wantBuy";
| export default {
| name: 'receivingBuy',
| components: {
| wantBuy
| },
|
| methods: {
|
| },
| }
| </script>
|
| <style lang="scss" scoped>
| .dia-main {
| padding: 50px;
| color: #000;
|
| .dia-change {
| text-align: center;
| margin-bottom: 32px;
| font-size: 35px;
| font-weight: bold;
| }
|
| .dia-text {
| margin-bottom: 40px;
| }
|
| .dia-btn {
| display: flex;
| justify-content: space-between;
|
| div {
| width: 240px;
| height: 80px;
| text-align: center;
| line-height: 80px;
| background: #eaebee;
| color: #21262f;
| font-size: 32px;
| border-radius: 8px;
| }
| }
| }
|
| .box-radius {
| border-radius: 40px;
| }
|
| .list-img {
| top: -6px;
| }
| </style>
|
|