jufubao-base 1.0.67 → 1.0.68
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/JfbBaseConDialog/Api.js +19 -0
- package/src/components/JfbBaseConDialog/Attr.js +60 -0
- package/src/components/JfbBaseConDialog/JfbBaseConDialog.vue +297 -0
- package/src/components/JfbBaseConDialog/JfbBaseConDialogLess.less +80 -0
- package/src/components/JfbBaseConDialog/JfbBaseConDialogMixin.js +30 -0
- package/src/components/JfbBaseConDialog/Mock.js +30 -0
- package/src/components/JfbBaseConList/Api.js +58 -0
- package/src/components/JfbBaseConList/Attr.js +224 -0
- package/src/components/JfbBaseConList/JfbBaseConList.vue +608 -0
- package/src/components/JfbBaseConList/JfbBaseConListLess.less +80 -0
- package/src/components/JfbBaseConList/JfbBaseConListMixin.js +30 -0
- package/src/components/JfbBaseConList/Mock.js +19 -0
- package/src/components/JfbBaseSuccess/JfbBaseSuccess.vue +5 -6
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
module.exports = {
|
|
4
|
+
getCouponList: {
|
|
5
|
+
"list": [
|
|
6
|
+
{
|
|
7
|
+
"prize_id": 25,
|
|
8
|
+
"prize_name": "满100减1",
|
|
9
|
+
"prize_num": 23
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"background": "//sandbox-img.jufubao.cn/uploads/20231123/4767f11be07185af4d31c657812dd96f.jpg",
|
|
13
|
+
"app_coupon_url": "//sandbox-img.jufubao.cn/uploads/20231123/9709c60e75753585d7bab94699ce1d96.jpg",
|
|
14
|
+
"request_id": "60417690eab2c156"
|
|
15
|
+
},
|
|
16
|
+
getAllCoupon: {
|
|
17
|
+
"request_id": "5987aa28c709d4ef"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -400,6 +400,11 @@ export default {
|
|
|
400
400
|
this.isPreview = this.$configProject.isPreview;
|
|
401
401
|
this.init(this.container);
|
|
402
402
|
},
|
|
403
|
+
destroyed() {
|
|
404
|
+
if (this.timeer) {
|
|
405
|
+
clearTimeout(this.timeer);
|
|
406
|
+
}
|
|
407
|
+
},
|
|
403
408
|
methods: {
|
|
404
409
|
|
|
405
410
|
onJfbLoad(options) {
|
|
@@ -638,12 +643,6 @@ export default {
|
|
|
638
643
|
}
|
|
639
644
|
},
|
|
640
645
|
|
|
641
|
-
destroyed() {
|
|
642
|
-
if (this.timeer) {
|
|
643
|
-
clearTimeout(this.timeer);
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
|
|
647
646
|
/**
|
|
648
647
|
* @description 页面返回按钮
|
|
649
648
|
* @param options
|