dolphin-weex-ui 2.4.3 → 2.4.4
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 +17 -0
- package/dist/index.native.js +10 -6
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +11 -6
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-modal/index.vue +2 -2
- package/packages/dof-swiper/index.vue +6 -2
package/package.json
CHANGED
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
/* height: 48px; */
|
|
166
166
|
height: 72px;
|
|
167
167
|
line-height: 72px;
|
|
168
|
-
background-color: #
|
|
168
|
+
background-color: #F6F7F9;
|
|
169
169
|
placeholder-color: #8c8c8c;
|
|
170
170
|
/* border: 2px solid #9F9F9F; 无效 */
|
|
171
171
|
/* border-color: #9f9f9f;
|
|
@@ -365,7 +365,7 @@ export default {
|
|
|
365
365
|
_modalStyle() {
|
|
366
366
|
return {
|
|
367
367
|
borderRadius: this._isColmo ? '0px' : '26px',
|
|
368
|
-
backgroundColor: this._isColmo ? '#1c1e21' : this._isDiablo ? '#1e2326' : '#
|
|
368
|
+
backgroundColor: this._isColmo ? '#1c1e21' : this._isDiablo ? '#1e2326' : '#ffffff',
|
|
369
369
|
...this.modalStyle
|
|
370
370
|
}
|
|
371
371
|
},
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div v-for="(item, index) in slItems" :key="index" @click="imgClicked(item, index)">
|
|
12
12
|
<image
|
|
13
13
|
:resize="imgResize"
|
|
14
|
-
:style="{ width: imgWidth, height: imgHeight }"
|
|
14
|
+
:style="{ width: imgWidth, height: imgHeight, backgroundColor: imageBgColor }"
|
|
15
15
|
:src="item.url"
|
|
16
16
|
:placeholder="phImgUrl"
|
|
17
17
|
class="image"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
.image {
|
|
50
50
|
border-radius: 16px;
|
|
51
|
-
background-color: #f2f2f2;
|
|
51
|
+
/* background-color: #f2f2f2; */
|
|
52
52
|
}
|
|
53
53
|
.div_out {
|
|
54
54
|
border-radius: 16px;
|
|
@@ -117,6 +117,10 @@ export default {
|
|
|
117
117
|
phImgUrl: {
|
|
118
118
|
type: String,
|
|
119
119
|
default: PLACEHOLDERIMAGE
|
|
120
|
+
},
|
|
121
|
+
imageBgColor: {
|
|
122
|
+
type: String,
|
|
123
|
+
default: '#f2f2f2'
|
|
120
124
|
}
|
|
121
125
|
},
|
|
122
126
|
data: function() {
|