123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 |
- <template>
- <view class="pagesCons">
- <view class="tab-body">
- <view class="uTabs">
- <u-tabs-swiper ref="uTabs" :list="tabList" name="dispName" :current="current" @change="tabsChange" :is-scroll="false"
- swiperWidth="750"></u-tabs-swiper>
- </view>
- <swiper class="check-list" :current="swiperCurrent" @transition="transition" @change="swiperChange" @animationfinish="animationfinish">
- <swiper-item class="swiper-item" v-for="(tabs, index) in tabList" :key="index">
- <scroll-view scroll-y class="scroll-view" @scrolltolower="onreachBottom">
- <view class="check-order-list" v-if="index==current" v-for="(item,sindex) in list" :key="item.id+'-'+sindex"
- @click="viewRow(item)">
- <view class="check-row">
- <view class="createDate">{{item.createDate}}</view>
- <view >{{item.orderFlag}}</view>
- </view>
- <view class="bundle-list" v-for="row in item.itemList" :key="row.id">
- <view class="img-cont">
- <image :src="row.icon?row.icon:'../../static/tabbar/user.png'"></image>
- </view>
- <view >
- <view class="ellipsis-two">{{row.name}}</view>
- <view class="bundle-num">
- <view ><b class="price-num">{{row.price}}</b> <text class="price-text">乐豆</text></view>
- <view >X {{row.number}}</view>
- </view>
- </view>
- </view>
- <view class="check-row">
- <view class="text-right">
- <text class="total-text">
- 共{{item.totalNum}}件商品
- </text>
- <text v-if="item.orderFlag=='待支付'"><text class="money-total">应付</text><b class="price-num">{{item.amount}}</b> <text class="price-text">乐豆</text></text>
- <text v-else><text class="money-total">实付</text><b class="price-num">{{item.payedAmount}}</b> <text class="price-text">乐豆</text></text>
- </view>
- </view>
- <view class="check-row">
- <view v-if="item.orderFlag=='待支付'" class="text-right">
- <text style="margin-right: 30upx;">支付剩余1天45分</text>
- <u-button class="btn-cont" shape="circle" type="warning" size="medium">去支付</u-button>
- </view>
- <view v-if="item.orderFlag=='待发货'" class="text-right">
- <u-button class="btn-cont" shape="circle" size="medium">提醒发货</u-button>
- </view>
- <view v-if="item.orderFlag=='已发货'" class="text-right">
- <u-button @click="showLog(item)" class="btn-cont" style="margin-right: 20upx;" shape="circle" size="medium">查看物流</u-button>
- <u-button class="btn-cont" shape="circle" type="primary" size="medium">确认收货</u-button>
- </view>
- <view v-if="item.orderFlag=='已完成'" class="text-right">
- <u-button @click="showLog(item)" class="btn-cont" shape="circle" size="medium">查看物流</u-button>
- </view>
- </view>
- </view>
- <u-empty style="padding-top: 10vh;height: auto;" :text="noDataText" img-width="120" v-if="list.length==0 && status!='loading'"
- mode="list"></u-empty>
- <view v-if="index==current" style="padding: 20upx;">
- <u-loadmore v-if="total>pageSize || status=='loading'" :status="status" />
- </view>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- <!-- 查看物流弹窗 -->
- <view>
- <u-modal v-model="isShow" :show-title="false" confirm-text="好的">
- <view class="slot-content">
- <view>
- 快递公司:{{logData.logName}}
- </view>
- <view>
- 运单编号:{{logData.logNum}}
- <u-button @click="copyLogNum" style="margin-left: 20upx;" shape="square" size="mini">复制</u-button>
- </view>
- </view>
- </u-modal>
- </view>
- </view>
- </template>
- <script>
- import {
- getLookUpDatas,
- listLookUp
- } from '@/api/data'
- export default {
- components: {
- },
- data() {
- return {
- isShow: false, // 是否显示物流弹框
- status: 'loadmore',
- noDataText: '暂无数据',
- tabList: [
- {
- dispName: '全部',
- typeId: 2,
- queryLabel: 'ALL' // tab参数
- },
- {
- dispName: '待支付',
- typeId: 1,
- queryLabel: 'DZF' // tab参数
- },
- {
- dispName: '待发货',
- typeId: 3,
- queryLabel: 'DFH' // tab参数
- },
- {
- dispName: '已发货',
- typeId: 3,
- queryLabel: 'YFH' // tab参数
- },
- {
- dispName: '已完成',
- typeId: 3,
- queryLabel: 'YWC' // tab参数
- },
-
- ],
- current: 0,
- swiperCurrent: 0,
- pageNo: 1,
- pageSize: 10,
- list: [],
- logData: { // 物流信息
- logName: '韵达快递',
- logNum: 12356544544
- },
- total: 0,
- action: 'swiperChange', // 操作类型,上划分页,或左右滑动
- }
- },
- onLoad() {
- // 监听待办处理后刷新
- uni.$on('refreshBl-handle', this.handleRefresh)
- this.pageInit()
- },
- onUnload() {
- uni.$off('refreshBL', this.refresh)
- uni.$off('refreshBl-handle', this.handleRefresh)
- },
- methods: {
- pageInit() {
- this.sortIndex = 1
- this.pageNo = 1
- this.getRow()
- },
- handleRefresh() {
- this.getRow()
- },
- // tabs通知swiper切换
- tabsChange(index) {
- this.swiperCurrent = index;
- },
- swiperChange(event) {
- this.action = 'swiperChange'
- this.status = 'loading'
- },
- // swiper-item左右移动,通知tabs的滑块跟随移动
- transition(e) {
- let dx = e.detail.dx;
- this.$refs.uTabs.setDx(dx);
- },
- // 由于swiper的内部机制问题,快速切换swiper不会触发dx的连续变化,需要在结束时重置状态
- // swiper滑动结束,分别设置tabs和swiper的状态
- animationfinish(e) {
- let current = e.detail.current;
- let isCurtab = this.current == current
- if (this.status != "nomore") {
- let loadData = this.action == 'swiperChange' ? !isCurtab : isCurtab;
- if (loadData) {
- this.$refs.uTabs.setFinishCurrent(current);
- this.swiperCurrent = current;
- this.current = current;
- this.resetPage();
- }
- }
- },
- // scroll-view到底部加载更多
- onreachBottom() {
- this.action = 'onreachBottom'
- if (this.list.length < this.total) {
- this.pageNo += 1
- this.getRow()
- } else {
- uni.showToast({
- title: '已经到底了',
- icon: 'none'
- });
- this.status = "nomore"
- }
- },
- // 查询列表
- getRow(pageNo) {
- this.status = "loadmore"
- this.list = [{
- createDate: "2020-10-28 11:15:59",
- orderFlag: "待支付",
- payedAmount: 0,
- id: 11,
- amount: 450,
- totalNum: 3,
- itemList: [
- {
- name: "八九箭冠",
- id: 76435,
- number: 1,
- price: 150,
- icon: ''
- },
- {
- name: "数据库的合法身份觉得很附近发生纠纷解决",
- id: 76436,
- number: 2,
- price: 150,
- icon: ''
- }
- ]
- },{
- createDate: "2020-10-29 11:15:59",
- orderFlag: "待发货",
- payedAmount: 300,
- id: 112,
- amount: 300,
- totalNum: 2,
- itemList: [
- {
- name: "捐款事件的看法教科书上的发货角度思考JFK就是的JFK即将开放的",
- id: 76440,
- number: 2,
- price: 150,
- icon: ''
- }
- ]
- },{
- createDate: "2020-10-29 11:15:59",
- orderFlag: "已发货",
- payedAmount: 300,
- id: 1112,
- amount: 300,
- totalNum: 2,
- itemList: [
- {
- name: "捐款事件的看法教科书上的发货角度思考JFK就是的JFK即将开放的",
- id: 76420,
- number: 2,
- price: 150,
- icon: ''
- }
- ]
- },{
- createDate: "2020-10-29 11:15:59",
- orderFlag: "已完成",
- payedAmount: 300,
- id: 1126,
- amount: 300,
- totalNum: 2,
- itemList: [
- {
- name: "捐款事件的看法教科书上的发货角度思考JFK就是的JFK即将开放的",
- id: 76496,
- number: 2,
- price: 150,
- icon: ''
- }
- ]
- }]
- return
- if (pageNo) {
- this.pageNo = pageNo
- }
- let params = {
- pageNo: this.pageNo,
- pageSize: this.pageSize,
- queryLabel: this.tabList[this.current].queryLabel, // tab分类
- }
- this.status = "loading"
- getBackLogList(params).then(res => {
- if (res.status == 200) {
- if (this.pageNo > 1) {
- this.list = this.list.concat(res.data.list || [])
- } else {
- this.list = res.data.list || []
- }
- this.total = res.data.count || 0
- } else {
- this.list = []
- this.total = 0
- this.noDataText = res.message
- }
- this.status = "loadmore"
- })
- },
- resetPage() {
- this.status = 'loading';
- // 上划分页
- if (this.action == 'onreachBottom') {
- this.getRow();
- }
- // 左右切换tab
- if (this.action == 'swiperChange') {
- this.list = [];
- this.getRow(1);
- }
- },
- // 获取查询参数 刷新列表
- refresh(params) {
- // console.log(params,'1111111111')
- this.searchParams = params
- this.getRow(1)
- },
- // 查看物流
- showLog (item) {
- this.isShow = true
- },
- // 复制运单编号
- copyLogNum () {
- // H5 不支持
- uni.setClipboardData({
- data: this.logData.logNum,
- success: function(res) {
- uni.getClipboardData({
- success: function(res) {
- uni.showToast({
- title: '已复制到剪贴板'
- });
- }
- });
- }
- })
- },
- // 详细页
- viewRow(item) {
- // if (!this.$hasPermissions('M_backlog_detail_mobile')) {
- // return
- // }
- // 已完成的
- uni.navigateTo({
- url: "/pages/order/orderDetail?id=" + item.id
- })
- },
- }
- }
- </script>
- <style lang="scss">
- page {
- height: 100%;
- width: 100%;
- background: #F8F8F8;
- }
- .pagesCons {
- height: 100%;
- width: 100%;
- background: #F8F8F8;
- display: flex;
- flex-direction: column;
- .text-right {
- text-align: right;
- }
- .tab-body {
- flex: 1;
- display: flex;
- flex-direction: column;
- .uTabs {
- border-bottom: 1px solid #EEEEEE;
- box-shadow: 1px 1px 3px #eeeeee;
- }
- .check-list {
- flex: 1;
- overflow-y: scroll;
- .swiper-item {
- width: 100%;
- height: 100%;
- overflow: hidden;
- .scroll-view {
- width: 100%;
- height: 100%;
- overflow: auto;
- }
- }
- }
- // 列表样式
- .check-order-list {
- background: #ffffff;
- padding: 10upx 20upx;
- margin: 25upx;
- border-radius: 6upx;
- box-shadow: 1px 1px 3px #EEEEEE;
- font-size: 28upx;
- .check-row {
- display: flex;
- align-items: center;
- padding: 20upx 10upx;
- .icon-xian {
- text-align: right;
- width: 40upx;
- }
- &:first-child {
- border-bottom: 1px dashed #F8F8F8;
- .createDate {
- color: #666;
- font-size: 26upx;
- margin-left: 10upx;
- }
- }
- &:last-child {
- border-top: 1px dashed #F8F8F8;
- }
- >view {
- &:first-child {
- flex: 1;
- }
- }
- }
- // 订单中商品列表
- .bundle-list {
- display: flex;
- padding: 20upx 10upx;
- font-size: 28upx;
- .img-cont {
- width: 160upx;
- height: 160upx;
- >image {
- width: 100%;
- height: 100%;
- }
- }
- >view {
- &:last-child {
- padding: 10upx 0;
- flex: 1;
- margin-left: 20upx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- }
- .bundle-num {
- display: flex;
- justify-content: space-between;
- }
- }
- .btn-cont {
- width: 180upx;
- font-size: 30upx;
- }
- .price-text{
- font-size: 20upx;
- margin-left: 10upx;
- }
- .price-num{
- font-size: 32upx;
- }
- .total-text{
- margin-right: 50upx;
- }
- .money-total{
- margin-right: 10upx;
- }
- }
- }
- // 物流弹窗
- .slot-content {
- padding: 40upx 60upx;
- font-size: 28upx;
- >view{
- line-height: 60upx;
- }
- }
- }
- </style>
|