123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- <template>
- <view class="content">
- <view class="top-tit flex" v-if="currentIndex == 0 && dqtime">
- <view class="tit">
- 电池到期时间: {{dqtime}}
- </view>
- </view>
- <view class="top-tit flex" v-if="currentIndex == 1 && dqtimet">
- <view class="tit">
- 升压器到期时间: {{dqtimet}}
- </view>
- </view>
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item"
- :class="{ current: currentIndex === index }" @click="tabClick(index)">{{ item.title }}</view>
- </view>
- <scroll-view scroll-y="true" :style="{'height': maxhegiht}" class="list-wrap" @scrolltolower="getMyRent">
- <swiper disable-touch :style="{'height': maxhegiht}" :current="currentIndex">
- <swiper-item v-for="ditem in navList">
- <view v-for="(item, index) in ditem.list" :key="index" class="order-item">
- <view class="i-top b-b">
- <text class="time">订单编号:{{ item.order_id }}</text>
- <text class="state">{{ item.status == 1?'待核销':(item.status == 2 ? '已核销': '') }}</text>
- <text v-if="item.status === 4" class="del-btn iconfont icondelete" @click="deleteOrder(index)"></text>
- </view>
- <view class="goods-box-single">
- <image class="goods-img" :src="currentIndex == 1?'../../static/icon/in3.png':'../../static/icon/in1.png'" mode="scaleToFill"></image>
- <view class="right">
- <view class="flex flextop">
- <text class="title clamp2">{{currentIndex == 0?'电池订单': '升压器订单'}}</text>
- <text class="price">{{ moneyNum(item.price) }}</text>
- </view>
- <view class="row flex">
- <text class="row_title">{{ item.month ? (item.month + '月') : '' }}</text>
- </view>
- </view>
- </view>
- <view class="price-box">
- 实付款
- <text class="price">{{ moneyNum(item.pay_price)}}</text>(押金{{moneyNum(item.deposit)}})
- </view>
- <view class="action-box b-t">
- <button v-if="item.status == 0 && currentIndex == 0" class="action-btn btn-base"
- @click.stop="navTo('/pages/order/hxqm?id=' + item.verify_code + '&type=2&battery_number=' + (userInfo.battery_number || ''))">出示券码</button>
- <button v-if="item.status == 0 && currentIndex == 1" class="action-btn btn-base"
- @click.stop="navTo('/pages/order/hxqm?id=' + item.verify_code + '&type=3&booster_number=' + (userInfo.booster_number || ''))">出示券码</button>
- <!-- <button v-if="item.status == 2" class="action-btn btn-base"
- @click.stop="xf(item)">续费</button> -->
- </view>
- </view>
- <uni-load-more :status="ditem.loadingType"></uni-load-more>
- </swiper-item>
- </swiper>
- </scroll-view>
-
-
- </view>
- </template>
- <script>
- import {
- getTime
- } from '@/utils/rocessor.js'
- import {
- mapState
- } from 'vuex'
- import {
- getMyRent
- } from '@/api/user.js'
- export default {
- data() {
- return {
- maxhegiht: '',
- currentIndex: 0,
- navList: [{
- status: 1,
- title: '电池',
- page: 1,
- limit: 10,
- loadingType: 'more',
- loaded: false,
- list: []
- },
- {
- status: 2,
- title: '升压器',
- page: 1,
- limit: 10,
- loadingType: 'more',
- loaded: false,
- list: []
- }
- ]
- }
- },
- onLoad(opt) {
- if (opt.status) {
- this.currentIndex = opt.status
- }
- this.getMyRent()
- },
- onShow() {
- },
- onReachBottom() {
- // this.getMyRent()
- },
- onReady(res) {
- var that = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.list-wrap').boundingClientRect();
- query.exec(function(res) {
- that.maxhegiht = resu.windowHeight - res[0].top + 'px';
- });
- },
- fail: res => {}
- });
- },
- computed: {
- ...mapState('user', ['userInfo']),
- dqtime() {
- return this.userInfo.battery_end_time ? getTime(this.userInfo.battery_end_time) : ''
- },
- dqtimet() {
- return this.userInfo.booster_end_time ? getTime(this.userInfo.booster_end_time) : ''
- }
- },
- methods: {
- tabClick(index) {
- this.currentIndex = index
- this.getMyRent()
- },
- xf() {
- // console.log(item);
- uni.navigateTo({
- url: '/pages/shop/rent?renew=1'
- })
- },
- navTo(url) {
- uni.navigateTo({
- url,
- fail() {
- uni.switchTab({
- url
- })
- }
- })
- },
- moneyNum(val) {
- return (val * 1).toFixed(2)
- },
- getMyRent(type) {
- let that = this
- let index = that.currentIndex;
- let item = that.navList[index]
- if (type == 'tab' && item.loaded) {
- return
- }
- if (item.loadingType == 'loading' || item.loadingType == 'noMore') {
- return
- }
- item.loadingType = 'loading'
- getMyRent({
- page: item.page,
- limit: item.limit,
- status: -1,
- type: item.status==1?'battery':'booster'
- }).then(res => {
- let arr = res.data.list
- item.list = item.list.concat(arr)
- item.page++
- if (arr.length == item.limit) {
- item.loadingType = 'more'
- } else {
- item.loadingType = 'noMore'
- }
- item.loaded = true
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- // padding-top: 20rpx;
- }
- .order-item {
- display: flex;
- flex-direction: column;
- padding-left: 30rpx;
- background:
- margin: 0 $page-row-spacing;
- margin-bottom: 30rpx;
- border-radius: 20rpx;
- padding-bottom: 10rpx;
- .i-top {
- display: flex;
- align-items: center;
- height: 80rpx;
- padding-right: 30rpx;
- font-size: $font-base;
- color: $font-color-dark;
- position: relative;
- .time {
- flex: 1;
- }
- .state {
- color: $base-color;
- }
- .del-btn {
- padding: 10rpx 0 10rpx 36rpx;
- font-size: $font-lg;
- color: $font-color-light;
- position: relative;
- &:after {
- content: '';
- width: 0;
- height: 30rpx;
- border-left: 1px solid $border-color-dark;
- position: absolute;
- left: 20rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- /* 多条商品 */
- .goods-box {
- height: 160rpx;
- padding: 20rpx 0;
- white-space: nowrap;
- .goods-item {
- width: 120rpx;
- height: 120rpx;
- display: inline-block;
- margin-right: 24rpx;
- }
- .goods-img {
- display: block;
- width: 100%;
- height: 100%;
- }
- }
- /* 单条商品 */
- .goods-box-single {
- display: flex;
- padding: 20rpx 0;
- .goods-img {
- display: block;
- width: 170rpx;
- height: 170rpx;
- border-radius: 20rpx;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- padding: 0 30rpx 0 24rpx;
- overflow: hidden;
- .flextop {
- align-items: flex-start;
- line-height: 1.3;
- }
- .row {
- margin-top: 10rpx;
- }
- .row_title {
- padding: 5rpx 10rpx;
- background-color:
- border-radius: 10rpx;
- font-size: 22rpx;
- color:
- }
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- width: 80%;
- min-height: 2rem;
- }
- .attr-box {
- display: flex;
- justify-content: flex-end;
- font-size: $font-sm + 2rpx;
- color: $font-color-light;
- }
- .price {
- display: inline;
- font-size: $font-base + 2rpx;
- color: $font-color-light;
- &:before {
- content: '¥';
- font-size: $font-sm;
- }
- }
- }
- }
- .price-box {
- display: flex;
- justify-content: flex-end;
- align-items: baseline;
- padding: 20rpx 30rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-light;
- .num {
- margin: 0 8rpx;
- color: $font-color-dark;
- }
- .price {
- font-size: $font-lg;
- color: $font-color-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
- margin: 0 2rpx 0 8rpx;
- }
- }
- }
- .action-box {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100rpx;
- position: relative;
- padding-right: 30rpx;
- }
- .action-btn {
- width: 160rpx;
- height: 60rpx;
- margin: 0;
- margin-left: 24rpx;
- padding: 0;
- text-align: center;
- line-height: 60rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-dark;
- background:
- border-radius: 100px;
- &.btn-red {
- color: $color-red;
- border: 1px solid $color-red;
- }
- &.btn-base {
- color: $base-color;
- border: 1px solid $base-color;
- }
- &:after {
- border-radius: 100px;
- }
- &.recom {
- color: $base-color;
- &:after {
- border-color: $base-color;
- }
- }
- &.evaluate {
- color: $color-yellow;
- &:after {
- border-color: $color-yellow;
- }
- }
- }
- }
- .top-tit {
- width: 750rpx;
- background-color: rgba(108, 217, 192, 0.4);
- padding: 10rpx;
- .tit {
- font-size: 28rpx;
- border-radius: 5rpx;
- padding: 10rpx;
- }
- .xf {
- font-size: 32rpx;
- padding-right: 30rpx;
- }
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background:
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- margin-bottom: 20rpx;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: $font-color-dark;
- position: relative;
- &.current {
- color: $base-color;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid $base-color;
- }
- }
- }
- }
- </style>
|