jufubao-base 1.0.263-beta2 → 1.0.264

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.263-beta2",
3
+ "version": "1.0.264",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -683,6 +683,7 @@ export default {
683
683
  .btn_foot{
684
684
  width: 100%;
685
685
  display: flex;
686
+ justify-content: space-around;
686
687
  .btn_item{
687
688
  flex: 1;
688
689
  height: 96rpx;
@@ -273,9 +273,15 @@
273
273
  }
274
274
  let titleStyle = getContainerPropsValue(container,'content.titleStyle', {});
275
275
  if(!titleStyle.color) titleStyle.color = textColor || '#333';
276
- if(!titleStyle.lineHeight) titleStyle.lineHeight = '36rpx';
276
+ if(!titleStyle.lineHeight ||
277
+ titleStyle.lineHeight === 'rpx' ||
278
+ titleStyle.lineHeight === 'NaNrpx'
279
+ ) titleStyle.lineHeight = '36rpx';
277
280
  if(!titleStyle.fontWeight) titleStyle.fontWeight = 'normal';
278
- if(!titleStyle.fontSize) titleStyle.fontSize = '24rpx';
281
+ if(!titleStyle.fontSize ||
282
+ titleStyle.fontSize === 'rpx' ||
283
+ titleStyle.fontSize === 'NaNrpx'
284
+ ) titleStyle.fontSize = '24rpx';
279
285
  if(!titleStyle.textDecoration) titleStyle.textDecoration = 'none';
280
286
  this.titleStyle = titleStyle;
281
287