123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <template>
- <div class="point-bill">
- <div class="top">
- <span class="icon"></span>
- <span class="num">{{pointInfo.points}}</span>
- <span class="text">我的积分</span>
- </div>
- <div class="bottom">
- <div v-if="recordList.length === 0" class="no-img">
- <div></div>
- <span>无订单</span>
- </div>
- <template v-else>
- <div class="item" v-for="item in recordList" :key="item.id">
- <div class="content">
- <span class="text">{{item.recordType === '+'? '加油': '兑换商品'}}</span>
- <span class="amount" :class="item.recordType==='+'?'add':'' ">{{item.recordType + ' ' + item.integral}}</span>
- </div>
- <div class="time">{{item.createTime}}</div>
- </div>
- </template>
- <!-- <div class="item">
- <div class="content">
- <span class="text">兑换商品</span>
- <span class="amount">- 10</span>
- </div>
- <div class="time">2018/09/20 18:00:00</div>
- </div>
-
- <div class="item">
- <div class="content">
- <span class="text">加油</span>
- <span class="amount add">+ 10</span>
- </div>
- <div class="time">2018/09/20 18:00:00</div>
- </div>
- <div class="item">
- <div class="content">
- <span class="text">兑换商品</span>
- <span class="amount">- 10</span>
- </div>
- <div class="time">2018/09/20 18:00:00</div>
- </div>
- <div class="item">
- <div class="content">
- <span class="text">加油</span>
- <span class="amount add">+ 10</span>
- </div>
- <div class="time">2018/09/20 18:00:00</div>
- </div> -->
- </div>
- </div>
- </template>
- <script>
- import ProductList from "../../components/ProductList";
- import moment from "moment"
- import { mapState, mapActions } from "vuex"
- export default {
- head() {
- return {
- title: "积分明细",
- };
- },
- data() {
- return {
- images: [],
- list: [],
- loading: false, // 加载状态
- finished: false, // 是否完成加载
- refreshing: false, // 是否正在上拉刷新
- img: "/test/1_a01_class_2@2x.png",
- recordList:[]
- };
- },
- components: {
- ProductList,
- },
- computed:{
- ...mapState({
- pointInfo:state=>state.point.pointInfo
- })
- },
- mounted() {
- this.getPointsRecordList();
- },
- beforeUpdate() {},
- updated() {},
- beforeDestroy() {},
- destroyed() {},
- methods: {
- getPointsRecordList(){
- this.$axios.$get("/getCustomerPointsRecordList",{
- params:{
- unionId:this.unionId,
- stationId:this.stationId
- }
- }).then((res)=>{
- this.recordList = res.data.map((ele)=>{
- ele.createTime = moment(ele.createTime,'MMM DD, YYYY HH:mm:ss A').utc().format("YYYY/MM/DD HH:mm:ss")
- return ele
- })
- })
- }
- },
- };
- </script>
- <style>
- .point-bill {
- width: 100%;
- }
- .point-bill .top {
- width: 100%;
- height: 3.98rem;
- background: url("../../static/point/bj@2x.png") no-repeat 0 0;
- background-size: 100% 100%;
- position: relative;
- z-index: -1;
- }
- .point-bill .top .icon {
- background: url("../../static/point/chengzhnagzhi@2x.png") no-repeat 0 0;
- background-size: 100% 100%;
- width: 0.35rem;
- height: 0.35rem;
- position: absolute;
- right: 0.3rem;
- top: 0.3rem;
- }
- .point-bill .top .num {
- width: 2.12rem;
- height: 0.98rem;
- font-size: 0.7rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 0.98rem;
- text-align: center;
- position: absolute;
- left: calc(50% - 1.06rem);
- top: 0.6rem;
- }
- .point-bill .top .text {
- width: 1.12rem;
- height: 0.4rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 0.4rem;
- position: absolute;
- left: calc(50% - 0.56rem);
- top: 1.68rem;
- }
- .point-bill .bottom {
- width: 100%;
- min-height:2rem;
- background: #ffffff;
- box-shadow: 0rem 0.02rem 0.1rem 0.05rem rgba(227, 227, 227, 0.5);
- border-radius: 0.25rem;
- margin-top: -1.3rem;
- padding: 0.4rem 0.3rem;
- box-sizing: border-box;
- }
- .point-bill .bottom .no-img{
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .point-bill .bottom .no-img div{
- width: 2.29rem;
- height:1.87rem;
- background: url("../../static/common/wu@2x.png") no-repeat 0 0;
- background-size: 100% 100%;
- }
- .point-bill .bottom .no-img span{
- width: 2.29rem;
- height: .4rem;
- font-size: .28rem;
- font-weight: 500;
- color: #AAAAAA;
- line-height: .4rem;
- text-align: center;
- }
- .point-bill .bottom .item {
- width: 100%;
- height: 1.56rem;
- padding: 0.3rem 0;
- border-bottom: 0.01rem solid #e0e0e0;
- box-sizing: border-box;
- }
- .point-bill .bottom .item:nth-last-child(1){
- border-bottom:none;
- }
- .point-bill .bottom .item .content {
- font-family: PingFangSC-Regular, PingFang SC;
- display: flex;
- justify-content: space-between;
- }
- .point-bill .bottom .item .content .text {
- display: inline-block;
- height: 0.45rem;
- font-size: 0.32rem;
- font-weight: 400;
- color: #111111;
- line-height: 0.45rem;
- }
- .point-bill .bottom .item .content .amount {
- display: inline-block;
- height: 0.45rem;
- font-size: 0.32rem;
- font-weight: 500;
- color: #111111;
- line-height: 0.45rem;
- }
- .point-bill .bottom .item .content .add {
- color: #f3b235;
- }
- .point-bill .bottom .item .time {
- height: 0.4rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #aaaaaa;
- line-height: 0.4rem;
- }
- </style>
|