jufubao-base 1.0.56-beta2005 → 1.0.56-beta2007
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/JfbBaseCardDetail/JfbBaseCardDetail.vue +1 -0
- package/src/components/JfbBaseCardDetailEntry/Api.js +16 -29
- package/src/components/JfbBaseCardDetailEntry/Attr.js +15 -91
- package/src/components/JfbBaseCardDetailEntry/JfbBaseCardDetailEntry.vue +677 -71
- package/src/components/JfbBaseCardDetailEntry/Mock.js +102 -1
- package/src/components/JfbBaseCardDetailEntry/XdEditPwd.vue +299 -0
- package/src/components/JfbBaseCardDetailEntry/XdPwPay.vue +214 -0
- package/src/components/JfbBaseCardInfoEntry/Api.js +37 -26
- package/src/components/JfbBaseCardInfoEntry/Attr.js +20 -89
- package/src/components/JfbBaseCardInfoEntry/JfbBaseCardInfoEntry.vue +602 -78
- package/src/components/JfbBaseCardInfoEntry/Mock.js +118 -1
- package/src/components/JfbBaseCardMergeEntry/JfbBaseCardMergeEntry.vue +123 -122
- package/src/components/JfbBaseCardMergeEntry/Mock.js +28 -1
- package/src/components/JfbBaseCardShiftEntry/Api.js +8 -2
- package/src/components/JfbBaseCardShiftEntry/JfbBaseCardShiftEntry.vue +257 -80
- package/src/components/JfbBaseCardShiftEntry/Mock.js +5 -0
package/package.json
CHANGED
|
@@ -12,49 +12,36 @@
|
|
|
12
12
|
*/
|
|
13
13
|
module.exports = [
|
|
14
14
|
{
|
|
15
|
-
mapFnName: '
|
|
16
|
-
title: '获取电影广场列表',
|
|
17
|
-
path: '/api/account/film/list-film-square',
|
|
15
|
+
mapFnName: 'deleteCardUnbindEntry',
|
|
18
16
|
isRule: false,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
disabled: true,
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
mapFnName: 'updateFilmPaiqiDate', //自定义方法名字(必选)
|
|
28
|
-
title: '更新排期',
|
|
29
|
-
path: '/api/account/film/paiqi-date',
|
|
30
|
-
isRule: false,
|
|
31
|
-
params: {
|
|
32
|
-
film_id: ['电影id', 'Number', '必选'],
|
|
33
|
-
cinema_id: ['影院id', 'Number', '必选'],
|
|
17
|
+
title: '解绑卡',
|
|
18
|
+
prefix: 'unbind',
|
|
19
|
+
path: '/card/v1/card-bind/unbind-card',
|
|
20
|
+
data: {
|
|
21
|
+
card_number: ['卡号', 'String', '必选'],
|
|
34
22
|
},
|
|
35
|
-
isConsole: true,
|
|
36
23
|
disabled: true,
|
|
37
24
|
},
|
|
38
25
|
{
|
|
39
|
-
mapFnName: '
|
|
40
|
-
title: '删除我的配送地址',
|
|
41
|
-
path: '/api/account/film/paiqi-date',
|
|
26
|
+
mapFnName: 'getBaseByIdCardDetailEntry',
|
|
42
27
|
isRule: false,
|
|
28
|
+
title: '获得绑定的卡详情',
|
|
29
|
+
prefix: 'detal',
|
|
30
|
+
path: '/card/v1/card-bind/get-bind-card',
|
|
43
31
|
params: {
|
|
44
|
-
|
|
32
|
+
card_number: ['卡号', 'String', '必选'],
|
|
45
33
|
},
|
|
46
|
-
isConsole: true,
|
|
47
34
|
disabled: true,
|
|
48
35
|
},
|
|
49
36
|
{
|
|
50
|
-
mapFnName: '
|
|
51
|
-
title: '添加购物车',
|
|
52
|
-
path: '/api/account/film/paiqi-date',
|
|
37
|
+
mapFnName: 'getCardYueEntry',
|
|
53
38
|
isRule: false,
|
|
39
|
+
title: '获得绑定的卡剩余点数',
|
|
40
|
+
prefix: 'yue',
|
|
41
|
+
path: '/card/v1/card-bind/get-bind-card-points',
|
|
54
42
|
params: {
|
|
55
|
-
|
|
43
|
+
card_number: ['卡号', 'String', '必选'],
|
|
56
44
|
},
|
|
57
|
-
isConsole: true,
|
|
58
45
|
disabled: true,
|
|
59
46
|
},
|
|
60
47
|
];
|
|
@@ -1,106 +1,30 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
/**
|
|
4
|
-
* @description 当表单组件中有联动操作时候,使用方法进行返回
|
|
5
|
-
*/
|
|
6
3
|
export default {
|
|
7
4
|
style: [],
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
label: '背景颜色:', //label
|
|
12
|
-
ele: 'xd-color', //package 名称
|
|
13
|
-
valueKey: 'bgcolor', //form[valueKey]
|
|
14
|
-
value: data.bgcolor || '', //v-model
|
|
15
|
-
placeholder: '请输入占位框背景颜色',
|
|
16
|
-
classNmae: 'input80', //样式名称 //input100,input80,input70,input60,input50,input40,input30,input20,
|
|
17
|
-
rules: [
|
|
18
|
-
{
|
|
19
|
-
required: true,
|
|
20
|
-
message: '请输入占位框背景颜色',
|
|
21
|
-
trigger: 'blur'
|
|
22
|
-
},
|
|
23
|
-
]
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
label: '选中路径:', //label
|
|
27
|
-
ele: 'xd-select-pages-path', //package 名称
|
|
28
|
-
valueKey: 'select-pages-path', //form[valueKey]
|
|
29
|
-
value: data['select-pages-path'] || {},
|
|
30
|
-
setting: {
|
|
31
|
-
router: XdBus.getParentApi('getPagesTree')
|
|
32
|
-
},
|
|
33
|
-
inline: false,
|
|
34
|
-
},
|
|
35
|
-
data.bgcolor && {
|
|
36
|
-
label: '高度:', //label
|
|
37
|
-
ele: 'el-input', //package 名称
|
|
38
|
-
type: 'number',
|
|
39
|
-
valueKey: 'height', //form[valueKey]
|
|
40
|
-
value: data.height || 100, //v-model
|
|
41
|
-
placeholder: '请输入占位框高度,单位像素,默认:10px',
|
|
42
|
-
className: 'input80', //样式名称 //input100,input80,input70,input60,input50,input40,input30,input20,
|
|
43
|
-
rules: [
|
|
44
|
-
{
|
|
45
|
-
required: true,
|
|
46
|
-
message: '请输入占位框高度',
|
|
47
|
-
trigger: 'blur'
|
|
48
|
-
},
|
|
49
|
-
]
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
label: '', //label
|
|
53
|
-
ele: 'slot', //package 名称
|
|
54
|
-
slot: 'is_reference',
|
|
55
|
-
},
|
|
56
|
-
].filter(i=>i)
|
|
57
|
-
},
|
|
58
|
-
advanced: [
|
|
5
|
+
advanced: [],
|
|
6
|
+
content: [
|
|
59
7
|
{
|
|
60
|
-
label: '
|
|
61
|
-
ele: 'xd-color', //package 名称
|
|
62
|
-
valueKey: 'bgcolor', //form[valueKey]
|
|
63
|
-
value: '', //v-model
|
|
64
|
-
placeholder: '请输入占位框背景颜色',
|
|
65
|
-
classNmae: 'input80', //样式名称 //input100,input80,input70,input60,input50,input40,input30,input20,
|
|
66
|
-
rules: [
|
|
67
|
-
{
|
|
68
|
-
required: true,
|
|
69
|
-
message: '请输入占位框背景颜色',
|
|
70
|
-
trigger: 'blur'
|
|
71
|
-
},
|
|
72
|
-
]
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
label: '选中路径:', //label
|
|
8
|
+
label: '卡解绑成功回跳地址:', //label
|
|
76
9
|
ele: 'xd-select-pages-path', //package 名称
|
|
77
|
-
valueKey: '
|
|
10
|
+
valueKey: 'back_url', //form[valueKey]
|
|
11
|
+
placeholder: '请选择卡解绑成功回跳地址',
|
|
78
12
|
value: null,
|
|
79
13
|
setting: {
|
|
80
|
-
router: XdBus.getParentApi('getPagesTree')
|
|
14
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
81
15
|
},
|
|
82
16
|
inline: false,
|
|
83
17
|
},
|
|
84
18
|
{
|
|
85
|
-
label: '
|
|
86
|
-
ele: '
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
value: null,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
required: true,
|
|
95
|
-
message: '请输入占位框高度',
|
|
96
|
-
trigger: 'blur'
|
|
97
|
-
},
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
label: '', //label
|
|
102
|
-
ele: 'slot', //package 名称
|
|
103
|
-
slot: 'is_reference',
|
|
19
|
+
label: '券转换地址:', //label
|
|
20
|
+
ele: 'xd-select-pages-path', //package 名称
|
|
21
|
+
valueKey: 'shift_url', //form[valueKey]
|
|
22
|
+
placeholder: '请选择券转换地址',
|
|
23
|
+
value: null,
|
|
24
|
+
setting: {
|
|
25
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
26
|
+
},
|
|
27
|
+
inline: false,
|
|
104
28
|
},
|
|
105
29
|
],
|
|
106
30
|
};
|