123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <template>
- <view class="pagesCons">
- <view class="tab-body">
- <scroll-view scroll-y class="scroll-view" @scrolltolower="onreachBottom">
- <view class="check-order-list" v-for="(item,sindex) in list" :key="item.id"
- @click="viewRow(item)">
- <view class="order-log">
- <view v-if="item.orderFlag=='待发货'">待发货</view>
- <view>
- <view>
- 快递公司:<text class="address-title">{{item.logName}}</text>
- <text class="btn-cont" @click="copyLogNum" style="float: right;">确认收货</text>
- </view>
- <view>
- <text>运单编号:</text>
- <text>{{item.logNum}}</text>
- <u-button @click="copyLogNum" style="margin-left: 20upx;" shape="square" size="mini">复制</u-button>
- </view>
- </view>
- </view>
- <u-gap height="10" bg-color="#f8f8f8"></u-gap>
- <view class="bundle-list" v-for="row in item.itemList" :key="row.id">
- <view class="img-cont">
- <image :src="row.icon?row.icon:'../../static/goods.png'"></image>
- </view>
- <view >
- <view class="ellipsis-two">{{row.name}}</view>
- <view class="bundle-num">
- <view ><text class="price-num">{{row.price}}</text> <text class="price-text">乐豆</text></view>
- <view >X {{row.number}}</view>
- </view>
- </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 style="padding: 20upx;">
- <u-loadmore v-if="total>pageSize || status=='loading'" :status="status" />
- </view>
- </scroll-view>
- </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 { queryOrderExpress } from '@/api/order.js'
- export default {
- components: {
- },
- data() {
- return {
- isShow: false, // 是否显示物流弹框
- status: 'loadmore',
- noDataText: '暂无数据',
- current: 0,
- swiperCurrent: 0,
- pageNo: 1,
- pageSize: 10,
- list: [],
- logData: { // 物流信息
- logName: '韵达快递',
- logNum: 12356544544
- },
- total: 0,
- action: 'swiperChange', // 操作类型,上划分页,或左右滑动
- }
- },
- onLoad() {
- 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()
- },
- // 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,
- logName: '韵达快递',
- logNum: '12454545485',
- itemList: [
- {
- name: "八九箭冠",
- id: 76435,
- number: 1,
- price: 150,
- icon: ''
- },
- {
- name: "数据库的合法身份觉得很附近发生纠纷解决",
- id: 76436,
- number: 2,
- price: 150,
- icon: ''
- }
- ]
- },
- {
- createDate: "2020-10-28 11:15:59",
- orderFlag: "待支付",
- payedAmount: 0,
- id: 12,
- amount: 450,
- totalNum: 3,
- logName: '韵达快递',
- logNum: '12454545485',
- itemList: [
- {
- name: "八九箭冠",
- id: 76435,
- number: 1,
- price: 150,
- icon: ''
- },
- {
- name: "数据库的合法身份觉得很附近发生纠纷解决",
- id: 76436,
- 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)
- },
-
- // 复制运单编号
- 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;
- border-bottom: 1px solid #F8F8F8;
- &:last-child {
- border-bottom: none;
- }
- .img-cont {
- width: 160upx;
- height: 160upx;
- >image {
- width: 100%;
- height: 100%;
- }
- }
- >view {
- &:last-child {
- 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;
- height: 60upx;
- float: right;
- background-color: #2979ff;
- color: #fff;
- text-align: center;
- border-radius: 100upx;
- font-size: 30upx;
- }
- .price-text{
- font-size: 20upx;
- margin-left: 10upx;
- }
- .price-num{
- font-size: 32upx;
- color: red;
- }
- .total-text{
- margin-right: 50upx;
- }
- .money-total{
- margin-right: 10upx;
- }
- }
- }
- // 物流弹窗
- .order-log {
- padding: 20upx ;
- font-size: 28upx;
- >view{
- line-height: 60upx;
- }
- }
- }
- </style>
|