jufubao-base 1.0.167 → 1.0.169-beta1
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/JfbBaseLogin/Attr.js +1109 -510
- package/src/components/JfbBaseLogin/JfbBaseLogin.vue +364 -63
- package/src/components/JfbBaseSweep/JfbBaseSweep.vue +2 -2
- package/src/components/JfbBaseTfkCardBind/Attr.js +579 -33
- package/src/components/JfbBaseTfkCardBind/JfbBaseTfkCardBind.vue +453 -18
- package/src/components/JfbBaseTfkCardDetail/Api.js +5 -44
- package/src/components/JfbBaseTfkCardDetail/Attr.js +365 -33
- package/src/components/JfbBaseTfkCardDetail/JfbBaseTfkCardDetail.vue +416 -15
- package/src/components/JfbBaseTfkCardDetail/Mock.js +151 -11
- package/src/components/JfbBaseTfkCardLogin/Api.js +19 -34
- package/src/components/JfbBaseTfkCardLogin/Attr.js +602 -33
- package/src/components/JfbBaseTfkCardLogin/JfbBaseTfkCardLogin.vue +582 -17
- package/src/components/JfbBaseTfkCardLogin/Mock.js +721 -11
|
@@ -6,51 +6,36 @@
|
|
|
6
6
|
*/
|
|
7
7
|
module.exports = [
|
|
8
8
|
{
|
|
9
|
-
|
|
10
|
-
mapFnName: 'getTfkByIdFilmSquate',
|
|
11
|
-
title: '获取电影广场列表',
|
|
12
|
-
path: '/api/account/film/list-film-square',
|
|
9
|
+
mapFnName: 'getTfkListCardBind',
|
|
13
10
|
isRule: false,
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
},
|
|
18
|
-
isConsole: true,
|
|
19
|
-
disabled: true,
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
//设置方法名字当别忘记加上【模块名字】:Tfk
|
|
23
|
-
mapFnName: 'updateTfkFilmPaiqiDate',
|
|
24
|
-
title: '更新排期',
|
|
25
|
-
path: '/api/account/film/paiqi-date',
|
|
26
|
-
isRule: false,
|
|
27
|
-
params: {
|
|
28
|
-
film_id: ['电影id', 'Number', '必选'],
|
|
29
|
-
cinema_id: ['影院id', 'Number', '必选'],
|
|
30
|
-
},
|
|
31
|
-
isConsole: true,
|
|
11
|
+
title: '获得绑定卡列表',
|
|
12
|
+
prefix: 'list',
|
|
13
|
+
path: '/card/v1/card-bind/list-bind-card',
|
|
14
|
+
params: {},
|
|
32
15
|
disabled: true,
|
|
33
16
|
},
|
|
34
17
|
{
|
|
35
|
-
|
|
36
|
-
mapFnName: 'removeTfkFilmAddress',
|
|
37
|
-
title: '删除我的配送地址',
|
|
38
|
-
path: '/api/account/film/paiqi-date',
|
|
18
|
+
mapFnName: 'loginTfkCardBind',
|
|
39
19
|
isRule: false,
|
|
40
|
-
|
|
41
|
-
|
|
20
|
+
title: '登录卡',
|
|
21
|
+
prefix: 'login',
|
|
22
|
+
path: '/card/v1/card-bind/login-card',
|
|
23
|
+
data: {
|
|
24
|
+
card_number: ['卡号', 'String', '必选'],
|
|
42
25
|
},
|
|
43
|
-
isConsole: true,
|
|
44
26
|
disabled: true,
|
|
45
27
|
},
|
|
46
28
|
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
path: '/api/account/film/paiqi-date',
|
|
29
|
+
mapFnName: 'getListBaseNewsContent', //自定义方法名字(必选)
|
|
30
|
+
title: '获取内容',
|
|
31
|
+
path: '/cms/v1/news-content',
|
|
51
32
|
isRule: false,
|
|
52
33
|
params: {
|
|
53
|
-
|
|
34
|
+
scene: ['使用场景', 'String', '选填'],
|
|
35
|
+
container_id: ['插件ID', 'String', '必填'],
|
|
36
|
+
page_id: ['页面ID', 'String', '必填'],
|
|
37
|
+
page_size: ['记录条数', 'Number', '必填', 1],
|
|
38
|
+
code: ['业务线id', 'String', '选填'],
|
|
54
39
|
},
|
|
55
40
|
isConsole: true,
|
|
56
41
|
disabled: true,
|