jufubao-base 1.0.162-beta5 → 1.0.162-beta6
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/package.json
CHANGED
|
@@ -268,6 +268,8 @@ export default {
|
|
|
268
268
|
jfbAuthorize: (state) => state.jfbAuthorize,
|
|
269
269
|
}),
|
|
270
270
|
|
|
271
|
+
|
|
272
|
+
|
|
271
273
|
//布局2特殊样式,布局1在行内样式
|
|
272
274
|
loginStyle(){
|
|
273
275
|
let style = { backgroundColor: '#FFFFFF'};
|
|
@@ -275,6 +277,7 @@ export default {
|
|
|
275
277
|
if(this.login_text_color) style['color'] = this.login_text_color;
|
|
276
278
|
if(this.login_text_bg_color) style['backgroundColor'] = this.login_text_bg_color;
|
|
277
279
|
if(this.login_text_radius) style['borderRadius'] = this.login_text_radius + 'rpx'
|
|
280
|
+
if(this.cardLayout === '2') return style;
|
|
278
281
|
return this.styleObjectToString(style);
|
|
279
282
|
},
|
|
280
283
|
|
|
@@ -284,6 +287,7 @@ export default {
|
|
|
284
287
|
if(this.look_text_color) style['color'] = this.look_text_color;
|
|
285
288
|
if(this.look_text_bg_color) style['backgroundColor'] = this.look_text_bg_color;
|
|
286
289
|
if(this.look_text_radius) style['borderRadius'] = this.look_text_radius + 'rpx';
|
|
290
|
+
if(this.cardLayout === '2') return style;
|
|
287
291
|
return this.styleObjectToString(style);
|
|
288
292
|
}
|
|
289
293
|
},
|