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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.140-beta1",
3
+ "version": "1.0.140-beta3",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -37,7 +37,7 @@ export default {
37
37
  label: "登录字体颜色配置",
38
38
  ele: 'xd-color',
39
39
  valueKey: "login_text_color",
40
- groupKey: 'style',
40
+ groupKey: 'content',
41
41
  value: data.login_text_color || '',
42
42
  className: "input80",
43
43
  inline: false,
@@ -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', 26);
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');