123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281 |
- <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">
- <image class="goods-img" :src="item.image" mode="scaleToFill" @error="imgerror($event,item)"></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 class="action-box b-t" v-if="item.stateTip == '待审核'"><button @click.stop="pay(item)"
- class="action-btn recom">修改凭证</button></view>
- <view class="action-box b-t" v-if="item.stateTip == '待挂售' && tabItem.state != 0">
- <button @click.stop="gsell(item)"
- class="action-btn recom">{{ item.frozen == 0 ? '立即挂售' : '冻结中' }}</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 }">{{ item.stateTip }}</text>
- </view>
- <view class="goods-box-single">
- <image class="goods-img" :src="item.image" mode="scaleToFill" @error="imgerror($event,item)"></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" v-if="!item.status && item.status != 0">
- <text class="attr-box">售卖时间:{{ item.gs_time }}</text>
- </view>
- <view class="row flex" v-if="!item.status && item.status != 0">
- <text class="attr-box">来源:{{ item.nickname }}</text>
- </view>
- <view class="row flex" v-else><text class="attr-box">x1</text></view>
- </view>
- </view>
- <view class="buy-box">
- <view class="buy-info" v-if="item.tabItem != 0 && item.status">
- <view class="font">买家:</view>
- <image v-if="item.avatar" class="avter" :src="item.avatar" mode="scaleToFill" @error="imgerror($event,item,'avatar')"></image>
- <view class="buy-name">{{ item.nickname }}</view>
- <view class="phone">{{ item.phone }}</view>
- </view>
- <view class="buy-info" v-if="item.tabItem != 0 && item.status">
- <view class="font">UID:{{item.uid}}</view>
- </view>
- <view v-if="!item.status && item.status != 0">
- <view class="buy-info">
- <view class="font">挂售价格:{{ item.hanging_price }}</view>
- </view>
- <view class="buy-info">
- <view class="font">挂售时间:{{ item.update_time }}</view>
- </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="scaleToFill" @error="imgerror($event,item,'upload_image')"></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="call(item)"
- class="action-btn recom">联系买家</button></view>
- <view class="action-box b-t" v-if="item.status == 2">
- <button @click.stop="appeal(item)"
- class="action-btn recom">{{ item.appeal == 0 ? '申诉' : '取消申诉' }}</button>
- <button @click.stop="orderPay(item)" class="action-btn recom">通过</button>
- </view>
- <!-- <view class="action-box b-t" v-if="!item.status && item.status != 0"><button
- @click.stop="cancel(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 empty from '@/components/empty';
- import {
- orderList,
- orderCancel,
- orderDel,
- orderTake,
- adopt,
- user_auction_order,
- seller,
- cancel,
- untreated,
- plead,
- revoke
- } from '@/api/order.js';
- import {
- tabbar
- } from '@/utils/tabbar.js';
- export default {
- components: {
- empty
- },
- data() {
- return {
- loading: false, //判断是否在点击
- 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: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '待支付',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 2,
- text: '待审核',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 4,
- text: '待挂售',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- }
- ],
- navList1: [{
- state: 0,
- text: '全部',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 4,
- text: '售卖中',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 1,
- text: '待支付',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- page: 1, //当前页数
- limit: 10 //每次信息条数
- },
- {
- state: 2,
- text: '待审核',
- loadingType: 'more',
- orderList: [],
- isnew: 1, //判断是否有新的订单
- 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();
- this.upData();
- },
- // #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: {
- imgerror(data,item,type=false){
- setTimeout(()=>{
- if(!type){
- item.image = item.image+`?time=${(new Date).getTime()}`
- }else{
- item[type] = item[type]+`?time=${(new Date).getTime()}`
- }
- },1000)
- },
- //顶部tab点击
- tabClick(index, type) {
- if (type == 0) {
- this.tabCurrentIndex = index;
- }
- if (type == 1) {
- this.tabCurrentIndex1 = index;
- }
- },
- toBack() {
- uni.switchTab({
- url: '/pages/order/index'
- });
- },
- navGo(index) {
- this.currentIndex = index;
- console.log(this.currentIndex, '点击');
- this.upData();
- this.loadData('reload');
- },
- // 转换金额为数字
- moneyNum(value) {
- return +value;
- },
- // 订单支付
- pay(item) {
- uni.navigateTo({
- url: '/pages/hall/hallpay?ordid=' + item.order_id + '&type=2'
- });
- },
- // 更新
- upData() {
- untreated().then(({
- data
- }) => {
- console.log(data);
- if (data.user.hanging != 0) {
- this.navList[3].isnew = 2;
- }
- if (data.user.hanging == 0) {
- this.navList[3].isnew = 1;
- }
- if (data.user.paid != 0) {
- this.navList[1].isnew = 2;
- }
- if (data.user.paid == 0) {
- this.navList[1].isnew = 1;
- }
- if (data.user.reviewed != 0) {
- this.navList[2].isnew = 2;
- }
- if (data.user.reviewed == 0) {
- this.navList[2].isnew = 1;
- }
- if (data.seller.reviewed != 0) {
- this.navList1[3].isnew = 2;
- }
- if (data.seller.reviewed == 0) {
- this.navList1[3].isnew = 1;
- }
- });
- },
- // 查看大图
- lookimg(src) {
- console.log(src);
- let arr = [src];
- uni.previewImage({
- current: src,
- urls: arr
- });
- },
- //申诉和取消申诉
- appeal(item) {
- const obj = this;
- if (this.loading) {
- return;
- }
- this.loading = true;
- if (item.appeal == 0) {
- uni.showModal({
- title: '提示',
- content: '提交申诉后会导致画被冻结,是否继续提交申诉',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '申诉中'
- });
- plead({
- order_id: item.order_id
- }).then(e => {
- uni.hideLoading();
- obj.$api.msg('申诉成功');
- obj.loadData('reload');
- obj.loading = false;
- });
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- } else {
- uni.showModal({
- title: '提示',
- content: '提交撤销申诉后会导致画被解冻,是否继续提交取消申诉',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '取消申诉中'
- });
- revoke({
- order_id: item.order_id
- }).then(e => {
- uni.hideLoading();
- obj.$api.msg('取消申诉成功');
- obj.loadData('reload');
- obj.loading = false;
- });
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- }
- },
- //跳转到订单详情
- goToOrderDetail(e) {
- console.log(11);
- uni.navigateTo({
- url: '/pages/order/hallorderDetail?id=' + e.order_id
- });
- },
- gsell(item) {
- if (item.frozen) {
- return this.$api.msg('已冻结,请联系客服或与卖家协商');
- } else {
- uni.navigateTo({
- url: '/pages/hall/gsell?id=' + item.product_id
- });
- }
- },
- //卖家确认订单
- orderPay(e) {
- const obj = this;
- if (this.loading) {
- return;
- }
- uni.showModal({
- title: '提示',
- content: '通过后产品将由对方寄售',
- success: function(res) {
- if (res.confirm) {
- uni.showLoading({
- title: '确认订单中'
- });
- this.loading = true;
- adopt({
- order_id: e.order_id
- }).then(({
- data
- }) => {
- console.log('1111');
- uni.hideLoading();
- obj.loading = false;
- obj.loadData('reload');
- obj.upData();
- });
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- },
- //取消挂售
- cancel(e) {
- const obj = this;
- uni.showModal({
- title: '提示',
- content: '是否取消挂售',
- success: function(res) {
- if (res.confirm) {
- if (obj.loading) {
- return;
- }
- obj.loading = true;
- uni.showLoading({
- title: '取消挂售中'
- });
- cancel({
- id: e.id
- }).then(({
- data
- }) => {
- uni.hideLoading();
- obj.loading = false;
- obj.loadData('reload');
- obj.upData();
- });
- } else if (res.cancel) {}
- }
- });
- },
- //获取订单列表
- 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];
- }
- console.log(source, 'load');
- let state = navItem.state;
- // if ( navItem.loaded === true) {
- // //tab切换只有第一次需要加载数据
- // return;
- // }
- if (navItem.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- if (source == 'reload') {
- navItem.orderList = [];
- navItem.page = 1;
- navItem.limit = 10;
- navItem.loadingType = 'more';
- }
- 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
- }) => {
- let arr = data.map(e => {
- console.log(e);
- if (state == 4) {
- e.stateTip = '待挂售';
- e.stateTipColor = '#fa436a';
- } else {
- if (e.status == 3 && e.is_gs == 0) {
- e.stateTip = '待挂售';
- e.stateTipColor = '#fa436a';
- } else {
- let b = this.orderStateExp(e.status);
- 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) {
- seller({
- type: state,
- page: navItem.page,
- limit: navItem.limit
- })
- .then(({
- data
- }) => {
- console.log(data);
- let arr = data.map(e => {
- if (state == 4) {
- e.stateTip = '售卖中';
- e.stateTipColor = '#fa436a';
- } else {
- if (e.status == 3 && e.appeal == 1) {
- e.stateTip = '冻结中';
- e.stateTipColor = '#fa436a';
- } else {
- 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('reload');
- },
- //删除订单
- 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 //仅为示例
- });
- },
- //订单状态文字和颜色
- 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 undefined:
- stateTip = '待挂售';
- break;
- case 9:
- stateTip = '订单已关闭';
- stateTipColor = '#909399';
- break;
- //更多自定义
- }
- return {
- stateTip,
- stateTipColor
- };
- }
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- font-family: PingFang SC;
- }
- .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-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-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;
- .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: 26rpx;
- font-weight: 500;
- color: #6d7c88;
- }
- .avter {
- margin-left: 10rpx;
- width: 46rpx;
- height: 46rpx;
- border-radius: 50%;
- }
- .buy-name {
- margin-left: 10rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- }
- .phone {
- margin-left: 12rpx;
- font-size: 24rpx;
- 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-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-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>
|