12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 |
- <template>
- <view class="content">
- <view class="order-title">
- <view class="body-title">
- <view class="goback-box" @click="toBack"><image class="goback" src="../../static/icon/fanhui.png" mode=""></image></view>
- <view class="header">我的订单</view>
- </view>
- <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 class="dian" v-if="tabCurrentIndex != index && item.isnew == 2"></view>
- </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 class="dian" v-if="tabCurrentIndex1 != index && item.isnew == 2"></view>
- </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" @click="goToOrderDetail(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" v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
- <image class="goods-img" :src="goodsItem.productInfo.image" mode="scaleToFill"></image>
- <view class="right">
- <view class="flex-start">
- <text class="title clamp">{{ goodsItem.productInfo.store_name }}</text>
- <text class="price">{{ goodsItem.productInfo.price | moneyNum }}</text>
- </view>
- <view class="row flex">
- <text class="row_title">{{ goodsItem.productInfo.attrInfo ? goodsItem.productInfo.attrInfo.suk : '' }}</text>
- <text class="attr-box">x {{ goodsItem.cart_num }}</text>
- </view>
- </view>
- </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" @click="goToOrderDetail(item)">
- <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 ? item.order_id : item.order }}</text>
- <text class="state" :style="{ color: item.stateTipColor }">已出货</text>
- </view>
- <view class="goods-box-single" v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
- <image class="goods-img" :src="goodsItem.productInfo.image" mode="scaleToFill"></image>
- <view class="right">
- <view class="flex-start">
- <text class="title clamp">{{ goodsItem.productInfo.store_name }}</text>
- <text class="price">{{ goodsItem.productInfo.price | moneyNum }}</text>
- </view>
- <view class="row flex">
- <text class="row_title">{{ goodsItem.productInfo.attrInfo ? goodsItem.productInfo.attrInfo.suk : '' }}</text>
- <text class="attr-box">x {{ goodsItem.cart_num }}</text>
- </view>
- </view>
- </view>
- <view class="buy-box">
- <view class="buy-info">
- <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>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- <view class="bottom-box" v-if="currentIndex == 0">
- <view class="bottom-item" @click="navTo('/pages/shop/info')">查看统计</view>
- <view class="bottom-item" @click="navTo('/pages/shop/buy')">我要进货</view>
- </view>
- <view class="bottom-box" v-if="currentIndex == 1"><view class="bottom-item1" @click="navTo('/pages/shop/sale')">我要出货</view></view>
- </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, cancel, untreated, plead, revoke } from '@/api/order.js';
- export default {
- components: {
- uniLoadMore,
- empty
- },
- data() {
- return {
- loading: false, //判断是否在点击
- height: '', //第一层swiper高度
- currentIndex: 0, //当前选中的第一级0为我要买单,1我要卖单
- tabCurrentIndex: 0, //当前选中的第二级别我要买单选中项
- tabCurrentIndex1: 0, //当前选中的第二级别我要卖单选中项
- maiList: [
- {
- title: '我的进货'
- },
- {
- title: '我的出货'
- }
- ],
- navList: [
- {
- state: '',
- text: '全部',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 0,
- text: '待审核',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- // {
- // state: 1,
- // text: '待发货',
- // loadingType: 'more',
- // orderList: [],
- // page: 1, //当前页数
- // limit: 10 //每次信息条数
- // },
- {
- state: 1,
- text: '已完成',
- loadingType: 'more',
- orderList: [],
- page: 1, //当前页数
- limit: 10 //每次信息条数
- }
- ],
- navList1: [
- {
- state: 0,
- 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;
- },
- onShow() {
- this.loadData();
- },
- // #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;
- }
- },
- toBack() {
- uni.switchTab({
- url: '/pages/user/user'
- });
- },
- navGo(index) {
- this.currentIndex = index;
- console.log(this.currentIndex, '点击');
- this.loadData('reload');
- },
- // 转换金额为数字
- moneyNum(value) {
- return +value;
- },
- // 订单支付
- pay(item) {
- uni.navigateTo({
- url: '/pages/hall/hallpay?ordid=' + item.order_id + '&type=2'
- });
- },
- // 查看大图
- lookimg(src) {
- console.log(src);
- let arr = [src];
- uni.previewImage({
- current: src,
- urls: arr
- });
- },
- //跳转到订单详情
- goToOrderDetail(e) {
- console.log(11);
- uni.navigateTo({
- url: '/pages/order/hallorderDetail?id=' + e.order_id
- });
- },
- //获取订单列表
- 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 == 'reload') {
- navItem.orderList = [];
- navItem.page = 1;
- navItem.limit = 10;
- navItem.loadingType = 'more';
- }
- // if ( navItem.loaded === true) {
- // //tab切换只有第一次需要加载数据
- // return;
- // }
- if (navItem.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- if (navItem.loadingType === 'noMore') {
- //防止重复加载
- return;
- }
- // 修改当前对象状态为加载中
- navItem.loadingType = 'loading';
- if (this.currentIndex == 0) {
- orderList({
- type: state,
- page: navItem.page,
- limit: navItem.limit,
- purchase: 1
- })
- .then(({ data }) => {
- let arr = data.map(e => {
- console.log(e);
- let b = this.orderStateExp(e.paid);
- e.stateTip = b.stateTip;
- e.stateTipColor = b.stateTipColor;
- return e;
- });
- console.log(arr, '123456');
- 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) {
- orderList({
- // type: state,
- page: navItem.page,
- limit: navItem.limit,
- purchase: 2
- })
- .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);
- },
- //取消订单
- call(item) {
- console.log(item.phone);
- uni.makePhoneCall({
- phoneNumber: item.phone //仅为示例
- });
- },
- navTo(url) {
- uni.navigateTo({
- url
- });
- },
- //订单状态文字和颜色
- orderStateExp(state) {
- let stateTip = '',
- stateTipColor = '#fa436a';
- switch (+state) {
- case 0:
- stateTip = '待审核';
- break;
- case 1:
- stateTip = '已完成';
- break;
- }
- return {
- stateTip,
- stateTipColor
- };
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- }
- .order-title {
- width: 750rpx;
- height: 270rpx;
- background: url(../../static/img/order99.png) repeat-x 0;
- display: flex;
- flex-direction: column;
- // padding: 50rpx 0;
- text-align: center;
- .body-title {
- height: 80rpx;
- text-align: center;
- font-size: 35rpx;
- position: relative;
- .header {
- position: absolute;
- left: 0;
- top: 30rpx;
- width: 100%;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #fffeff;
- height: 80rpx;
- font-size: 36rpx;
- font-weight: 700;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .goback-box {
- position: absolute;
- left: 18rpx;
- top: 30rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- }
- .goback {
- z-index: 100;
- width: 34rpx;
- height: 34rpx;
- }
- }
- text {
- margin: 30px 0;
- font-size: 17px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #ffffff;
- }
- .roder-content {
- margin-top: 80rpx;
- 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;
- }
- .current {
- color: #54320b;
- 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;
- .dian {
- position: absolute;
- top: 20rpx;
- right: 10rpx;
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color: $base-color;
- }
- &.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 {
- padding: 10rpx 22rpx;
- background-color: #ffffff;
- .buy-info {
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- .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% - 275px);
- }
- .bottom-box {
- width: 750rpx;
- height: 200rpx;
- background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
- padding: 68rpx 38rpx 0;
- display: flex;
- justify-content: space-between;
- .bottom-item {
- width: 328rpx;
- height: 88rpx;
- background: #ecd0a9;
- border-radius: 44rpx;
- font-size: 36rpx;
- text-align: center;
- font-family: PingFang SC;
- font-weight: 500;
- color: #54320b;
- line-height: 88rpx;
- }
- .bottom-item1 {
- width: 674rpx;
- height: 88rpx;
- background: #ecd0a9;
- border-radius: 44rpx;
- font-size: 36rpx;
- text-align: center;
- font-family: PingFang SC;
- font-weight: 500;
- color: #54320b;
- line-height: 88rpx;
- }
- }
- </style>
|