jufubao-base 1.0.159-beta12 → 1.0.159-beta13

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.159-beta12",
3
+ "version": "1.0.159-beta13",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -72,17 +72,17 @@
72
72
  computed: {
73
73
  ...mapState(['brandInfo']),
74
74
  bodyStyle(){
75
- return {
75
+ return this.styleObjectToString({
76
76
  backgroundColor: this.bgcolor,
77
77
  minHeight: this.layoutInfo.bodyMinHeight,
78
- }
78
+ })
79
79
  },
80
80
  entryStyle(){
81
- return {
81
+ return this.styleObjectToString({
82
82
  gridTemplateColumns: `repeat(${this.rowNum}, 1fr)`,
83
83
  gap: this.paddingInput + 'rpx',
84
84
  padding: this.paddingInput + 'rpx'
85
- }
85
+ })
86
86
  },
87
87
  marginUi(){
88
88
  let str = `${this.checkValue(this.margin.top, 0)}rpx`;
@@ -134,10 +134,10 @@
134
134
  },
135
135
 
136
136
  subNameSize(){
137
- return {
137
+ return this.styleObjectToString({
138
138
  fontSize: this.fontSubSize + 'rpx',
139
139
  color: this.subColor
140
- }
140
+ })
141
141
  }
142
142
  },
143
143