jufubao-base 1.0.232-beta3 → 1.0.232-beta5
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 +1 -1
- package/src/components/JfbBaseBalance/Api.js +58 -0
- package/src/components/JfbBaseBalance/Attr.js +48 -0
- package/src/components/JfbBaseBalance/JfbBaseBalance.vue +111 -0
- package/src/components/JfbBaseBalance/JfbBaseBalanceLess.less +79 -0
- package/src/components/JfbBaseBalance/JfbBaseBalanceMixin.js +30 -0
- package/src/components/JfbBaseBalance/Mock.js +13 -0
- package/src/components/JfbBaseCardDelay/JfbBaseCardDelay.vue +30 -29
- package/src/components/JfbBaseCodeOpenVip/Attr.js +229 -27
- package/src/components/JfbBaseCodeOpenVip/JfbBaseCodeOpenVip.vue +111 -9
- package/src/components/JfbBaseConsumpCode/Attr.js +22 -22
- package/src/components/JfbBaseConsumpCode/JfbBaseConsumpCode.vue +580 -34
- package/src/components/JfbBaseLogin/JfbBaseLogin.vue +16 -7
- package/src/components/JfbBaseOpenVip/Attr.js +229 -27
- package/src/components/JfbBaseOpenVip/JfbBaseOpenVip.vue +259 -7
- package/src/components/JfbBaseOpenVip/XdVipList.vue +81 -0
- package/src/components/JfbBaseOpenVipDetail/JfbBaseOpenVipDetail.vue +33 -4
- package/src/components/JfbBasePersonalData/JfbBasePersonalData.vue +98 -33
- package/src/components/JfbBasePointsCard/Attr.js +199 -24
- package/src/components/JfbBasePointsCard/JfbBasePointsCard.vue +209 -29
- package/src/components/JfbBasePointsDetail/Api.js +8 -43
- package/src/components/JfbBasePointsDetail/Attr.js +282 -26
- package/src/components/JfbBasePointsDetail/JfbBasePointsDetail.vue +139 -29
- package/src/components/JfbBaseRechargeOrder/Api.js +3 -13
- package/src/components/JfbBaseRechargeOrder/JfbBaseRechargeOrder.vue +16 -34
- package/src/components/JfbBaseShare/JfbBaseShare.vue +108 -2
- package/src/components/JfbBaseTfkSearch/Attr.js +8 -82
- package/src/components/JfbBaseUserInfo/Attr.js +102 -10
- package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +301 -114
- package/src/components/JfbBaseWithDrawAgain/Api.js +58 -0
- package/src/components/JfbBaseWithDrawAgain/Attr.js +48 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgain.vue +111 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgainLess.less +79 -0
- package/src/components/JfbBaseWithDrawAgain/JfbBaseWithDrawAgainMixin.js +30 -0
- package/src/components/JfbBaseWithDrawAgain/Mock.js +13 -0
- package/src/components/JfbBaseWithDrawRecord/Api.js +58 -0
- package/src/components/JfbBaseWithDrawRecord/Attr.js +48 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecord.vue +111 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecordLess.less +79 -0
- package/src/components/JfbBaseWithDrawRecord/JfbBaseWithDrawRecordMixin.js +30 -0
- package/src/components/JfbBaseWithDrawRecord/Mock.js +13 -0
|
@@ -20,6 +20,34 @@ export default {
|
|
|
20
20
|
|
|
21
21
|
return [
|
|
22
22
|
{
|
|
23
|
+
label: '是否plus站点:',
|
|
24
|
+
ele: 'xd-radio',
|
|
25
|
+
valueKey: 'is_plus_site',
|
|
26
|
+
value: data['is_plus_site'] || 'N',
|
|
27
|
+
groupKey:'content',
|
|
28
|
+
placeholder: '请选择是否plus',
|
|
29
|
+
multiple: false,
|
|
30
|
+
className: 'input80',
|
|
31
|
+
list: [
|
|
32
|
+
{label: '否', value: 'N'},
|
|
33
|
+
{label: '是', value: 'Y'},
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
data['is_plus_site']==='Y'&&{
|
|
37
|
+
label: '预览plus样式:',
|
|
38
|
+
ele: 'xd-radio',
|
|
39
|
+
valueKey: 'is_plus_preview',
|
|
40
|
+
value: data['is_plus_preview'] || 'Y',
|
|
41
|
+
groupKey:'content',
|
|
42
|
+
placeholder: '请选择预览plus样式',
|
|
43
|
+
multiple: false,
|
|
44
|
+
className: 'input80',
|
|
45
|
+
list: [
|
|
46
|
+
{label: 'plus用户样式', value: 'Y'},
|
|
47
|
+
{label: '普通用户样式', value: 'N'},
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
data['is_plus']==='N'&&{
|
|
23
51
|
label: '内容排版:',
|
|
24
52
|
ele: 'xd-radio',
|
|
25
53
|
valueKey: 'text_type',
|
|
@@ -33,7 +61,7 @@ export default {
|
|
|
33
61
|
{label: '垂直', value: 'Y'},
|
|
34
62
|
]
|
|
35
63
|
},
|
|
36
|
-
{
|
|
64
|
+
data['is_plus']==='N'&&{
|
|
37
65
|
label: "头像右侧内容:",
|
|
38
66
|
ele: "xd-radio-self",
|
|
39
67
|
valueKey: "rightContent",
|
|
@@ -91,7 +119,7 @@ export default {
|
|
|
91
119
|
inline: false,
|
|
92
120
|
notice: '设置填充,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
|
|
93
121
|
},
|
|
94
|
-
{
|
|
122
|
+
data['is_plus_site']==='N'&&{
|
|
95
123
|
label: '背景颜色:',
|
|
96
124
|
ele: 'xd-color',
|
|
97
125
|
valueKey: 'backgroundColor',
|
|
@@ -101,7 +129,47 @@ export default {
|
|
|
101
129
|
placeholder: '请选择背景颜色',
|
|
102
130
|
classNmae: 'input80',
|
|
103
131
|
},
|
|
104
|
-
{
|
|
132
|
+
data['is_plus_site']==='Y'&&{
|
|
133
|
+
label: 'plus用户上半部分背景颜色:',
|
|
134
|
+
ele: 'el-input',
|
|
135
|
+
valueKey: 'plusTopBackgroundColor',
|
|
136
|
+
groupKey:'style',
|
|
137
|
+
value: data.plusTopBackgroundColor || '',
|
|
138
|
+
labelInline:true,
|
|
139
|
+
placeholder: '请输入背景颜色',
|
|
140
|
+
classNmae: 'input80',
|
|
141
|
+
},
|
|
142
|
+
data['is_plus_site']==='Y'&&{
|
|
143
|
+
label: 'plus用户下半部分背景颜色:',
|
|
144
|
+
ele: 'el-input',
|
|
145
|
+
valueKey: 'plusBottomBackgroundColor',
|
|
146
|
+
groupKey:'style',
|
|
147
|
+
value: data.plusBottomBackgroundColor || '',
|
|
148
|
+
labelInline:true,
|
|
149
|
+
placeholder: '请输入背景颜色',
|
|
150
|
+
classNmae: 'input80',
|
|
151
|
+
},
|
|
152
|
+
data['is_plus_site']==='Y'&&{
|
|
153
|
+
label: '普通用户上半部分背景颜色:',
|
|
154
|
+
ele: 'el-input',
|
|
155
|
+
valueKey: 'normalTopBackgroundColor',
|
|
156
|
+
groupKey:'style',
|
|
157
|
+
value: data.normalTopBackgroundColor || '',
|
|
158
|
+
labelInline:true,
|
|
159
|
+
placeholder: '请输入背景颜色',
|
|
160
|
+
classNmae: 'input80',
|
|
161
|
+
},
|
|
162
|
+
data['is_plus_site']==='Y'&&{
|
|
163
|
+
label: '普通用户下半部分背景颜色:',
|
|
164
|
+
ele: 'el-input',
|
|
165
|
+
valueKey: 'normalBottomBackgroundColor',
|
|
166
|
+
groupKey:'style',
|
|
167
|
+
value: data.normalBottomBackgroundColor || '',
|
|
168
|
+
labelInline:true,
|
|
169
|
+
placeholder: '请输入背景颜色',
|
|
170
|
+
classNmae: 'input80',
|
|
171
|
+
},
|
|
172
|
+
data['is_plus_site']==='N'&&{
|
|
105
173
|
label: '内容背景图片:', //label
|
|
106
174
|
ele: 'xd-upload', //package 名称
|
|
107
175
|
valueKey: 'bgImage', //form[valueKey]
|
|
@@ -125,7 +193,7 @@ export default {
|
|
|
125
193
|
label: '圆角设置:',
|
|
126
194
|
ele: 'xd-site-select-list',
|
|
127
195
|
valueKey: 'radius',
|
|
128
|
-
value: data['radius'] || '
|
|
196
|
+
value: data['radius'] || '20',
|
|
129
197
|
labelInline:true,
|
|
130
198
|
groupKey:'style',
|
|
131
199
|
placeholder: '请选择圆角设置',
|
|
@@ -363,13 +431,13 @@ export default {
|
|
|
363
431
|
{label: '显示', value: 'Y'},
|
|
364
432
|
]
|
|
365
433
|
},
|
|
366
|
-
{
|
|
434
|
+
data['is_plus_site']==='N'&&{
|
|
367
435
|
label: "头像右侧内容配置",
|
|
368
436
|
ele: "title",
|
|
369
437
|
size: "small",
|
|
370
438
|
groupKey: "style"
|
|
371
439
|
},
|
|
372
|
-
{
|
|
440
|
+
data['is_plus_site']==='N'&&{
|
|
373
441
|
label: "头像右侧内容背景颜色:",
|
|
374
442
|
ele: "xd-color",
|
|
375
443
|
valueKey: "rightContentBgColor",
|
|
@@ -377,7 +445,7 @@ export default {
|
|
|
377
445
|
placeholder: '请选择头像右侧内容背景颜色',
|
|
378
446
|
groupKey: "style",
|
|
379
447
|
},
|
|
380
|
-
{
|
|
448
|
+
data['is_plus_site']==='N'&&{
|
|
381
449
|
label: "头像右侧内容文字颜色",
|
|
382
450
|
ele: "xd-text-and-bgc",
|
|
383
451
|
groupKey:'style',
|
|
@@ -409,7 +477,7 @@ export default {
|
|
|
409
477
|
// placeholder: '请选择头像右侧内容文字颜色',
|
|
410
478
|
// groupKey: "style",
|
|
411
479
|
// },
|
|
412
|
-
{
|
|
480
|
+
data['is_plus_site']==='N'&&{
|
|
413
481
|
label: "头像右侧内容内边距配置:",
|
|
414
482
|
ele: 'xd-margin-padding',
|
|
415
483
|
valueKey: 'rightContentPadding',
|
|
@@ -421,7 +489,7 @@ export default {
|
|
|
421
489
|
inline: false,
|
|
422
490
|
notice: '设置外填充,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
|
|
423
491
|
},
|
|
424
|
-
{
|
|
492
|
+
data['is_plus_site']==='N'&&{
|
|
425
493
|
label: "头像右侧内容圆角:",
|
|
426
494
|
ele: 'xd-site-select-list',
|
|
427
495
|
valueKey: 'rightContentRadius',
|
|
@@ -440,7 +508,7 @@ export default {
|
|
|
440
508
|
});
|
|
441
509
|
},
|
|
442
510
|
},
|
|
443
|
-
{
|
|
511
|
+
data['is_plus_site']==='N'&&{
|
|
444
512
|
label: '编辑地址路径:',
|
|
445
513
|
ele: 'xd-select-pages-path',
|
|
446
514
|
valueKey: 'addressUrl',
|
|
@@ -452,6 +520,30 @@ export default {
|
|
|
452
520
|
},
|
|
453
521
|
inline: false,
|
|
454
522
|
},
|
|
523
|
+
data['is_plus_site']==='Y'&&{
|
|
524
|
+
label: '开通vip路径:',
|
|
525
|
+
ele: 'xd-select-pages-path',
|
|
526
|
+
valueKey: 'openVipPath',
|
|
527
|
+
groupKey:'advanced',
|
|
528
|
+
placeholder: '请选择编辑地址路径',
|
|
529
|
+
value: data['openVipPath'] || null,
|
|
530
|
+
setting: {
|
|
531
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
532
|
+
},
|
|
533
|
+
inline: false,
|
|
534
|
+
},
|
|
535
|
+
data['is_plus_site']==='Y'&&{
|
|
536
|
+
label: '立即查看路径:',
|
|
537
|
+
ele: 'xd-select-pages-path',
|
|
538
|
+
valueKey: 'viewPath',
|
|
539
|
+
groupKey:'advanced',
|
|
540
|
+
placeholder: '请选择编辑地址路径',
|
|
541
|
+
value: data['viewPath'] || null,
|
|
542
|
+
setting: {
|
|
543
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
544
|
+
},
|
|
545
|
+
inline: false,
|
|
546
|
+
},
|
|
455
547
|
{
|
|
456
548
|
label: '',
|
|
457
549
|
ele: 'slot',
|