1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021 |
- <template>
- <view class="content">
- <view class="order-title">
- <text>我的订单</text>
- <view class="roder-content">
- <view class="left" :class="{ current: currentIndex === index }" :key="index" v-for="(item, index) in maiList" @click="navGo(index)">{{ item.title }}</view>
- </view>
- </view>
- <view class="navbar" v-show="currentIndex == 0">
- <view v-for="(item, index) in navList" :key="index" class="nav-item" :class="{ current: tabCurrentIndex === index }" @click="tabClick(index, 0)">{{ item.text }}</view>
- </view>
- <view class="navbar" v-show="currentIndex == 1">
- <view v-for="(item, index) in navList1" :key="index" class="nav-item" :class="{ current: tabCurrentIndex1 === index }" @click="tabClick(index, 1)">
- {{ item.text }}
- </view>
- </view>
- <swiper :current="currentAuto" class="swiper-box-one" duration="0" @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex" v-if="currentIndex == 0">
- <scroll-view class="list-scroll-content" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
- <!-- 订单列表 -->
- <view v-for="(item, index) in tabItem.orderList" :key="index" class="order-item">
- <view class="i-top b-b">
- <text class="time">{{ item.order_id }}</text>
- <text class="state" :style="{ color: item.stateTipColor }">{{ item.stateTip }}</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="item.image" mode="aspectFill"></image>
- <view class="right">
- <text class="title clamp">{{ item.name }}</text>
- <text class="attr-box">x1</text>
- <text class="price">{{ moneyNum(item.price) }}</text>
- </view>
- </view>
- <view class="price-box">
- 共
- <text class="num">1</text>
- 件商品 邮费
- <text class="price">0</text>
- 实付款
- <text class="price">{{ moneyNum(item.price) }}</text>
- </view>
- <view class="action-box b-t" v-if="item.stateTip == '待支付'"><button @click.stop="pay(item)" class="action-btn recom">立即支付</button></view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList1" :key="tabIndex" v-if="currentIndex == 1">
- <scroll-view class="list-scroll-content" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
- <!-- 订单列表 -->
- <view v-for="(item, index) in tabItem.orderList" :key="index" class="order-item">
- <view class="i-top b-b">
- <text class="time">{{ item.order_id }}</text>
- <text class="state" :style="{ color: item.stateTipColor }">{{ item.stateTip }}</text>
- </view>
- <view class="goods-box-single">
- <image class="goods-img" :src="item.image" mode="scaleToFill"></image>
- <view class="right">
- <view class="flex-start">
- <text class="title clamp">{{ item.name }}</text>
- <text class="price">{{ item.price | moneyNum }}</text>
- </view>
- <view class="row flex"><text class="attr-box">x1</text></view>
- </view>
- </view>
- <view class="buy-box">
- <view class="buy-info" v-if="item.status != 0">
- <view class="font">买家:</view>
- <image class="avter" :src="item.avatar" mode=""></image>
- <view class="buy-name">{{ item.nickname }}</view>
- <view class="phone">{{item.phone}}</view>
- </view>
- </view>
- <view class="upimg" v-if="item.status == 2 || item.status == 3">
- <view class="up-tit">打款凭证:</view>
- <view class="img-wrap" v-if="item.upload_image" @click="lookimg(item.upload_image)"><image :src="item.upload_image" mode=""></image></view>
- <view class="" style="color: #0F253A;font-weight: bold;font-size: 26rpx;" v-else>买家未上传支付凭证</view>
- </view>
- <view class="action-box b-t" v-if="item.status == 1"><button @click.stop="orderPay(item)" class="action-btn recom">联系买家</button></view>
- <view class="action-box b-t" v-if="item.status == 2">
- <!-- <button @click.stop="orderPay(item)" class="refuse recom">拒绝</button> -->
- <button @click.stop="orderPay(item)" class="action-btn recom">通过</button>
- </view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- <!-- <u-tabbar activeColor="#f42b4e" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar> -->
- </view>
- </template>
- <script>
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import empty from '@/components/empty';
- import { orderList, orderCancel, orderDel, orderTake, adopt, user_auction_order, seller } from '@/api/order.js';
- import { tabbar } from '@/utils/tabbar.js';
- export default {
- components: {
- uniLoadMore,
- empty
- },
- data() {
- return {
- height: '', //第一层swiper高度
- tabbar: tabbar,
- current: 1, //底部tabar选中的icon对象
- currentIndex: 0, //当前选中的第一级0为我要买单,1我要卖单
- tabCurrentIndex: 0, //当前选中的第二级别我要买单选中项
- tabCurrentIndex1: 0, //当前选中的第二级别我要卖单选中项
- maiList: [
- {
- title: '我的买单'
- },
- {
- title: '我的卖单'
- }
- ],
- navList: [
- {
- state: 0,
- text: '已过期',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '待支付',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 2,
- text: '待审核',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 3,
- text: '已完成',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- }
- ],
- navList1: [
- {
- state: 0,
- text: '已过期',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '待支付',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 2,
- text: '待审核',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 3,
- text: '已完成',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- }
- ]
- };
- },
- computed: {
- currentAuto() {
- if (this.currentIndex == 0) {
- return this.tabCurrentIndex;
- }
- if (this.currentIndex == 1) {
- return this.tabCurrentIndex1;
- }
- }
- },
- onLoad(options) {
- /**
- * 修复app端点击除全部订单外的按钮进入时不加载数据的问题
- * 替换onLoad下代码即可
- */
- this.tabCurrentIndex = +options.state || 0;
- // #ifndef MP
- this.loadData();
- // #endif
- // #ifdef MP
- if (options.state == 0) {
- this.loadData();
- }
- // #endif
- },
- // #ifdef APP-PLUS || H5
- onBackPress(e) {
- uni.switchTab({
- url: '/pages/user/user'
- });
- return true;
- },
- // #endif
- filters: {
- moneyNum(value) {
- return +value;
- }
- },
- // 页面加载完获取swiper高度
- onReady(res) {
- var obj = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.swiper-box-one').boundingClientRect();
- query.exec(function(res) {
- console.log(res, 'ddddddddddddd');
- obj.height = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', obj.height);
- });
- },
- fail: res => {}
- });
- },
- methods: {
- //顶部tab点击
- tabClick(index, type) {
- if (type == 0) {
- this.tabCurrentIndex = index;
- }
- if (type == 1) {
- this.tabCurrentIndex1 = index;
- }
- },
- navGo(index) {
- this.currentIndex = index;
- console.log(this.currentIndex, '点击');
- this.loadData();
- },
- // 转换金额为数字
- moneyNum(value) {
- return +value;
- },
- // 查看大图
- lookimg(src) {
- console.log(src);
- let arr = [src]
- uni.previewImage({
- current: src,
- urls: arr
- });
- },
- // 确认收货
- orderTake(item, index) {
- let obj = this;
- uni.showModal({
- title: '是否确认收货?',
- success: () => {
- orderTake({
- uni: item.order_id
- })
- .then(e => {
- obj.navList[obj.tabCurrentIndex].orderList.splice(index, 1);
- uni.showToast({
- title: '收货成功'
- });
- })
- .catch(e => {
- console.log(e);
- });
- }
- });
- },
- //跳转到订单详情
- goToOrderDetail(e) {
- uni.navigateTo({
- url: '/pages/order/orderDetail?id=' + e.order_id
- });
- },
- // 申请退款
- orderRefund(e) {
- uni.navigateTo({
- url: '/pages/order/orderRefund?id=' + e.order_id
- });
- },
- // 订单支付
- pay(item) {
- uni.navigateTo({
- url:'/pages/hall/hallpay?ordid='+item.order_id
- })
- },
- orderPay(e) {
- console.log(e);
- adopt({order_id: e.order_id}).then(({data}) =>{
- this.loadData()
- })
- },
- //获取订单列表
- loadData(source) {
- //这里是将订单挂载到tab列表下
- let index, navItem;
- if (this.currentIndex == 0) {
- index = this.tabCurrentIndex;
- navItem = this.navList[index];
- }
- if (this.currentIndex == 1) {
- index = this.tabCurrentIndex1;
- navItem = this.navList1[index];
- }
- let state = navItem.state;
- if (source === 'tabChange' && navItem.loaded === true) {
- //tab切换只有第一次需要加载数据
- return;
- }
- if (navItem.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- if (navItem.loadingType === 'noMore') {
- //防止重复加载
- return;
- }
- // 修改当前对象状态为加载中
- navItem.loadingType = 'loading';
- if (this.currentIndex == 0) {
- user_auction_order({
- type: state,
- page: navItem.page,
- limit: navItem.limit
- })
- .then(({ data }) => {
- console.log(data);
- let arr = data.map(e => {
- let b = this.orderStateExp(e.status);
- e.stateTip = b.stateTip;
- e.stateTipColor = b.stateTipColor;
- return e;
- });
- navItem.orderList = navItem.orderList.concat(arr);
- // console.log(navItem.orderList);
- navItem.page++;
- if (navItem.limit == data.length) {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'more';
- return;
- } else {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'noMore';
- }
- uni.hideLoading();
- this.$set(navItem, 'loaded', true);
- })
- .catch(e => {
- console.log(e);
- });
- }
- if (this.currentIndex == 1) {
- seller({
- type: state,
- page: navItem.page,
- limit: navItem.limit
- })
- .then(({ data }) => {
- console.log(data);
- let arr = data.map(e => {
- let b = this.orderStateExp(e.status);
- e.stateTip = b.stateTip;
- e.stateTipColor = b.stateTipColor;
- return e;
- });
- navItem.orderList = navItem.orderList.concat(arr);
- // console.log(navItem.orderList);
- navItem.page++;
- if (navItem.limit == data.length) {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'more';
- return;
- } else {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'noMore';
- }
- uni.hideLoading();
- this.$set(navItem, 'loaded', true);
- })
- .catch(e => {
- console.log(e);
- });
- }
- },
- //swiper 切换
- changeTab(e) {
- if (this.currentIndex == 0) {
- this.tabCurrentIndex = e.target.current;
- }
- if (this.currentIndex == 1) {
- this.tabCurrentIndex1 = e.target.current;
- }
- this.loadData('tabChange');
- },
- //删除订单
- deleteOrder(index) {
- uni.showLoading({
- title: '请稍后'
- });
- setTimeout(() => {
- this.navList[this.tabCurrentIndex].orderList.splice(index, 1);
- uni.hideLoading();
- }, 600);
- },
- //取消订单
- cancelOrder(item) {
- uni.showModal({
- title: '订单取消',
- content: '是否取消订单?',
- success: e => {
- if (e.confirm) {
- uni.showLoading({
- title: '请稍后'
- });
- orderCancel({
- id: item.order_id
- })
- .then(e => {
- uni.showToast({
- title: '取消成功',
- duration: 2000,
- position: 'top'
- });
- })
- .catch(e => {
- console.log(e);
- });
- //取消订单后删除待付款中该项
- let list = this.navList[this.tabCurrentIndex].orderList;
- let index = list.findIndex(val => val.id === item.id);
- index !== -1 && list.splice(index, 1);
- uni.hideLoading();
- }
- }
- });
- },
- //订单状态文字和颜色
- orderStateExp(state) {
- let stateTip = '',
- stateTipColor = '#fa436a';
- switch (+state) {
- case 0:
- stateTip = '已过期';
- break;
- case 1:
- stateTip = '待支付';
- break;
- case 2:
- stateTip = '待审核';
- break;
- case 3:
- stateTip = '已完成';
- break;
- case 9:
- stateTip = '订单已关闭';
- stateTipColor = '#909399';
- break;
- //更多自定义
- }
- return {
- stateTip,
- stateTipColor
- };
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- }
- .order-title {
- width: 750rpx;
- height: 135px;
- // background: linear-gradient(-41deg, rgba(60, 237, 237, 0.99), #04B8FF, #375AFE);
- background: url(../../static/img/order99.png) repeat-x 0;
- display: flex;
- flex-direction: column;
- // padding: 50rpx 0;
- text-align: center;
- text {
- margin: 30px 0;
- font-size: 17px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- }
- .roder-content {
- display: flex;
- justify-content: space-around;
- .left {
- width: 168px;
- height: 40px;
- line-height: 40px;
- border: 1px solid #ffffff;
- border-radius: 5px;
- text-align: center;
- font-size: 15px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- background: #dc262b;
- }
- .current {
- color: #dc262b;
- background: #ffffff;
- }
- }
- }
- .swiper-box {
- background: red;
- }
- .list-scroll-content {
- height: 100%;
- }
- .uni-swiper-item {
- height: auto;
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- .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;
- }
- }
- }
- }
- .order-item {
- display: flex;
- flex-direction: column;
- background: #fff;
- margin-top: 16rpx;
- .i-top {
- display: flex;
- align-items: center;
- height: 80rpx;
- font-size: $font-base;
- color: $font-color-dark;
- position: relative;
- padding: 0 30rpx;
- .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 30rpx;
- background: #f7f7f7;
- .goods-img {
- display: block;
- width: 120rpx;
- height: 120rpx;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- padding: 0 0 0 24rpx;
- overflow: hidden;
- .row {
- margin-top: 10rpx;
- }
- .row_title {
- padding: 5rpx 10rpx;
- background-color: #dddddd;
- border-radius: 10rpx;
- font-size: 22rpx;
- color: #ffffff;
- }
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- line-height: 1;
- width: 80%;
- }
- .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-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
- }
- }
- }
- }
- .buy-box {
- height: 84rpx;
- padding: 0 22rpx;
- background-color: #ffffff;
- .buy-info {
- height: 100%;
- display: flex;
- align-items: center;
- .font {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .avter {
- margin-left: 10rpx;
- width: 46rpx;
- height: 46rpx;
- border-radius: 50%;
- }
- .buy-name {
- margin-left: 10rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .phone {
- margin-left: 12rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- .upimg {
- padding-left: 20rpx;
- padding-top: 10rpx;
- padding-bottom: 10rpx;
- display: flex;
- .up-tit {
- display: inline-block;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #6d7c88;
- }
- .img-wrap {
- width: 153rpx;
- height: 152rpx;
- border-radius: 20rpx;
- image {
- border-radius: 20rpx;
- width: 153rpx;
- height: 152rpx;
- background-color: #ccc;
- }
- }
- }
- .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 {
- padding: 0 30rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100rpx;
- position: relative;
- }
- .refuse {
- margin: 0;
- padding: 0;
- width: 160rpx;
- height: 60rpx;
- border: 2rpx solid #ebebeb;
- border-radius: 28rpx;
- text-align: center;
- line-height: 60rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- &:after {
- border-radius: 100px;
- }
- &.recom {
- color: #999999;
- &:after {
- border-color: #999999;
- }
- }
- }
- .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: #fff;
- border-radius: 100px;
- border: 2rpx solid #fd3b39;
- border-radius: 28px;
- &:after {
- border-radius: 100px;
- }
- &.recom {
- color: $base-color;
- &:after {
- border-color: $base-color;
- }
- }
- &.evaluate {
- color: $color-yellow;
- &:after {
- border-color: $color-yellow;
- }
- }
- }
- }
- /* load-more */
- .uni-load-more {
- display: flex;
- flex-direction: row;
- height: 80rpx;
- align-items: center;
- justify-content: center;
- }
- .uni-load-more__text {
- font-size: 28rpx;
- color: #999;
- }
- .uni-load-more__img {
- height: 24px;
- width: 24px;
- margin-right: 10px;
- }
- .uni-load-more__img > view {
- position: absolute;
- }
- .uni-load-more__img > view view {
- width: 6px;
- height: 2px;
- border-top-left-radius: 1px;
- border-bottom-left-radius: 1px;
- background: #999;
- position: absolute;
- opacity: 0.2;
- transform-origin: 50%;
- animation: load 1.56s ease infinite;
- }
- .uni-load-more__img > view view:nth-child(1) {
- transform: rotate(90deg);
- top: 2px;
- left: 9px;
- }
- .uni-load-more__img > view view:nth-child(2) {
- transform: rotate(180deg);
- top: 11px;
- right: 0;
- }
- .uni-load-more__img > view view:nth-child(3) {
- transform: rotate(270deg);
- bottom: 2px;
- left: 9px;
- }
- .uni-load-more__img > view view:nth-child(4) {
- top: 11px;
- left: 0;
- }
- .load1,
- .load2,
- .load3 {
- height: 24px;
- width: 24px;
- }
- .load2 {
- transform: rotate(30deg);
- }
- .load3 {
- transform: rotate(60deg);
- }
- .load1 view:nth-child(1) {
- animation-delay: 0s;
- }
- .load2 view:nth-child(1) {
- animation-delay: 0.13s;
- }
- .load3 view:nth-child(1) {
- animation-delay: 0.26s;
- }
- .load1 view:nth-child(2) {
- animation-delay: 0.39s;
- }
- .load2 view:nth-child(2) {
- animation-delay: 0.52s;
- }
- .load3 view:nth-child(2) {
- animation-delay: 0.65s;
- }
- .load1 view:nth-child(3) {
- animation-delay: 0.78s;
- }
- .load2 view:nth-child(3) {
- animation-delay: 0.91s;
- }
- .load3 view:nth-child(3) {
- animation-delay: 1.04s;
- }
- .load1 view:nth-child(4) {
- animation-delay: 1.17s;
- }
- .load2 view:nth-child(4) {
- animation-delay: 1.3s;
- }
- .load3 view:nth-child(4) {
- animation-delay: 1.43s;
- }
- @-webkit-keyframes load {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0.2;
- }
- }
- .swiper-box-one {
- height: calc(100% - 175px);
- }
- </style>
|