jufubao-base 1.0.159-beta12 → 1.0.159-beta14
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
|
@@ -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`;
|
|
@@ -118,7 +118,7 @@ export default {
|
|
|
118
118
|
//当一个插件中出现多个内容分类时候需要设置code值,在页面引用时候(容器id + code)进行拼接获取数据列表
|
|
119
119
|
data.params = Object.assign({}, data.params, {code: 'big'});
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
|
|
122
122
|
//设置场景参数
|
|
123
123
|
if(data) {
|
|
124
124
|
data.params = Object.assign({}, {scene: 'normal'}, data.params || {})
|