s-material-react 1.4.25 → 1.4.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/common/card.scss +7 -3
- package/css/common/icon.scss +19 -3
- package/css/common/index.scss +2 -0
- package/css/common/uploading.scss +62 -0
- package/css/common/uploadingImg.scss +19 -0
- package/css/pages/afterSalesApplyGroup/afterSalesApply.scss +199 -0
- package/css/pages/afterSalesApplyGroup/index.scss +1 -0
- package/css/pages/afterSalesDetailGroup/afterSalesDetail.scss +201 -0
- package/css/pages/afterSalesDetailGroup/index.scss +1 -0
- package/css/pages/afterSalesListGroup/afterSalesList.scss +97 -0
- package/css/pages/afterSalesListGroup/index.scss +1 -0
- package/css/pages/index.scss +4 -0
- package/css/pages/mySettingGroup/index.scss +1 -0
- package/css/pages/mySettingGroup/mySetting.scss +23 -0
- package/css/pages/refundOnlyGroup/refundOnly.scss +4 -0
- package/dist/common/card/index.d.ts +2 -3
- package/dist/common/uploading/index.d.ts +1 -0
- package/dist/common/uploadingImg/index.d.ts +1 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/fillIn.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/fillInPopup.d.ts +6 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/index.d.ts +3 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/subFillIn.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/components/tip.d.ts +1 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/context.d.ts +2 -0
- package/dist/components/AfterSalesApplyGroup/AfterSalesApply/index.d.ts +9 -0
- package/dist/components/AfterSalesApplyGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/expressPopup.d.ts +2 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/index.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/components/senderWrite.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/context.d.ts +2 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/index.d.ts +4 -0
- package/dist/components/AfterSalesDetailGroup/AfterSalesDetail/state.d.ts +1 -0
- package/dist/components/AfterSalesDetailGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/iconConfig.d.ts +9 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/index.d.ts +2 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/item.d.ts +2 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/noData.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/stateConfig.d.ts +7 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/components/tabContent.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/AfterSalesList/index.d.ts +1 -0
- package/dist/components/AfterSalesListGroup/index.d.ts +1 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/components/type.d.ts +2 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/context.d.ts +2 -0
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/index.d.ts +2 -1
- package/dist/components/AfterSalesTypeGroup/AfterSalesType/typeConfig.d.ts +1 -0
- package/dist/components/MySettingGroup/MySetting/index.d.ts +3 -0
- package/dist/components/MySettingGroup/index.d.ts +1 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/hooks/useCountDown.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/css/common/card.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
gap: 7px;
|
|
7
7
|
margin-bottom: 12px;
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
.card-item-img {
|
|
10
10
|
width: 80px;
|
|
11
11
|
height: 80px;
|
|
12
12
|
border-radius: 8px;
|
|
@@ -19,9 +19,11 @@
|
|
|
19
19
|
grid-auto-flow: dense;
|
|
20
20
|
line-height: 18px;
|
|
21
21
|
justify-content: space-between;
|
|
22
|
+
height: 36px;
|
|
23
|
+
|
|
22
24
|
&-title {
|
|
23
25
|
@include titleLine(2);
|
|
24
|
-
font-size:
|
|
26
|
+
font-size: 12px;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
&-price {
|
|
@@ -37,8 +39,10 @@
|
|
|
37
39
|
grid-template-columns: 1fr 60px;
|
|
38
40
|
justify-content: space-between;
|
|
39
41
|
color: #999999;
|
|
40
|
-
font-size:
|
|
42
|
+
font-size: 12px;
|
|
41
43
|
margin-bottom: 3px;
|
|
44
|
+
margin-top: 5px;
|
|
45
|
+
|
|
42
46
|
.count {
|
|
43
47
|
text-align: right;
|
|
44
48
|
}
|
package/css/common/icon.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'iconfont'; /* Project id 3540782 */
|
|
3
|
-
src: url('//at.alicdn.com/t/c/
|
|
4
|
-
url('//at.alicdn.com/t/c/
|
|
5
|
-
url('//at.alicdn.com/t/c/
|
|
3
|
+
src: url('//at.alicdn.com/t/c/font_3540782_bsflztyc45f.woff2?t=1686895966279') format('woff2'),
|
|
4
|
+
url('//at.alicdn.com/t/c/font_3540782_bsflztyc45f.woff?t=1686895966279') format('woff'),
|
|
5
|
+
url('//at.alicdn.com/t/c/font_3540782_bsflztyc45f.ttf?t=1686895966279') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.iconfont {
|
|
@@ -22,6 +22,22 @@
|
|
|
22
22
|
-moz-osx-font-smoothing: grayscale;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
.icon-tuikuan1:before {
|
|
26
|
+
content: '\e606';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.icon-tuihuotuikuan:before {
|
|
30
|
+
content: '\e609';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.icon-shangchuanpingzheng:before {
|
|
34
|
+
content: '\e66b';
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.icon-wujiaoxing-:before {
|
|
38
|
+
content: '\e647';
|
|
39
|
+
}
|
|
40
|
+
|
|
25
41
|
.icon-bianzu:before {
|
|
26
42
|
content: '\e605';
|
|
27
43
|
}
|
package/css/common/index.scss
CHANGED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.select_img {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
|
|
5
|
+
.icon_img {
|
|
6
|
+
width: 60px;
|
|
7
|
+
height: 60px;
|
|
8
|
+
border: 1px dashed #9e9e9e;
|
|
9
|
+
color: #9e9e9e;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: space-around;
|
|
14
|
+
padding: 3px;
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.show_img {
|
|
19
|
+
position: relative;
|
|
20
|
+
|
|
21
|
+
.delete_btn {
|
|
22
|
+
display: block;
|
|
23
|
+
width: 16px;
|
|
24
|
+
height: 16px;
|
|
25
|
+
// border: 2rpx solid #9e9e9e;
|
|
26
|
+
border-radius: 50%;
|
|
27
|
+
position: absolute;
|
|
28
|
+
line-height: 16px;
|
|
29
|
+
text-align: center;
|
|
30
|
+
background: #000;
|
|
31
|
+
color: #fff;
|
|
32
|
+
right: -5px;
|
|
33
|
+
top: -6px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.img {
|
|
37
|
+
width: 65px;
|
|
38
|
+
height: 65px;
|
|
39
|
+
margin-left: 7px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.upload_content {
|
|
44
|
+
.upload_btn {
|
|
45
|
+
width: 100%;
|
|
46
|
+
height: 40px;
|
|
47
|
+
line-height: 40px;
|
|
48
|
+
font-size: 14px;
|
|
49
|
+
text-align: center;
|
|
50
|
+
border-bottom: 2px solid #000;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.upload_unbtn {
|
|
54
|
+
width: 100%;
|
|
55
|
+
height: 30px;
|
|
56
|
+
line-height: 30px;
|
|
57
|
+
font-size: 15px;
|
|
58
|
+
text-align: center;
|
|
59
|
+
border-top: 1px solid #000;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.uploadingPage {
|
|
2
|
+
background: #fff;
|
|
3
|
+
border-radius: 6px;
|
|
4
|
+
padding: 10px;
|
|
5
|
+
|
|
6
|
+
.uploadingContent {
|
|
7
|
+
font-size: 15px;
|
|
8
|
+
font-weight: 600;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.uploadingText {
|
|
12
|
+
background: #f6f6f6;
|
|
13
|
+
padding: 10px;
|
|
14
|
+
|
|
15
|
+
.uploadImg {
|
|
16
|
+
display: flex;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
@import '../../theme/regular';
|
|
2
|
+
|
|
3
|
+
.afterSalesApply {
|
|
4
|
+
background-color: #f9fafb;
|
|
5
|
+
//background-color: green;
|
|
6
|
+
width: 100%;
|
|
7
|
+
padding: 12px;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
|
|
10
|
+
.submitBtn {
|
|
11
|
+
height: 40px;
|
|
12
|
+
width: 100%;
|
|
13
|
+
border-radius: 20px;
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
background-color: #000000;
|
|
16
|
+
color: #ffffff;
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.afterSalesApplyTip {
|
|
23
|
+
line-height: 18px;
|
|
24
|
+
font-size: 12px;
|
|
25
|
+
color: #ed4444;
|
|
26
|
+
border-radius: 6px;
|
|
27
|
+
text-align: center;
|
|
28
|
+
background-color: #ffffff;
|
|
29
|
+
padding: 12px 0;
|
|
30
|
+
margin-bottom: 12px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.afterSalesApplyFillIn {
|
|
34
|
+
padding: 16px 12px;
|
|
35
|
+
position: relative;
|
|
36
|
+
background-color: #ffffff;
|
|
37
|
+
border-radius: 6px;
|
|
38
|
+
margin-bottom: 12px;
|
|
39
|
+
|
|
40
|
+
.fillInLabel {
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
43
|
+
|
|
44
|
+
.icon {
|
|
45
|
+
font-size: 14px;
|
|
46
|
+
color: #ed4444;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.word {
|
|
50
|
+
font-size: 14px;
|
|
51
|
+
color: $fontColor;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.reason {
|
|
56
|
+
display: flex;
|
|
57
|
+
justify-content: space-between;
|
|
58
|
+
margin-bottom: 24px;
|
|
59
|
+
|
|
60
|
+
.rPart {
|
|
61
|
+
.choose {
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
color: #c3c6cd;
|
|
64
|
+
align-items: center;
|
|
65
|
+
|
|
66
|
+
.chooseResult {
|
|
67
|
+
color: $fontColor;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.price {
|
|
74
|
+
display: flex;
|
|
75
|
+
justify-content: space-between;
|
|
76
|
+
margin-bottom: 24px;
|
|
77
|
+
|
|
78
|
+
.allPrice {
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
|
|
82
|
+
.single {
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
color: $fontColor;
|
|
85
|
+
font-weight: 500;
|
|
86
|
+
padding-right: 5px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.count {
|
|
90
|
+
font-size: 12px;
|
|
91
|
+
color: #dddddd;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.reasonPopup {
|
|
97
|
+
padding: 16px;
|
|
98
|
+
box-sizing: border-box;
|
|
99
|
+
|
|
100
|
+
.title {
|
|
101
|
+
color: $fontColor;
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
line-height: 27px;
|
|
104
|
+
font-size: 18px;
|
|
105
|
+
text-align: center;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.reasonItem {
|
|
109
|
+
margin-bottom: 18px;
|
|
110
|
+
display: flex;
|
|
111
|
+
justify-content: space-between;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.afterSalesApplySubFillIn {
|
|
117
|
+
padding: 12px;
|
|
118
|
+
background-color: #ffffff;
|
|
119
|
+
border-radius: 6px;
|
|
120
|
+
margin-bottom: 50px;
|
|
121
|
+
|
|
122
|
+
.title {
|
|
123
|
+
font-weight: 500;
|
|
124
|
+
color: $fontColor;
|
|
125
|
+
line-height: 21px;
|
|
126
|
+
margin-bottom: 12px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.content {
|
|
130
|
+
background-color: #f9fafb;
|
|
131
|
+
border-radius: 6px;
|
|
132
|
+
padding: 12px;
|
|
133
|
+
box-sizing: border-box;
|
|
134
|
+
|
|
135
|
+
.imgGroup {
|
|
136
|
+
display: flex;
|
|
137
|
+
margin-top: 15px;
|
|
138
|
+
|
|
139
|
+
.add {
|
|
140
|
+
width: 60px;
|
|
141
|
+
height: 60px;
|
|
142
|
+
border: 1px dashed #c3c6cd;
|
|
143
|
+
border-radius: 6px;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-items: center;
|
|
146
|
+
|
|
147
|
+
.addContent {
|
|
148
|
+
width: 100%;
|
|
149
|
+
|
|
150
|
+
.icon {
|
|
151
|
+
display: block;
|
|
152
|
+
margin: 0 auto 4px;
|
|
153
|
+
color: #c3c6cd !important;
|
|
154
|
+
font-size: 20px !important;
|
|
155
|
+
text-align: center;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.word {
|
|
159
|
+
font-size: 12px;
|
|
160
|
+
width: 100%;
|
|
161
|
+
text-align: center;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.num {
|
|
165
|
+
font-size: 12px;
|
|
166
|
+
width: 100%;
|
|
167
|
+
text-align: center;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.imgItem {
|
|
173
|
+
width: 60px;
|
|
174
|
+
height: 60px;
|
|
175
|
+
border: 1px solid #ccc;
|
|
176
|
+
background-size: cover;
|
|
177
|
+
background-position: center;
|
|
178
|
+
border-radius: 6px;
|
|
179
|
+
margin-left: 8px;
|
|
180
|
+
position: relative;
|
|
181
|
+
|
|
182
|
+
.cancel {
|
|
183
|
+
width: 20px;
|
|
184
|
+
height: 20px;
|
|
185
|
+
border-radius: 50%;
|
|
186
|
+
position: absolute;
|
|
187
|
+
top: -10px;
|
|
188
|
+
right: -10px;
|
|
189
|
+
color: #ffffff;
|
|
190
|
+
background-color: #979797;
|
|
191
|
+
display: flex;
|
|
192
|
+
align-items: center;
|
|
193
|
+
justify-content: center;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './afterSalesApply';
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
@import '../../theme/regular';
|
|
2
|
+
|
|
3
|
+
.afterSalesDetail {
|
|
4
|
+
@mixin padding {
|
|
5
|
+
padding: 0 12px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
color: $fontColor;
|
|
9
|
+
|
|
10
|
+
.afterSalesDetailTopTitle {
|
|
11
|
+
height: 100px;
|
|
12
|
+
//background: linear-gradient(360deg, #585858 0%, #2d2d2d 100%);
|
|
13
|
+
box-shadow: 0 2px 20px 0 rgba(227, 227, 227, 0.5);
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
justify-content: space-between;
|
|
17
|
+
color: #fff;
|
|
18
|
+
padding: 0 16px;
|
|
19
|
+
|
|
20
|
+
.left_text {
|
|
21
|
+
font-size: 18px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.right_time {
|
|
25
|
+
margin-top: 10px;
|
|
26
|
+
font-size: 12px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.afterSalesDetailContent {
|
|
31
|
+
position: relative;
|
|
32
|
+
@include padding;
|
|
33
|
+
background: #f5f5f5;
|
|
34
|
+
|
|
35
|
+
.refundDetail {
|
|
36
|
+
position: relative;
|
|
37
|
+
top: -30px;
|
|
38
|
+
background: #fff;
|
|
39
|
+
border-radius: 6px;
|
|
40
|
+
padding-left: 12px;
|
|
41
|
+
padding-right: 12px;
|
|
42
|
+
|
|
43
|
+
.title {
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
padding: 12px 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.goodsDetail {
|
|
49
|
+
border-bottom: 1px solid #f5f5f5;
|
|
50
|
+
margin-bottom: 10px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.refund_Detail {
|
|
54
|
+
display: flex;
|
|
55
|
+
justify-content: space-between;
|
|
56
|
+
padding-top: 6px;
|
|
57
|
+
padding-bottom: 12px;
|
|
58
|
+
|
|
59
|
+
.left {
|
|
60
|
+
font-size: 14px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.right {
|
|
64
|
+
display: flex;
|
|
65
|
+
font-size: 14px;
|
|
66
|
+
|
|
67
|
+
.refundImg {
|
|
68
|
+
width: 50px;
|
|
69
|
+
height: 50px;
|
|
70
|
+
margin-left: 10px;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.merchantMsg {
|
|
76
|
+
.title {
|
|
77
|
+
font-size: 14px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.name {
|
|
81
|
+
font-size: 14px;
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
margin-top: 10px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.address {
|
|
87
|
+
font-size: 14px;
|
|
88
|
+
margin-top: 10px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.writeMsg {
|
|
93
|
+
padding-bottom: 12px;
|
|
94
|
+
|
|
95
|
+
.wlMsg {
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
border-bottom: 1px solid #484646;
|
|
98
|
+
height: 30px;
|
|
99
|
+
line-height: 30px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.express_content {
|
|
103
|
+
display: flex;
|
|
104
|
+
justify-content: space-between;
|
|
105
|
+
padding-top: 6px;
|
|
106
|
+
padding-bottom: 6px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.sender_content {
|
|
110
|
+
font-size: 14px;
|
|
111
|
+
border-bottom: 1px solid #7a7878;
|
|
112
|
+
height: 40px;
|
|
113
|
+
text-align: 40px;
|
|
114
|
+
display: flex;
|
|
115
|
+
align-items: center;
|
|
116
|
+
|
|
117
|
+
.sender_icon {
|
|
118
|
+
color: red;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sender_name {
|
|
122
|
+
display: flex;
|
|
123
|
+
width: 25%;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.sender_input {
|
|
127
|
+
width: 75%;
|
|
128
|
+
text-align: right;
|
|
129
|
+
|
|
130
|
+
.adm-input {
|
|
131
|
+
.adm-input-element {
|
|
132
|
+
text-align: right;
|
|
133
|
+
font-size: 14px;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// .name_style {
|
|
139
|
+
// padding-right: 9px;
|
|
140
|
+
// }
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.expressInfo {
|
|
144
|
+
display: flex;
|
|
145
|
+
flex-direction: row-reverse;
|
|
146
|
+
margin-top: 10px;
|
|
147
|
+
|
|
148
|
+
.expressInfo_btn {
|
|
149
|
+
width: 90px;
|
|
150
|
+
height: 28px;
|
|
151
|
+
border-radius: 17px;
|
|
152
|
+
border: 1px solid #394259;
|
|
153
|
+
line-height: 28px;
|
|
154
|
+
font-size: 12px;
|
|
155
|
+
text-align: center;
|
|
156
|
+
background: #000;
|
|
157
|
+
color: #fff;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.reasonPopup {
|
|
162
|
+
padding: 16px;
|
|
163
|
+
box-sizing: border-box;
|
|
164
|
+
|
|
165
|
+
.title {
|
|
166
|
+
color: $fontColor;
|
|
167
|
+
font-weight: 500;
|
|
168
|
+
line-height: 27px;
|
|
169
|
+
font-size: 18px;
|
|
170
|
+
text-align: center;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.reasonItem {
|
|
174
|
+
margin-bottom: 18px;
|
|
175
|
+
display: flex;
|
|
176
|
+
justify-content: space-between;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.footerBtn {
|
|
184
|
+
margin: 10px 0;
|
|
185
|
+
display: flex;
|
|
186
|
+
flex-direction: row-reverse;
|
|
187
|
+
|
|
188
|
+
.btn {
|
|
189
|
+
width: 72px;
|
|
190
|
+
height: 28px;
|
|
191
|
+
border-radius: 17px;
|
|
192
|
+
border: 1px solid #394259;
|
|
193
|
+
margin-right: 12px;
|
|
194
|
+
line-height: 28px;
|
|
195
|
+
font-size: 12px;
|
|
196
|
+
text-align: center;
|
|
197
|
+
|
|
198
|
+
color: $fontColor;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './afterSalesDetail.scss';
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
@import '../../theme/regular';
|
|
2
|
+
|
|
3
|
+
.afterSalesList {
|
|
4
|
+
background-color: #f7f7f7;
|
|
5
|
+
padding: 20px 0;
|
|
6
|
+
|
|
7
|
+
.qj-tabs {
|
|
8
|
+
background-color: #ffffff;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.afterSalesListItem {
|
|
12
|
+
background-color: #ffffff;
|
|
13
|
+
border-radius: 12px;
|
|
14
|
+
padding: 0 12px 12px;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
margin-bottom: 12px;
|
|
17
|
+
|
|
18
|
+
.title {
|
|
19
|
+
padding: 6px 0;
|
|
20
|
+
border-bottom: 1px solid #f1f1f1;
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: space-between;
|
|
24
|
+
|
|
25
|
+
.lPart {
|
|
26
|
+
color: #999999;
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.rPart {
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
|
|
34
|
+
.txt {
|
|
35
|
+
color: $fontColor;
|
|
36
|
+
padding-left: 5px;
|
|
37
|
+
font-size: 12px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.goodsInfo {
|
|
43
|
+
display: flex;
|
|
44
|
+
padding: 12px 0;
|
|
45
|
+
|
|
46
|
+
.lPart {
|
|
47
|
+
margin-right: 12px;
|
|
48
|
+
|
|
49
|
+
.img {
|
|
50
|
+
width: 60px;
|
|
51
|
+
height: 60px;
|
|
52
|
+
border-radius: 4px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.rPart {
|
|
57
|
+
flex: 1;
|
|
58
|
+
|
|
59
|
+
.goodsName {
|
|
60
|
+
color: $fontColor;
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
margin-bottom: 9px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.count {
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
color: #a5a5a5;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.tip {
|
|
73
|
+
height: 40px;
|
|
74
|
+
line-height: 40px;
|
|
75
|
+
width: 100%;
|
|
76
|
+
border-radius: 4px;
|
|
77
|
+
background-color: #f5f5f5;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: space-between;
|
|
80
|
+
align-items: center;
|
|
81
|
+
padding: 0 12px;
|
|
82
|
+
box-sizing: border-box;
|
|
83
|
+
|
|
84
|
+
.lPart {
|
|
85
|
+
color: $fontColor;
|
|
86
|
+
font-size: 12px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
.noData {
|
|
91
|
+
.txt {
|
|
92
|
+
font-size: 16px;
|
|
93
|
+
text-align: center;
|
|
94
|
+
padding-top: 50px;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './afterSalesList';
|
package/css/pages/index.scss
CHANGED
|
@@ -47,6 +47,10 @@
|
|
|
47
47
|
@import './refundGroup';
|
|
48
48
|
@import './refundOnlyGroup';
|
|
49
49
|
@import './afterSalesTypeGroup';
|
|
50
|
+
@import './afterSalesApplyGroup';
|
|
51
|
+
@import './afterSalesDetailGroup';
|
|
52
|
+
@import './afterSalesListGroup';
|
|
53
|
+
@import './mySettingGroup';
|
|
50
54
|
|
|
51
55
|
//
|
|
52
56
|
//* {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './mySetting';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.mySetting {
|
|
2
|
+
.item {
|
|
3
|
+
height: 50px;
|
|
4
|
+
line-height: 50px;
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
padding: 0 10px;
|
|
8
|
+
font-size: 14px;
|
|
9
|
+
border-bottom: 1px solid #efefef;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.btn {
|
|
13
|
+
margin: 50px auto;
|
|
14
|
+
width: 80%;
|
|
15
|
+
height: 50px;
|
|
16
|
+
line-height: 50px;
|
|
17
|
+
background-color: #000;
|
|
18
|
+
color: #fff;
|
|
19
|
+
border-radius: 50px;
|
|
20
|
+
text-align: center;
|
|
21
|
+
font-size: 14px;
|
|
22
|
+
}
|
|
23
|
+
}
|