jufubao-base 1.0.155-beta1 → 1.0.155
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/JfbBaseCard/Attr.js +0 -11
- package/src/components/JfbBaseCard/JfbBaseCard.vue +1 -3
- package/src/components/JfbBaseCardEntry/Attr.js +0 -11
- package/src/components/JfbBaseCardEntry/JfbBaseCardEntry.vue +1 -3
- package/src/components/JfbBaseLogin/JfbBaseLogin.vue +1 -1
package/package.json
CHANGED
|
@@ -434,17 +434,6 @@ export default {
|
|
|
434
434
|
}
|
|
435
435
|
},
|
|
436
436
|
},
|
|
437
|
-
{
|
|
438
|
-
label: "是否展示绑定卡区域",
|
|
439
|
-
ele: "xd-radio",
|
|
440
|
-
valueKey: "bindCard",
|
|
441
|
-
groupKey:'content',
|
|
442
|
-
value: data.bindCard || "1",
|
|
443
|
-
list: [
|
|
444
|
-
{label: "是", value: "1"},
|
|
445
|
-
{label: "否", value: "2"},
|
|
446
|
-
]
|
|
447
|
-
},
|
|
448
437
|
].filter(i => i)
|
|
449
438
|
},
|
|
450
439
|
};
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</view>
|
|
18
18
|
<!-- #endif -->
|
|
19
19
|
<view class="jfb-base-card__body">
|
|
20
|
-
<view
|
|
20
|
+
<view class="jfb-base-card__body-cut">
|
|
21
21
|
<template v-if="isQrCode">
|
|
22
22
|
<view
|
|
23
23
|
class="jfb-base-card__body-cut-item"
|
|
@@ -321,7 +321,6 @@ export default {
|
|
|
321
321
|
allEntryPath: "", //综合福利入口页
|
|
322
322
|
disabledUrl: "",
|
|
323
323
|
cardLayout: "1", //票券布局
|
|
324
|
-
bindCard: '1',
|
|
325
324
|
|
|
326
325
|
//样式
|
|
327
326
|
login_text_size: "",
|
|
@@ -368,7 +367,6 @@ export default {
|
|
|
368
367
|
init(container){
|
|
369
368
|
//设置
|
|
370
369
|
this.cardLayout = getContainerPropsValue(container,"content.cardLayout","1");
|
|
371
|
-
this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
|
|
372
370
|
this.changeUrl = getContainerPropsValue(container,"content.change_url",{value: ""}).value;
|
|
373
371
|
this.disabledUrl = getContainerPropsValue(container,"content.disabled_url",{value: ""}).value;
|
|
374
372
|
this.bindUrl = getContainerPropsValue(container,"content.bind_url",{value: ""}).value;
|
|
@@ -241,17 +241,6 @@ export default {
|
|
|
241
241
|
{label: "否", value: "N"},
|
|
242
242
|
]
|
|
243
243
|
},
|
|
244
|
-
{
|
|
245
|
-
label: "是否展示绑定卡区域",
|
|
246
|
-
ele: "xd-radio",
|
|
247
|
-
valueKey: "bindCard",
|
|
248
|
-
groupKey:'content',
|
|
249
|
-
value: "1",
|
|
250
|
-
list: [
|
|
251
|
-
{label: "是", value: "1"},
|
|
252
|
-
{label: "否", value: "2"},
|
|
253
|
-
]
|
|
254
|
-
},
|
|
255
244
|
{
|
|
256
245
|
label: '失效卡列表地址:',
|
|
257
246
|
ele: 'xd-select-pages-path',
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</view>
|
|
18
18
|
<!-- #endif -->
|
|
19
19
|
<view class="jfb-base-card-entry__body">
|
|
20
|
-
<view
|
|
20
|
+
<view class="jfb-base-card-entry__body-cut">
|
|
21
21
|
<template v-if="isQrCode">
|
|
22
22
|
<view
|
|
23
23
|
class="jfb-base-card-entry__body-cut-item"
|
|
@@ -439,7 +439,6 @@ export default {
|
|
|
439
439
|
isBack: null, //是否使用返回键
|
|
440
440
|
inCallback: null, //内部跳转地址
|
|
441
441
|
isShowCode: 'Y',
|
|
442
|
-
bindCard: '1',
|
|
443
442
|
|
|
444
443
|
|
|
445
444
|
//页面跳转地址
|
|
@@ -495,7 +494,6 @@ export default {
|
|
|
495
494
|
this.confirmUrl = getContainerPropsValue(container,"content.confirm_url",{value: ""}).value;
|
|
496
495
|
this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
|
|
497
496
|
this.isShowCode = getContainerPropsValue(container, "content.isShowCode", "Y");
|
|
498
|
-
this.bindCard = getContainerPropsValue(container,"content.bindCard","1");
|
|
499
497
|
},
|
|
500
498
|
|
|
501
499
|
handleToLink(path) {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<view class="jfb-base-login__body">
|
|
20
20
|
<view v-if="showStep === 1" class="panel-login-auth">
|
|
21
21
|
<view class="logo-wrap">
|
|
22
|
-
<image mode="aspectFit" :src="logo" @click="openDebugger" />
|
|
22
|
+
<image mode="aspectFit" :src="logo" @click="openDebugger()" />
|
|
23
23
|
<view :style="{ color: logoTextColor, }" >{{ partnerName }}</view>
|
|
24
24
|
</view>
|
|
25
25
|
<view class="login_types">
|