123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522 |
- <template>
- <view class="memberCenter">
- <JHeader title="我的积分" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view class="memberBox">
- <view class="posBox">
- <view class="memberBoxTop">
- <view class="memberTopPos" :style="{ backgroundImage: 'url(' + common.seamingImgUrl(levelInfo.memberLevelBackground) + ')' }">
- <view class="memberTopBg">
- <view class="flex-items">
- <view class="avatarBox">
- <image :src="common.seamingImgUrl($store.getters.userInfo.headImage)"></image>
- </view>
- <view class="nameBox">
- <view class="name fs36">{{ $store.getters.userInfo.name }}</view>
- <view class="level">
- <image :src="common.seamingImgUrl(levelInfo.memberLevelIcon)"></image>
- </view>
- </view>
- </view>
- <view class="integralInfo flex-items flex-sp-between mar-top-20">
- <view class="itemBox">
- <view class="integraNum fs32 font-color-333 fs-weight-400">{{ $store.getters.userInfo.totalCredit }}</view>
- <view class="fs24 font-color-333 fs-weight-400">累计积分</view>
- </view>
- <view class="itemBox">
- <view class="integraNum fs32 font-color-333 fs-weight-400">
- {{ $store.getters.userInfo.totalCredit - $store.getters.userInfo.credit }}
- </view>
- <view class="fs24 font-color-333 fs-weight-400">累计消费</view>
- </view>
- <view class="itemBox">
- <view class="integraNum fs32 font-color-333 fs-weight-400">{{ $store.getters.userInfo.credit }}</view>
- <view class="fs24 font-color-333 fs-weight-400">剩余积分</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="signBox flex-items flex-sp-between mar-top-30" @click="goToSign">
- <view class="flex-items flex-sp-between">
- <tui-icon name="member-fill" :size="96" unit="upx" color="#fdbc3d" margin="0 20upx 0 0"></tui-icon>
- <view class="signText fs28 font-color-C5AA7B">积分签到</view>
- </view>
- <tui-icon name="arrowright" :size="48" unit="upx" color="#C5AA7B"></tui-icon>
- </view>
- <view class="signTabs mar-top-30 flex-items">
- <view :class="{ active: currentTab === 0 }" class="tabItem flex-items flex-center" @click="handleChangeTab(0)">
- <tui-icon
- name="order" :size="40" unit="upx" :color="currentTab === 0 ? '#ffebc4' : '#999999'"
- margin="0 20upx 0 0"
- ></tui-icon>
- <text>积分明细</text>
- </view>
- <view :class="{ active: currentTab === 1 }" class="tabItem flex-items flex-center" @click="handleChangeTab(1)">
- <tui-icon
- name="exchange" :size="40" unit="upx" :color="currentTab === 1 ? '#ffebc4' : '#999999'"
- margin="0 20upx 0 0"
- ></tui-icon>
- <text>积分兑换</text>
- </view>
- </view>
- <view v-if="currentTab === 0" class="signInfo mar-top-20">
- <view v-if="integralInfo.data && integralInfo.data.length">
- <view v-for="(item, index) in integralInfo.data" :key="index" class="signItem flex-items flex-sp-between">
- <view class="leftBox flex-items">
- <tui-icon name="service-fill" :size="90" unit="upx" color="#fabe69" margin="0 30upx 0 0"></tui-icon>
- <view class="leftInfo">
- <label class="fs28 font-color-333">{{ item.recordContent }}</label>
- <view class="fs24 font-color-999">{{ item.createTime }}</view>
- </view>
- </view>
- <view class="rightBtn">{{ item.recordType === 1 ? '+' : '-' }}{{ item.credit }}</view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!integralInfo.isEmpty && !integralInfo.data.length
- ? 'loading' : !integralInfo.isEmpty && integralInfo.data.length && (integralInfo.data.length >= integralInfo.listTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="integralInfo.isEmpty" :fixed="false" style="margin-top: 60upx;">暂无记录~</tui-no-data>
- </view>
- </view>
- <view v-else class="signExchange mar-top-20">
- <view v-if="creditCouponInfo.data && creditCouponInfo.data.length">
- <view v-for="(item, index) in creditCouponInfo.data" :key="index" class="exchangeItem flex-items flex-sp-between">
- <view class="exchangeLeft flex-items">
- <view class="discountBox mar-right-20">
- <view v-if="item.couponType === 1" class="fs24">
- {{ item.fullMoney === 0 ? `无门槛减${item.reduceMoney}元`
- : `满${item.fullMoney}元减${item.reduceMoney}元` }}
- </view>
- <view v-else class="fs24">
- {{ item.fullMoney === 0 ? `无门槛打${item.reduceMoney}折`
- : `满${item.fullMoney}元打${item.reduceMoney}折` }}
- </view>
- <view class="fs30">{{ item.couponType === 1 ? '满减券' : '折扣券' }}</view>
- </view>
- <view class="exchangeInfo">
- <view v-if="item.couponType === 1" class="fs28 font-color-333">
- {{ item.fullMoney === 0
- ? `无门槛减${item.reduceMoney}元` : `满${item.fullMoney}元减${item.reduceMoney}元` }}
- </view>
- <view v-else class="fs28 font-color-333">
- {{ item.fullMoney === 0 ? `无门槛打${item.reduceMoney}折`
- : `满${item.fullMoney}元打${item.reduceMoney}折` }}
- </view>
- <view v-if="item.stockNumber > 0" class="fs24 state">还剩{{ item.stockNumber }}个</view>
- <view v-else class="fs24 state finish">已兑完</view>
- <view class="integral fs32">{{ item.credit }}积分</view>
- </view>
- </view>
- <view class="exchangeRight">
- <view
- v-if="item.state === 0 && item.stockNumber !== 0" class="exchangeBtn fs28 font-color-FFF"
- @click="goExchangeDetail(item)"
- >
- 兑换
- </view>
- <view v-if="item.stockNumber === 0" class="exchangeBtn available fs28 font-color-FFF">已兑完</view>
- <view
- v-if="item.state === 1" class="exchangeBtn available fs28 font-color-FFF"
- @click="goExchangeDetail(item)"
- >
- 已兑换
- </view>
- </view>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!creditCouponInfo.isEmpty && !creditCouponInfo.data.length
- ? 'loading' : !creditCouponInfo.isEmpty && creditCouponInfo.data.length && (creditCouponInfo.data.length >= creditCouponInfo.listTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="creditCouponInfo.isEmpty" :fixed="false" style="margin-top: 60upx;">暂无优惠券~</tui-no-data>
- </view>
- </view>
- <tui-modal :show="isConvertible" :custom="true" :fadein="true">
- <view class="Put-box1">
- <view class="text-align fs34 fs-bold">
- 温馨提示
- </view>
- <view class="mar-top-40 text-align">
- 您的积分不够哦,请获取更多的积分!
- </view>
- <view class="flex-display flex-sp-between">
- <view class="btn" @click="goToSign">
- 去签到
- </view>
- </view>
- <view v-if="isConvertible" class="cancelDel" @click="isConvertible = false">
- <tui-icon name="close" :size="60" unit="upx" color="#f0f0f0"></tui-icon>
- </view>
- </view>
- </tui-modal>
- </view>
- </template>
- <script>
- import { getMemberByMemberLevelIdApi, getSelectCreditCouponListApi, getSelectCreditRecordApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'Integral',
- data() {
- return {
- currentTab: 0,
- integralInfo: {
- query: {
- page: 1,
- pageSize: 10,
- session: ''
- },
- data: [],
- listTotal: 0,
- isEmpty: false
- },
- creditCouponInfo: {
- query: {
- page: 1,
- pageSize: 10,
- session: ''
- },
- data: [],
- listTotal: 0, // 列表数据总数
- isEmpty: false // 列表是否为空
- },
- levelInfo: {},
- isConvertible: false
- }
- },
- onLoad(option) {
- if (option.tabActive) this.currentTab = parseInt(option.tabActive)
- this.$store.dispatch('auth/refrshUserInfoAction', () => {
- this.getIntegralList()
- this.getMemberByMemberLevel()
- })
- },
- methods: {
- handleChangeTab(index) {
- this.currentTab = index
- // 缓存每个tab里的数据
- if (this.currentTab === 0) {
- } else if (this.currentTab === 1) {
- if (!this.creditCouponInfo.isEmpty && !this.creditCouponInfo.data.length) this.getCreditCouponList()
- }
- // 每点一个tab就重新进行对它的请求
- // if (this.currentTab === 0) {
- // this.integralInfo.query.page = 1
- // this.integralInfo.data = []
- // this.integralInfo.listTotal = 0
- // this.integralInfo.isEmpty = false
- // this.getIntegralList()
- // } else if (this.currentTab === 1) {
- // this.creditCouponInfo.query.page = 1
- // this.creditCouponInfo.data = []
- // this.creditCouponInfo.listTotal = 0
- // this.creditCouponInfo.isEmpty = false
- // this.getCreditCouponList()
- // }
- },
- getIntegralList(isLoadmore) {
- uni.showLoading({
- title: '加载中'
- })
- getSelectCreditRecordApi({ ...this.integralInfo.query })
- .then((res) => {
- this.integralInfo.listTotal = res.data.total
- if (isLoadmore) {
- this.integralInfo.data.push(...res.data.list)
- } else {
- this.integralInfo.data = res.data.list
- }
- this.integralInfo.isEmpty = this.integralInfo.data.length === 0
- uni.hideLoading()
- })
- .catch(() => {
- uni.hideLoading()
- })
- },
- getCreditCouponList(isLoadmore) {
- uni.showLoading({
- title: '加载中'
- })
- getSelectCreditCouponListApi({ ...this.creditCouponInfo.query })
- .then((res) => {
- this.creditCouponInfo.listTotal = res.data.total
- if (isLoadmore) {
- this.creditCouponInfo.data.push(...res.data.list)
- } else {
- this.creditCouponInfo.data = res.data.list
- }
- this.creditCouponInfo.isEmpty = this.creditCouponInfo.data.length === 0
- uni.hideLoading()
- })
- .catch(() => {
- uni.hideLoading()
- })
- },
- // 获取会员等级
- getMemberByMemberLevel() {
- getMemberByMemberLevelIdApi({ memberLevelId: this.$store.getters.userInfo.memberLevelId })
- .then((res) => {
- this.levelInfo = res.data
- })
- },
- // 签到
- goToSign() {
- uni.navigateTo({
- url: '/another-tf/another-serve/integral/sign'
- })
- },
- // 跳转到兑换优惠详情
- goExchangeDetail(item) {
- if (this.$store.getters.userInfo.credit < item.credit) {
- this.isConvertible = true
- } else {
- uni.navigateTo({
- url: `/another-tf/another-serve/exchangeDetail/index?data=${JSON.stringify(item)}`
- })
- }
- }
- },
- onReachBottom() {
- if (this.currentTab === 0) {
- if (this.integralInfo.data.length < this.integralInfo.listTotal) {
- ++this.integralInfo.query.page
- this.getIntegralList(true)
- }
- } else if (this.currentTab === 1) {
- if (this.creditCouponInfo.data.length < this.creditCouponInfo.listTotal) {
- ++this.creditCouponInfo.query.page
- this.getCreditCouponList(true)
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .memberCenter {
- background-color: #F8F8F8;
- min-height: 100vh;
- padding: 0 20rpx;
- .memberBox {
- min-height: 230rpx;
- margin-top: 120rpx;
- width: 100%;
- border-radius: 25rpx;
- background-size: contain;
- position: relative;
- box-sizing: border-box;
- .posBox {
- position: absolute;
- width: 100%;
- left: 0;
- top: -80rpx;
- }
- .memberBoxTop {
- position: relative;
- .memberTopPos {
- background-size: cover;
- height: 302rpx;
- border-radius: 24rpx;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.05);
- .memberTopBg {
- padding: 40rpx 30rpx;
- .integralInfo {
- padding: 0 50rpx;
- .itemBox {
- text-align: center;
- }
- }
- }
- }
- }
- .avatarBox {
- margin-left: 30rpx;
- image {
- width: 110rpx;
- height: 110rpx;
- border: 5rpx solid #FFFFFF;
- border-radius: 50%;
- }
- }
- .nameBox {
- margin-left: 20rpx;
- .name {
- color: #333333;
- margin-right: 30rpx;
- }
- .level {
- image {
- width: 172rpx;
- height: 50rpx;
- }
- }
- }
- }
- .signBox {
- background: #f9f6ed;
- height: 96rpx;
- border-radius: 24rpx;
- padding: 0 20rpx;
- }
- .signTabs {
- .tabItem {
- width: 50%;
- height: 96rpx;
- border-radius: 16rpx;
- text {
- color: #999999;
- font-size: 28rpx;
- }
- }
- .active {
- background: #333333;
- text {
- color: #FFEBC4;
- }
- }
- }
- .signInfo {
- background: #FFFFFF;
- border-radius: 16rpx;
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.05);
- padding: 30rpx;
- .signItem {
- border-top: 2rpx solid #F3F4F5;
- padding: 30rpx 0;
- }
- .signItem:first-child {
- border-top: none;
- }
- .rightBtn {
- width: 160rpx;
- height: 58rpx;
- line-height: 58rpx;
- background: #FFF9F6;
- border-radius: 10rpx;
- color: #C83732;
- text-align: center;
- font-weight: 300;
- font-size: 24rpx;
- }
- }
- .signExchange {
- box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.05);
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 40rpx 30rpx;
- .exchangeItem {
- padding-bottom: 20rpx;
- margin-bottom: 20rpx;
- border-bottom: 2rpx #F3F4F5 solid;
- .exchangeLeft {
- .discountBox {
- color: #FDFED6;
- width: 300rpx;
- height: 146rpx;
- background-color: #f3c148;
- background-size: contain;
- padding: 30rpx 25rpx;
- }
- .exchangeInfo {
- .state {
- text-align: center;
- background: #333333;
- color: #FFEBC4;
- font-size: 24rpx;
- margin: 8rpx 0 4rpx 0;
- padding: 8rpx 14rpx;
- border-radius: 8rpx;
- }
- .finish {
- color: #CCCCCC;
- border: 2rpx solid #CCCCCC;
- background: none;
- }
- .integral {
- color: #D72E2E;
- }
- }
- }
- .exchangeRight {
- height: 146rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- .exchangeBtn {
- width: 120rpx;
- height: 48rpx;
- line-height: 48rpx;
- text-align: center;
- background: linear-gradient(90deg, #C83732 0%, #E25C44 100%);
- box-shadow: 0 6rpx 12rpx rgba(233, 0, 0, 0.3);
- border-radius: 24rpx;
- }
- .available {
- background: linear-gradient(90deg, #C83732 0%, #E25C44 100%);
- box-shadow: 0 6rpx 12rpx rgba(233, 0, 0, 0.3);
- }
- }
- }
- .exchangeItem:last-child {
- border-bottom: none;
- }
- }
- .cancelDel {
- position: absolute;
- bottom: -100rpx;
- left: 45%;
- }
- .Put-box1 {
- .btn {
- margin-top: 50rpx;
- width: 100%;
- height: 84rpx;
- line-height: 84rpx;
- text-align: center;
- background: #333333;
- color: #FFEBC4;
- }
- }
- }
- </style>
|