jufubao-base 1.0.138-beta2 → 1.0.139
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
|
@@ -41,7 +41,7 @@ export default {
|
|
|
41
41
|
type: "number",
|
|
42
42
|
valueKey: "login_text_size",
|
|
43
43
|
groupKey: 'style',
|
|
44
|
-
value: data.login_text_size ||
|
|
44
|
+
value: data.login_text_size || '',
|
|
45
45
|
placeholder: "请输入登录文字大小",
|
|
46
46
|
className: "input80",
|
|
47
47
|
inline: false,
|
|
@@ -96,7 +96,7 @@ export default {
|
|
|
96
96
|
type: "number",
|
|
97
97
|
valueKey: "look_text_size",
|
|
98
98
|
groupKey: 'style',
|
|
99
|
-
value: data.look_text_size ||
|
|
99
|
+
value: data.look_text_size || '',
|
|
100
100
|
placeholder: "请输入登录文字大小",
|
|
101
101
|
className: "input80",
|
|
102
102
|
inline: false,
|
|
@@ -367,15 +367,15 @@ export default {
|
|
|
367
367
|
this.allEntryPath = getContainerPropsValue(container,"content.allEntryPath",{value: ""}).value;
|
|
368
368
|
this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
|
|
369
369
|
//样式
|
|
370
|
-
this.login_text_size = getContainerPropsValue(container, 'content.login_text_size',
|
|
371
|
-
this.login_text_color = getContainerPropsValue(container, 'content.login_text_color', '');
|
|
372
|
-
this.login_text_bg_color = getContainerPropsValue(container, 'content.login_text_bg_color', '');
|
|
373
|
-
this.login_text_radius = getContainerPropsValue(container, 'content.login_text_radius', '');
|
|
370
|
+
this.login_text_size = getContainerPropsValue(container, 'content.login_text_size', 28);
|
|
371
|
+
this.login_text_color = getContainerPropsValue(container, 'content.login_text_color', '#fff');
|
|
372
|
+
this.login_text_bg_color = getContainerPropsValue(container, 'content.login_text_bg_color', '#f90');
|
|
373
|
+
this.login_text_radius = getContainerPropsValue(container, 'content.login_text_radius', '20');
|
|
374
374
|
|
|
375
375
|
this.look_text_size = getContainerPropsValue(container, 'content.look_text_size', 24);
|
|
376
|
-
this.look_text_color = getContainerPropsValue(container, 'content.look_text_color', '');
|
|
377
|
-
this.look_text_bg_color = getContainerPropsValue(container, 'content.look_text_bg_color', '');
|
|
378
|
-
this.look_text_radius = getContainerPropsValue(container, 'content.look_text_radius', '');
|
|
376
|
+
this.look_text_color = getContainerPropsValue(container, 'content.look_text_color', '#fff');
|
|
377
|
+
this.look_text_bg_color = getContainerPropsValue(container, 'content.look_text_bg_color', '#f90');
|
|
378
|
+
this.look_text_radius = getContainerPropsValue(container, 'content.look_text_radius', '20');
|
|
379
379
|
},
|
|
380
380
|
|
|
381
381
|
handleToLink(path) {
|