jufubao-base 1.0.56-beta9 → 1.0.61-beta1001

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.
Files changed (41) hide show
  1. package/package.json +2 -2
  2. package/src/components/JfbBaseCard/JfbBaseCard.vue +6 -3
  3. package/src/components/JfbBaseCardDetail/JfbBaseCardDetail.vue +19 -1
  4. package/src/components/JfbBaseCardDetailEntry/Api.js +58 -0
  5. package/src/components/JfbBaseCardDetailEntry/Attr.js +30 -0
  6. package/src/components/JfbBaseCardDetailEntry/JfbBaseCardDetailEntry.vue +812 -0
  7. package/src/components/JfbBaseCardDetailEntry/JfbBaseCardDetailEntryLess.less +80 -0
  8. package/src/components/JfbBaseCardDetailEntry/JfbBaseCardDetailEntryMixin.js +30 -0
  9. package/src/components/JfbBaseCardDetailEntry/Mock.js +106 -0
  10. package/src/components/JfbBaseCardDetailEntry/XdEditPwd.vue +299 -0
  11. package/src/components/JfbBaseCardDetailEntry/XdPwPay.vue +214 -0
  12. package/src/components/JfbBaseCardDisabledEntry/Api.js +39 -0
  13. package/src/components/JfbBaseCardDisabledEntry/Attr.js +14 -0
  14. package/src/components/JfbBaseCardDisabledEntry/JfbBaseCardDisabledEntry.vue +582 -0
  15. package/src/components/JfbBaseCardDisabledEntry/JfbBaseCardDisabledEntryLess.less +80 -0
  16. package/src/components/JfbBaseCardDisabledEntry/JfbBaseCardDisabledEntryMixin.js +30 -0
  17. package/src/components/JfbBaseCardDisabledEntry/Mock.js +226 -0
  18. package/src/components/JfbBaseCardEntry/Attr.js +11 -11
  19. package/src/components/JfbBaseCardEntry/JfbBaseCardEntry.vue +90 -107
  20. package/src/components/JfbBaseCardInfoEntry/Api.js +71 -0
  21. package/src/components/JfbBaseCardInfoEntry/Attr.js +37 -0
  22. package/src/components/JfbBaseCardInfoEntry/JfbBaseCardInfoEntry.vue +661 -0
  23. package/src/components/JfbBaseCardInfoEntry/JfbBaseCardInfoEntryLess.less +80 -0
  24. package/src/components/JfbBaseCardInfoEntry/JfbBaseCardInfoEntryMixin.js +30 -0
  25. package/src/components/JfbBaseCardInfoEntry/Mock.js +122 -0
  26. package/src/components/JfbBaseCardMergeEntry/Api.js +61 -0
  27. package/src/components/JfbBaseCardMergeEntry/Attr.js +237 -0
  28. package/src/components/JfbBaseCardMergeEntry/JfbBaseCardMergeEntry.vue +443 -0
  29. package/src/components/JfbBaseCardMergeEntry/JfbBaseCardMergeEntryLess.less +80 -0
  30. package/src/components/JfbBaseCardMergeEntry/JfbBaseCardMergeEntryMixin.js +30 -0
  31. package/src/components/JfbBaseCardMergeEntry/Mock.js +32 -0
  32. package/src/components/JfbBaseCardShiftEntry/Api.js +51 -0
  33. package/src/components/JfbBaseCardShiftEntry/Attr.js +237 -0
  34. package/src/components/JfbBaseCardShiftEntry/JfbBaseCardShiftEntry.vue +476 -0
  35. package/src/components/JfbBaseCardShiftEntry/JfbBaseCardShiftEntryLess.less +80 -0
  36. package/src/components/JfbBaseCardShiftEntry/JfbBaseCardShiftEntryMixin.js +30 -0
  37. package/src/components/JfbBaseCardShiftEntry/Mock.js +5 -0
  38. package/src/components/JfbBaseHeader/JfbBaseHeader.vue +2 -33
  39. package/src/components/JfbBaseSuccess/JfbBaseSuccess.vue +80 -51
  40. package/src/components/JfbBaseSuccess/Mock.js +5 -0
  41. package/src/mixins/colorCardMixins.js +60 -0
