jufubao-base 1.0.140-beta1 → 1.0.140-beta3
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
|
@@ -254,7 +254,7 @@ export default {
|
|
|
254
254
|
return style;
|
|
255
255
|
},
|
|
256
256
|
lookStyle(){
|
|
257
|
-
let style = { backgroundColor: this.mainColor};
|
|
257
|
+
let style = { backgroundColor: this.cardLayout === '2'? '' : this.mainColor};
|
|
258
258
|
if(this.look_text_size) style['fontSize'] = this.look_text_size + 'rpx';
|
|
259
259
|
if(this.look_text_color) style['color'] = this.look_text_color;
|
|
260
260
|
if(this.look_text_bg_color) style['backgroundColor'] = this.look_text_bg_color;
|
|
@@ -373,7 +373,7 @@ export default {
|
|
|
373
373
|
this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
|
|
374
374
|
|
|
375
375
|
//登录样式
|
|
376
|
-
this.login_text_size = getContainerPropsValue(container, 'content.login_text_size',
|
|
376
|
+
this.login_text_size = getContainerPropsValue(container, 'content.login_text_size', 28);
|
|
377
377
|
this.login_text_color = getContainerPropsValue(container, 'content.login_text_color', this.cardLayout==='2'? '#fff':'#333');
|
|
378
378
|
this.login_text_bg_color = getContainerPropsValue(container, 'content.login_text_bg_color', this.cardLayout === '2'? this.mainColor:'');
|
|
379
379
|
this.login_text_radius = getContainerPropsValue(container, 'content.login_text_radius', '20');
|