jufubao-base 1.0.302 → 1.0.303

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.302",
3
+ "version": "1.0.303",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -175,6 +175,8 @@ export default {
175
175
  callback_url: "",
176
176
  is_show_skip: "Y",
177
177
  isCollectUsername: false,
178
+ phonePlaceholder:'', //
179
+ codePlaceholder:'', //
178
180
 
179
181
  inputStyle: "linear", //输入框样式 linear:线性 face: 面性
180
182
  formBorderColor: "#F9F9F9", //
@@ -350,10 +352,27 @@ export default {
350
352
  this.phoneIcon = getContainerPropsValue(value, "content.phoneIcon", '');
351
353
  this.codeIcon = getContainerPropsValue(value, "content.codeIcon", '');
352
354
  this.passwordIcon = getContainerPropsValue(value, "content.passwordIcon", '');
353
- this.labelFont = getContainerPropsValue(value, "content.labelFont", {});
354
- this.placeholderFont = getContainerPropsValue(value, "content.placeholderFont", {});
355
- this.contentFont = getContainerPropsValue(value, "content.contentFont", {});
356
- this.getCodeFont = getContainerPropsValue(value, "content.getCodeFont", {});
355
+ this.labelFont = getContainerPropsValue(value, "content.labelFont", {
356
+ color: "#333",
357
+ fontSize: "24rpx",
358
+ fontWeight: "normal",
359
+ });
360
+ this.placeholderFont = getContainerPropsValue(value, "content.placeholderFont", {
361
+ color: "#d4d4d4",
362
+ fontSize: "24rpx",
363
+ fontWeight: "normal",
364
+ });
365
+ this.contentFont = getContainerPropsValue(value, "content.contentFont", {
366
+ color: "#333",
367
+ fontSize: "24rpx",
368
+ fontWeight: "normal",
369
+ });
370
+ this.getCodeFont = getContainerPropsValue(value, "content.getCodeFont", {
371
+ color: "#ff5a39",
372
+ fontSize: "24rpx",
373
+ fontWeight: "normal",
374
+ });
375
+
357
376
  this.getCodeShowType = getContainerPropsValue(value, "content.getCodeShowType", 'text');
358
377
  this.btnMargin = getContainerPropsValue(value, "content.btnMargin", {});
359
378
  this.btnRadius = getContainerPropsValue(value, "content.btnRadius", '20');
@@ -65,10 +65,7 @@
65
65
  label="手机号"
66
66
  content-align="left"
67
67
  >
68
- <xd-form-input
69
- v-model="accountForm.phone_number"
70
- :placeholder="phonePlaceholder"
71
- />
68
+ <xd-form-input v-model="accountForm.phone_number" :placeholder="phonePlaceholder"/>
72
69
  </xd-form-item>
73
70
  <xd-form-item
74
71
  class="form-item"
@@ -199,6 +196,8 @@ export default {
199
196
  isCollectUsername: false,
200
197
  showDialog: false,
201
198
  share_code: "",
199
+ phonePlaceholder:'', //
200
+ codePlaceholder:'', //
202
201
 
203
202
  inputStyle: "linear", //输入框样式 linear:线性 face: 面性
204
203
  formBorderColor: "#F9F9F9", //
@@ -432,22 +431,27 @@ export default {
432
431
  "content.passwordIcon",
433
432
  ""
434
433
  );
435
- this.labelFont = getContainerPropsValue(value, "content.labelFont", {});
436
- this.placeholderFont = getContainerPropsValue(
437
- value,
438
- "content.placeholderFont",
439
- {}
440
- );
441
- this.contentFont = getContainerPropsValue(
442
- value,
443
- "content.contentFont",
444
- {}
445
- );
446
- this.getCodeFont = getContainerPropsValue(
447
- value,
448
- "content.getCodeFont",
449
- {}
450
- );
434
+ this.labelFont = getContainerPropsValue(value, "content.labelFont", {
435
+ color: "#333",
436
+ fontSize: "24rpx",
437
+ fontWeight: "normal",
438
+ });
439
+ this.placeholderFont = getContainerPropsValue( value, "content.placeholderFont", {
440
+ color: "#d4d4d4",
441
+ fontSize: "24rpx",
442
+ fontWeight: "normal",
443
+ });
444
+ this.contentFont = getContainerPropsValue(value, "content.contentFont", {
445
+ //表单内容字体
446
+ color: "#333",
447
+ fontSize: "24rpx",
448
+ fontWeight: "normal",
449
+ });
450
+ this.getCodeFont = getContainerPropsValue(value, "content.getCodeFont", {
451
+ color: "#ff5a39",
452
+ fontSize: "24rpx",
453
+ fontWeight: "normal",
454
+ });
451
455
  this.getCodeShowType = getContainerPropsValue(
452
456
  value,
453
457
  "content.getCodeShowType",