jufubao-base 1.0.181-beta4 → 1.0.181-beta5
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
CHANGED
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
</view>
|
|
284
284
|
<view v-if="tabIndex===2&&(couponList&&couponList.length)">
|
|
285
285
|
<view v-if="couponList.length" class="coupon_list">
|
|
286
|
-
<
|
|
286
|
+
<CusCouponItem v-for="(item, i) in couponList" :key="i"
|
|
287
287
|
style="margin-bottom:20rpx"
|
|
288
288
|
:couponRadius="couponRadius"
|
|
289
289
|
:couponImageUrl="couponImageUrl"
|
|
@@ -296,7 +296,7 @@
|
|
|
296
296
|
:mainColor="mainColor"
|
|
297
297
|
@useCoupon="handleBindLogin(item,item['entries'][0])"
|
|
298
298
|
@toDetail="toDetail(item)"
|
|
299
|
-
></
|
|
299
|
+
></CusCouponItem>
|
|
300
300
|
</view>
|
|
301
301
|
<view v-else>
|
|
302
302
|
暂无数据
|
|
@@ -435,7 +435,7 @@ import { mapState, mapActions } from "vuex";
|
|
|
435
435
|
import { getContainerPropsValue, isWechat,isQrCode } from "@/utils/xd.base";
|
|
436
436
|
import XdNoticeBar from "@/components/XdNoticeBar/XdNoticeBar";
|
|
437
437
|
import { Base64 } from "js-base64";
|
|
438
|
-
import
|
|
438
|
+
import CusCouponItem from "@/components/CusCouponItem/CusCouponItem";
|
|
439
439
|
import getServiceUrl from "@/common/getServiceUrl";
|
|
440
440
|
import {parsePath} from "@/utils/linkUrl";
|
|
441
441
|
const Color = require("color");
|
|
@@ -447,7 +447,7 @@ export default {
|
|
|
447
447
|
XdButton,
|
|
448
448
|
XdNoticeBar,
|
|
449
449
|
XdCardV2,
|
|
450
|
-
|
|
450
|
+
CusCouponItem
|
|
451
451
|
},
|
|
452
452
|
mixins: [componentsMixins, extsMixins, JfbBaseCardEntryMixin, colorCardMixins, cardListMixins],
|
|
453
453
|
computed: {
|