dolphin-weex-bc 0.0.11 → 0.0.13
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/CHANGELOG.md +10 -0
- package/dist/index.native.js +903 -581
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +2038 -1844
- package/dist/index.web.js.map +1 -1
- package/package.json +2 -2
- package/packages/dof-consumables/assets/css/index.css +18 -7
- package/packages/dof-consumables/assets/css/index_diablo.css +230 -0
- package/packages/dof-consumables/index.vue +170 -100
- package/packages/dof-xiaomei-card/index.vue +1 -1
- package/packages/material-event/index.js +63 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-weex-bc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"dolphin-native-bridge": "^0.5.16",
|
|
67
|
-
"dolphin-weex-ui": "^2.
|
|
67
|
+
"dolphin-weex-ui": "^2.4.0",
|
|
68
68
|
"lodash": "^4.17.21",
|
|
69
69
|
"md5": "^2.3.0",
|
|
70
70
|
"md5-node": "^1.0.1"
|
|
@@ -170,7 +170,6 @@
|
|
|
170
170
|
height: 160px;
|
|
171
171
|
padding: 0 32px 0 36px;
|
|
172
172
|
/* background-image: linear-gradient(to bottom, #f5fcfe, #FFFFFF); */
|
|
173
|
-
background: #F6F7F9;
|
|
174
173
|
/* border: 2px solid #FFFFFF; */
|
|
175
174
|
border-bottom: 1px solid #DDDDDD;
|
|
176
175
|
border-radius: 24px 24px 0 0;
|
|
@@ -188,6 +187,8 @@
|
|
|
188
187
|
}
|
|
189
188
|
.title-icon{
|
|
190
189
|
margin-right: 28px;
|
|
190
|
+
width: 88px;
|
|
191
|
+
height: 88px;
|
|
191
192
|
/* border-radius: 12px; */
|
|
192
193
|
}
|
|
193
194
|
.title-icon3{
|
|
@@ -196,7 +197,7 @@
|
|
|
196
197
|
.title-txt1-1{
|
|
197
198
|
font-size: 28px;
|
|
198
199
|
font-weight: 500;
|
|
199
|
-
color: #1E2E37
|
|
200
|
+
color: #1E2E37;
|
|
200
201
|
margin-bottom: 16px;
|
|
201
202
|
flex: 1;
|
|
202
203
|
lines: 2;
|
|
@@ -219,9 +220,18 @@
|
|
|
219
220
|
font-size: 24px;
|
|
220
221
|
color: #8E969B;
|
|
221
222
|
}
|
|
223
|
+
.title-txt2-overflow{
|
|
224
|
+
max-width: 426px;
|
|
225
|
+
overflow: hidden;
|
|
226
|
+
lines: 1;
|
|
227
|
+
text-overflow: ellipsis;
|
|
228
|
+
}
|
|
229
|
+
.title-txt2-user{
|
|
230
|
+
font-size: 24px;
|
|
231
|
+
color: #8E969B;
|
|
232
|
+
}
|
|
222
233
|
.title-txt3-box{
|
|
223
234
|
flex-direction: row;
|
|
224
|
-
flex: 1;
|
|
225
235
|
}
|
|
226
236
|
.title-txt3-1{
|
|
227
237
|
max-width: 426px;
|
|
@@ -241,11 +251,10 @@
|
|
|
241
251
|
display: flex;
|
|
242
252
|
flex-direction: row;
|
|
243
253
|
align-items: center;
|
|
244
|
-
background-color: #F6F7F9;
|
|
245
254
|
}
|
|
246
|
-
.material-item:nth-child(){
|
|
255
|
+
/* .material-item:nth-child(){
|
|
247
256
|
border-radius: 0 0 24px 24px;
|
|
248
|
-
}
|
|
257
|
+
} */
|
|
249
258
|
.item-left{
|
|
250
259
|
/* margin-right: 32px; */
|
|
251
260
|
}
|
|
@@ -353,7 +362,9 @@
|
|
|
353
362
|
|
|
354
363
|
}
|
|
355
364
|
.arrow-icon{
|
|
356
|
-
|
|
365
|
+
width:24px;
|
|
366
|
+
height:24px;
|
|
367
|
+
color:#C7C7CC;
|
|
357
368
|
}
|
|
358
369
|
|
|
359
370
|
.no-data{
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
|
|
2
|
+
.material-title-isDiablo{
|
|
3
|
+
background-image: linear-gradient(to bottom, #64747E, #171C1F);
|
|
4
|
+
border-bottom: 1px solid #23282b;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
.title-txt2-o1{
|
|
9
|
+
max-width: 360px;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
lines: 1;
|
|
12
|
+
text-overflow: ellipsis;
|
|
13
|
+
font-size: 22px;
|
|
14
|
+
color: #797C7E;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.title-txt2-o2{
|
|
18
|
+
max-width: 360px;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
lines: 1;
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
font-size: 22px;
|
|
23
|
+
color: #8E969B;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.title-txt2-o3{
|
|
27
|
+
max-width: 426px;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
lines: 1;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
font-size: 24px;
|
|
32
|
+
color: #797C7E;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.title-txt2-o4{
|
|
36
|
+
max-width: 426px;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
lines: 1;
|
|
39
|
+
text-overflow: ellipsis;
|
|
40
|
+
font-size: 24px;
|
|
41
|
+
color: #8E969B;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.title-txt2-user1{
|
|
45
|
+
font-size: 22px;
|
|
46
|
+
color: #797C7E;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.title-txt2-user1-1{
|
|
50
|
+
font-size: 22px;
|
|
51
|
+
color: #303538;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.title-txt2-user2{
|
|
55
|
+
font-size: 22px;
|
|
56
|
+
color: #8E969B;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.title-txt2-user3{
|
|
60
|
+
font-size: 24px;
|
|
61
|
+
color: #797C7E;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.title-txt2-user3-3{
|
|
65
|
+
font-size: 24px;
|
|
66
|
+
color: #303538;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.title-txt2-user4{
|
|
70
|
+
font-size: 24px;
|
|
71
|
+
color: #8E969B;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.title-txt2-user-n1{
|
|
75
|
+
font-size: 22px;
|
|
76
|
+
color: #D35926;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.title-txt2-user-n2{
|
|
80
|
+
font-size: 22px;
|
|
81
|
+
color: #F56428;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.title-txt2-user-n3{
|
|
85
|
+
font-size: 24px;
|
|
86
|
+
color: #D35926;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.title-txt2-user-n4{
|
|
90
|
+
font-size: 24px;
|
|
91
|
+
color: #F56428;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
.title-icon-isScale{
|
|
96
|
+
width: 81px;
|
|
97
|
+
height: 81px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.title-txt1-1-isScale{
|
|
101
|
+
font-size: 25px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.title-txt1-1-isDiablo{
|
|
105
|
+
color: #CFCFD0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.title-txt2-user-isScale{
|
|
109
|
+
font-size: 22px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.title-txt2-user-isDiablo{
|
|
113
|
+
color: #797C7E;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.title-txt3-isDiablo{
|
|
117
|
+
color: #D35926;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.material-item-isScale{
|
|
121
|
+
height: 147px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.material-item-isDiablo{
|
|
125
|
+
background-color: #171C1F;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.drag-slider-isScale{
|
|
129
|
+
width: 81px;
|
|
130
|
+
height: 81px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.progresscycle-wrapper-isScale{
|
|
134
|
+
width: 81px;
|
|
135
|
+
height: 81px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.progresscycle-wrapper-isDiablo{
|
|
139
|
+
background-color: #171C1F;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.progresscycle-isScale{
|
|
143
|
+
width: 88px;
|
|
144
|
+
height: 88px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.circle-noData-isScale{
|
|
148
|
+
width: 81px;
|
|
149
|
+
height: 81px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.circle-noData-isDiablo{
|
|
153
|
+
background-color: #1E2326;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.noData-txt-isDiablo{
|
|
157
|
+
color: #8E969B;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.circle-noData1-isScale{
|
|
161
|
+
width: 81px;
|
|
162
|
+
height: 81px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.circle-noData1-isDiablo{
|
|
166
|
+
background-color: #1E2326;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.item-txt1-isScale{
|
|
170
|
+
font-size: 29px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.item-txt1-isDiablo{
|
|
174
|
+
color: #CFCFD0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.item-txt3-isScale{
|
|
178
|
+
font-size: 22px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.item-txt3-isDiablo{
|
|
182
|
+
color: #D35926;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.item-txt4-isScale{
|
|
186
|
+
font-size: 22px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.item-txt4-isDiablo{
|
|
190
|
+
color: #797C7E;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.item-txt5-isScale{
|
|
194
|
+
font-size: 22px;
|
|
195
|
+
max-width: 280px;
|
|
196
|
+
overflow: hidden;
|
|
197
|
+
lines: 1;
|
|
198
|
+
text-overflow: ellipsis;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.item-txt5-isDiablo{
|
|
202
|
+
color: #BE8214;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.btn-purhase-isScale-isScale {
|
|
206
|
+
width: 88px;
|
|
207
|
+
height: 42px;
|
|
208
|
+
border-radius: 25px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.btn-purhase-isScale-isDiablo {
|
|
212
|
+
background: rgba(4,144,211,0.10);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.txt-purhase-isScale {
|
|
216
|
+
font-size: 20px;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.txt-purhase-isDiablo {
|
|
220
|
+
color: #0490D3;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.arrow-icon-isScale{
|
|
224
|
+
width:22px;
|
|
225
|
+
height:22px;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.arrow-icon-isDiablo{
|
|
229
|
+
color:#787b7d;
|
|
230
|
+
}
|