@@ -0,0 +1,582 @@
1
+ <template>
2
+ <view
3
+ class="jfb-base-card-disabled-entry"
4
+ @click="handleEditxSelect"
5
+ :class="{ editx: isEditx && active }"
6
+ >
7
+ <!--#ifdef H5-->
8
+ <view
9
+ class="jfb-base-card-disabled-entry__edit"
10
+ :class="{ editx: isEditx && active }"
11
+ v-if="isEditx && active"
12
+ >
13
+ <view class="jfb-base-card-disabled-entry__edit-icon" @click="delEdit"
14
+ >删除</view
15
+ >
16
+ </view>
17
+ <!-- #endif -->
18
+ <view class="jfb-base-card-disabled-entry__body">
19
+ <view
20
+ v-if="disableList && disableList.length > 0"
21
+ class="jfb-base-card-entry__body-card"
22
+ >
23
+ <view
24
+ v-for="(item) in disableList"
25
+ class="card-list"
26
+ :key="item.card_number"
27
+ :style="{
28
+ background: item['theme']['color'],
29
+ backgroundSize: '100%'
30
+ }"
31
+ >
32
+ <view class="card-list-warp" :style="{backgroundImage: 'url('+ item['theme']['image'] +')'}">
33
+ <view class="card-list__title">
34
+ <view>{{item['card_type_name']}}</view>
35
+ </view>
36
+ <div class="card-list__content">
37
+ <view>
38
+ <text>券号:</text>
39
+ <text>{{item.card_number}}</text>
40
+ </view>
41
+ </div>
42
+ <view class="card-list__date">
43
+ <text>有效期:</text>
44
+ <text>--</text>
45
+ </view>
46
+ <view class="card-list__yue">
47
+ <text>余额:</text>
48
+ <text>--</text>
49
+ </view>
50
+ <view class="card-list__other" v-if="item.other_card_point && item.card_point_type === 2 ">
51
+ <view>
52
+ <text>购买其他物品可抵:</text>
53
+ <text>--</text>
54
+ </view>
55
+ </view>
56
+ <template>
57
+ <view class="card-list__entry" v-if="item.entries.length > 0">
58
+ <view
59
+ @click.stop="handleUnBindCard(item)"
60
+ :style="{color: item['theme']['color']}"
61
+ >解绑</view>
62
+ </view>
63
+ <view class="card-list__nodata" v-else>暂无支持服务列表</view>
64
+ </template>
65
+ </view>
66
+ </view>
67
+ </view>
68
+ <view v-else>
69
+ <view class="jfb-base-card-disabled-entry__body-empty">
70
+ <view class="jfb-base-card-disabled-entry__body-empty-wrap">
71
+ <image :src="emptyBg"></image>
72
+ 暂无票券
73
+ </view>
74
+ </view>
75
+ </view>
76
+ <view class="bottom_btn-mask"></view>
77
+ <view v-if="disableList&&disableList.length>0" class="bottom_btn" :style="prod_bottom">
78
+ <xd-button
79
+ width="680rpx"
80
+ radius="50rpx"
81
+ color="#bbb"
82
+ @click="handleAllUnBindCard"
83
+ >一键解绑</xd-button>
84
+ </view>
85
+ </view>
86
+ </view>
87
+ </template>
88
+
89
+ <script>
90
+ import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
91
+ import { jfbRootExec } from "@/utils/xd.event";
92
+ import JfbBaseCardDisabledEntryMixin from "./JfbBaseCardDisabledEntryMixin";
93
+ import componentsMixins from "@/mixins/componentsMixins";
94
+ import colorCardMixins from "@/mixins/colorCardMixins";
95
+ import XdButton from "@/components/XdButton/XdButton";
96
+ import XdNoData from '@/components/XdNoData/XdNoData'
97
+ import extsMixins from "@/mixins/extsMixins";
98
+ export default {
99
+ name: "JfbBaseCardDisabledEntry",
100
+ components: {
101
+ XdFontIcon,
102
+ XdNoData,
103
+ XdButton
104
+ },
105
+ mixins: [componentsMixins, extsMixins, JfbBaseCardDisabledEntryMixin, colorCardMixins],
106
+ data() {
107
+ return {
108
+ disableList: [],
109
+ isShowUnbind: false
110
+ };
111
+ },
112
+ computed:{
113
+ prod_bottom() {
114
+ return this.fixedStyle({height: 0, zIndex: 111});
115
+ },
116
+ emptyBg() {
117
+ return this.getNoData();
118
+ },
119
+ },
120
+ watch: {
121
+ container(value) {
122
+ this.init(value);
123
+ },
124
+ },
125
+ created() {
126
+ console.log(this.getNoData(),'this.getNoData()this.getNoData()');
127
+ this.init(this.container);
128
+ },
129
+ methods: {
130
+ onJfbLoad(options) {
131
+ this.getCardList();
132
+ },
133
+
134
+ getCardList() {
135
+ this.$xdShowLoading({});
136
+ jfbRootExec("getDisableCardListEntry", {vm: this, data: {is_all: "Y", is_show_entry_settings: 'Y'},})
137
+ .then((res) => {
138
+ this.isShowUnbind = (res["is_can_unbind"] === 'Y' || res["is_can_unbind"] === undefined);
139
+ res.list = res.list.map((item) => {
140
+ return {
141
+ ...item,
142
+ card_point: this.$xdUniHelper.divisionFloatNumber(
143
+ item.card_point,
144
+ 100
145
+ ),
146
+ other_card_point: this.$xdUniHelper.divisionFloatNumber(
147
+ item.other_card_point,
148
+ 100
149
+ ),
150
+ };
151
+ });
152
+ this.disableList = this.getCardGroupItem(res.list.filter((item) => {
153
+ return item["is_valid"] === "N";
154
+ }), res['site_entry_settings'], 'Y');
155
+ this.$xdHideLoading();
156
+ })
157
+ .catch(() => this.$xdHideLoading());
158
+ },
159
+
160
+ handleAllUnBindCard(){
161
+ this.$xdConfirm({
162
+ $vm: this,
163
+ content: "您确定要解除绑定所有票券吗?",
164
+ title: "系统提示",
165
+ width: "80%",
166
+ isTitle: true,
167
+ zIndex: 2000,
168
+ vm: this,
169
+ success: (res) => {
170
+ if (res.confirm) {
171
+ let cardIds = this.disableList.map(item=>{
172
+ return item.card_number + ''
173
+ });
174
+ jfbRootExec("batchDisabledCardUnbindEntry", {vm: this, data: {card_numbers: cardIds.join(','),},})
175
+ .then((res) => {
176
+ this.$xdAlert({
177
+ content: "全部失效票券已解绑",
178
+ close: () => {
179
+ this.getCardList();
180
+ },
181
+ });
182
+ })
183
+ .catch((err) => {
184
+ this.$xdLog.catch(err);
185
+ });
186
+ }
187
+ },
188
+ });
189
+
190
+ },
191
+
192
+ handleUnBindCard(item) {
193
+ this.$xdConfirm({
194
+ $vm: this,
195
+ content: "您确定要解除绑定票券吗?",
196
+ title: "系统提示",
197
+ width: "80%",
198
+ isTitle: true,
199
+ zIndex: 2000,
200
+ vm: this,
201
+ success: (res) => {
202
+ if (res.confirm) {
203
+ jfbRootExec("disabledCardUnbindEntry", {
204
+ vm: this,
205
+ data: {
206
+ card_number: item.card_number + "",
207
+ },
208
+ })
209
+ .then((res) => {
210
+ this.$xdAlert({
211
+ content: "票券已解绑",
212
+ close: () => {
213
+ this.getCardList();
214
+ },
215
+ });
216
+ })
217
+ .catch((err) => {
218
+ this.$xdLog.catch(err);
219
+ console.log(err, "err");
220
+ });
221
+ }
222
+ },
223
+ });
224
+ },
225
+
226
+ /**
227
+ * @description 监听事件变化
228
+ * @param container {object} 业务组件对象自己
229
+ */
230
+ init(container) {},
231
+
232
+ onJfbBack(options) {
233
+ console.log("event.onJfbBack", options);
234
+ },
235
+ },
236
+ };
237
+ </script>
238
+
239
+ <style scoped lang="less">
240
+ @import "./JfbBaseCardDisabledEntryLess.less";
241
+
242
+ .jfb-base-card-disabled-entry {
243
+ &__body {
244
+ padding: unit(30, rpx) unit(30, rpx);
245
+ color: #333;
246
+
247
+ &-card {
248
+ border: 1px dashed rgba(0, 0, 0, 0);
249
+ box-sizing: border-box;
250
+ &-item {
251
+ display: flex;
252
+ align-items: center;
253
+ justify-content: flex-start;
254
+ border: unit(2, rpx) solid #eeeeee;
255
+ border-radius: unit(20, rpx);
256
+ margin-bottom: unit(30, rpx);
257
+ background: #fff;
258
+
259
+ &-left {
260
+ width: unit(200, rpx);
261
+ display: flex;
262
+ flex-direction: column;
263
+ align-items: center;
264
+ justify-content: center;
265
+ font-size: unit(24, rpx);
266
+ }
267
+
268
+ &-right {
269
+ flex: 1;
270
+ border-left: unit(2, rpx) solid #eeeeeeff;
271
+
272
+ &-top {
273
+ border-bottom: unit(2, rpx) solid #eeeeeeff;
274
+ padding: unit(30, rpx) unit(40, rpx);
275
+
276
+ & > view:nth-child(1) {
277
+ display: flex;
278
+ font-size: unit(28, rpx);
279
+ margin-bottom: unit(18, rpx);
280
+ }
281
+
282
+ & > view:nth-child(2) {
283
+ font-size: unit(24, rpx);
284
+ color: #bbb;
285
+
286
+ & > view:nth-child(1) {
287
+ margin-right: unit(30, rpx);
288
+ }
289
+ }
290
+ }
291
+
292
+ &-bottom {
293
+ display: flex;
294
+ justify-content: space-between;
295
+ align-items: center;
296
+ padding: unit(30, rpx) unit(40, rpx);
297
+
298
+ &-info {
299
+ &-residue {
300
+ font-size: unit(24, rpx);
301
+ margin-bottom: unit(8, rpx);
302
+ }
303
+
304
+ &-deduction {
305
+ font-size: unit(24, rpx);
306
+ color: #bbb;
307
+ }
308
+ }
309
+
310
+ & > view:nth-child(2) {
311
+ width: unit(80, rpx);
312
+ height: unit(40, rpx);
313
+ border-radius: unit(40, rpx);
314
+ font-size: unit(22, rpx);
315
+ color: #fff;
316
+ text-align: center;
317
+ line-height: unit(40, rpx);
318
+ padding: unit(5, rpx) unit(9, rpx);
319
+ }
320
+ }
321
+ }
322
+ }
323
+ }
324
+
325
+ &-empty {
326
+ color: #888;
327
+ font-size: unit(24,rpx);
328
+ height: 60vh;
329
+ display: flex;
330
+ align-items: center;
331
+ justify-content: center;
332
+
333
+ &-wrap {
334
+ display: flex;
335
+ flex-direction: column;
336
+
337
+ & > image {
338
+ width: unit(460,rpx);
339
+ height: unit(400,rpx);
340
+ }
341
+ }
342
+
343
+ & > view {
344
+ text-align: center;
345
+ }
346
+ }
347
+
348
+ &-disabled {
349
+ font-size: unit(28, rpx);
350
+ color: #b8b7be;
351
+ margin-bottom: unit(30, rpx);
352
+ }
353
+ }
354
+ }
355
+
356
+ .card-list {
357
+ overflow: hidden;
358
+ border-radius: unit(16, rpx);
359
+ margin-bottom: unit(30, rpx);
360
+
361
+ &:last-child {
362
+ margin-bottom: 0;
363
+ }
364
+
365
+
366
+ &__title {
367
+ height: unit(56, rpx);
368
+ display: flex;
369
+ justify-content: flex-start;
370
+ align-items: center;
371
+
372
+ & > view {
373
+ padding: 0 unit(80, rpx);
374
+ font-size: unit(24, rpx);
375
+ line-height: unit(56, rpx);
376
+ background: rgba(102, 102, 102, 0.4);
377
+ color: #fff;
378
+ border-radius: 0 0 unit(16, rpx) 0;
379
+ }
380
+
381
+ }
382
+
383
+ &__content {
384
+ padding: unit(10, rpx) unit(40, rpx) 0;
385
+ height: unit(86, rpx);
386
+ display: flex;
387
+ justify-content: space-between;
388
+ align-items: center;
389
+
390
+ & > view:first-child {
391
+ font-size: unit(36, rpx);
392
+ line-height: unit(86, rpx);
393
+ color: #fff;
394
+ font-weight: 700;
395
+ }
396
+
397
+ & > view:nth-child(2) {
398
+ font-size: unit(24, rpx);
399
+ display: flex;
400
+ justify-content: space-between;
401
+ align-items: center;
402
+ flex-flow: wrap;
403
+ flex-direction: column;
404
+ color: #fff;
405
+ }
406
+ }
407
+
408
+ &__date {
409
+ padding: 0 unit(40, rpx);
410
+ font-size: unit(28, rpx);
411
+ line-height: unit(32, rpx);
412
+ color: #fff;
413
+ }
414
+
415
+ &__yue {
416
+ padding: unit(10, rpx) unit(40, rpx) 0;
417
+ font-size: unit(28, rpx);
418
+ line-height: unit(32, rpx);
419
+ color: #fff;
420
+
421
+ & > text:nth-child(2) {
422
+ font-weight: 700;
423
+ }
424
+ }
425
+
426
+ &__other {
427
+ display: flex;
428
+ justify-content: flex-start;
429
+ align-items: center;
430
+ padding: unit(20, rpx) unit(40, rpx) 0;
431
+ margin-top: unit(0, rpx);
432
+
433
+ & > view {
434
+ border-radius: unit(8, rpx);
435
+ background: rgba(255, 255, 255, 0.2);
436
+ height: unit(48, rpx);
437
+ line-height: unit(48, rpx);
438
+ display: flex;
439
+ justify-content: flex-start;
440
+ align-items: center;
441
+ font-weight: 400;
442
+ font-size: unit(24, rpx);
443
+ padding: 0 unit(20, rpx);
444
+ color: #fff;
445
+ }
446
+
447
+
448
+ }
449
+
450
+ &__nodata {
451
+ padding: unit(20, rpx) unit(40, rpx) 0;
452
+ margin-top: unit(0, rpx);
453
+ color: #fff;
454
+ font-size: unit(28, rpx);
455
+ }
456
+
457
+ &__entry {
458
+ padding: unit(20, rpx) unit(40, rpx) 0;
459
+
460
+ & > view {
461
+ line-height: unit(64, rpx);
462
+ text-align: center;
463
+ font-size: unit(26, rpx);
464
+ border-radius: unit(32, rpx);
465
+ background: rgba(255, 255, 255, 1);
466
+ box-shadow: 0 unit(4, rpx) unit(8, rpx) rgba(156, 62, 0, 0.11);
467
+ font-weight: 500;
468
+ }
469
+ }
470
+
471
+ &__entrys {
472
+ margin: unit(20, rpx) unit(20, rpx) 0;
473
+ padding: unit(30, rpx);
474
+ border-radius: unit(16, rpx);
475
+ background: rgba(255, 255, 255, 1);
476
+ box-shadow: 0 unit(4, rpx) unit(8, rpx) rgba(156, 62, 0, 0.11);
477
+
478
+ &-title {
479
+ display: flex;
480
+ justify-content: space-between;
481
+ align-items: center;
482
+
483
+
484
+ & > view:first-child {
485
+ font-size: unit(28, rpx);
486
+ font-weight: 500;
487
+ flex: 1;
488
+ }
489
+
490
+ & > view:nth-child(2) {
491
+ display: flex;
492
+ justify-content: flex-start;
493
+ align-items: center;
494
+ flex-shrink: 0;
495
+ font-size: unit(20, rpx);
496
+ color: #999;
497
+ }
498
+ }
499
+
500
+ &-scroll {
501
+
502
+ }
503
+
504
+ &-item {
505
+ display: flex;
506
+ justify-content: flex-start;
507
+ align-items: center;
508
+ flex-flow: nowrap;
509
+ margin-left: unit(-14, rpx);
510
+ padding-top: unit(20, rpx);
511
+
512
+ & > view {
513
+ width: unit(120, rpx);
514
+ margin-right: unit(10, rpx);
515
+ flex-shrink: 0;
516
+ display: flex;
517
+ justify-content: center;
518
+ flex-direction: column;
519
+ align-items: center;
520
+
521
+ & > view:first-child {
522
+ width: unit(76, rpx);
523
+ height: unit(76, rpx);
524
+ overflow: hidden;
525
+
526
+ & > image {
527
+ height: 100%;
528
+ width: 100%;
529
+ }
530
+ }
531
+
532
+ & > view:nth-child(2) {
533
+ margin-top: unit(10, rpx);
534
+ font-size: unit(24, rpx);
535
+ line-height: unit(36, rpx);
536
+ margin-bottom: unit(10, rpx);
537
+ }
538
+
539
+ & > view:nth-child(3) {
540
+ display: flex;
541
+ justify-content: flex-start;
542
+ align-items: center;
543
+ flex-shrink: 0;
544
+ font-size: unit(20, rpx);
545
+ color: #999;
546
+ }
547
+
548
+ &:last-child {
549
+ margin-right: 0;
550
+ }
551
+
552
+ }
553
+
554
+
555
+ }
556
+ }
557
+
558
+
559
+ &-warp {
560
+ width: unit(700, rpx);
561
+ min-height: unit(310, rpx);
562
+ position: relative;
563
+ border-radius: unit(16, rpx);
564
+ background-size: 100%;
565
+ padding-bottom: unit(20, rpx);
566
+ }
567
+ }
568
+
569
+ .bottom_btn {
570
+ position: fixed;
571
+ width: 100%;
572
+ display: flex;
573
+ justify-content: center;
574
+ align-items: center;
575
+ height: unit(120, rpx);
576
+ background: #ffffff;
577
+
578
+ &-mask {
579
+ height: unit(120, rpx);
580
+ }
581
+ }
582
+ </style>
@@ -0,0 +1,80 @@
1
+ /**
2
+ * @desc 获取绝对路径完整地址
3
+ * @param @path
4
+ **/
5
+ //例如:https://image.jufubao.cn/20220501010108/image/bg/default_gonghui_bg.png
6
+ @basePath: 'business/';
7
+ @doMain: '//sandbox-img.jufubao.cn/';
8
+
9
+ .getBusinessImageUrl(@path, @size: 'size8') {
10
+ @url: "@{doMain}@{basePath}@{path}?x-oss-process=style/@{size}";
11
+ background-image: url(@url);
12
+ }
13
+
14
+ //start
15
+ .jfb-base-card-disabled-entry {
16
+ border: 1px dashed rgba(0, 0, 0, 0);
17
+ box-sizing: border-box;
18
+ min-height: unit(100, rpx);
19
+
20
+ &__body{
21
+ position: relative;
22
+ overflow: hidden;
23
+ z-index: 2
24
+ }
25
+
26
+ &.editx {
27
+ position: relative;
28
+ border: 1px dashed blue;
29
+ box-sizing: border-box;
30
+ z-index: 3
31
+
32
+ }
33
+
34
+ &:hover {
35
+ border: 1px dashed blue;
36
+ }
37
+
38
+ &.noBorder {
39
+ border-color: rgba(0,0,0,0);
40
+ border-width: 0;
41
+ }
42
+
43
+
44
+ &__edit {
45
+ cursor: pointer;
46
+ position: absolute;
47
+ right: unit(0, rpx);
48
+ top: unit(-52, rpx);
49
+ height: unit(50, rpx);
50
+ line-height: unit(50, rpx);
51
+ display: flex;
52
+ justify-content: center;
53
+ align-items: center;
54
+ background: rgba(0, 0, 0, .6);
55
+ border-radius: unit(10, rpx);
56
+ box-shadow: 0 0 10px rbga(0, 0, 0, 0.3);
57
+ color: #fff;
58
+ font-size: unit(22, rpx);
59
+
60
+ &-icon{
61
+ padding: 0 unit(20, rpx);
62
+ }
63
+
64
+ &.editx {
65
+ box-sizing: border-box;
66
+
67
+ }
68
+ }
69
+ }
70
+ //end
71
+
72
+
73
+ /**notPreview**/
74
+ .jfb-base-card-disabled-entry {
75
+ &:before {
76
+ content: " ";
77
+ display: table;
78
+ }
79
+ }
80
+ /**endNotPreview**/
@@ -0,0 +1,30 @@
1
+ 'use strict';
2
+
3
+
4
+ //@AttrImport
5
+ import Attr from "./Attr";
6
+ //@EndAttrImport
7
+
8
+
9
+ export default {
10
+ data() {
11
+ return {
12
+ //#ifdef H5
13
+
14
+ //@AttrData
15
+ Attr:{}, //对外开发编辑属性
16
+ //@EndAttrData
17
+
18
+ // #endif
19
+ cssRoot: 'jfb-base-card-disabled-entry'
20
+ }
21
+ },
22
+ created() {
23
+
24
+ //@AttrDataCreated
25
+ this.Attr = this.$xdUniHelper.customClone(Attr);
26
+ //@EndAttrDataCreated
27
+
28
+
29
+ },
30
+ }