| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <template>
- <view class="pos-order-list" ref="container">
- <view class="nav acea-row row-around row-middle">
- <view class="item" :class="where.status == 1 ? 'on' : ''" @click="changeStatus(1)">
- 待付款
- </view>
- <view class="item" :class="where.status == 2 ? 'on' : ''" @click="changeStatus(2)">
- 待发货
- </view>
- <view class="item" :class="where.status == 3 ? 'on' : ''" @click="changeStatus(3)">
- 待收货
- </view>
- <view class="item" :class="where.status == 4 ? 'on' : ''" @click="changeStatus(4)">
- 待评价
- </view>
- <view class="item" :class="where.status == 5 ? 'on' : ''" @click="changeStatus(5)">
- 已完成
- </view>
- <view class="item" :class="where.status == 6 ? 'on' : ''" @click="changeStatus(6)">
- 退款
- </view>
- </view>
- <view class="list">
- <view class="item" v-for="(item, index) in list" :key="index">
- <view class="order-num acea-row row-middle">
- 订单号:{{ item.order_sn }}
- <span class="time">下单时间:{{ item.create_time }}</span>
- </view>
- <view class="pos-order-goods" v-for="(val, key) in item.orderProduct" :key="key" @click="toDetail(item)">
- <view class="goods acea-row row-between-wrapper">
- <view class="picTxt acea-row row-between-wrapper">
- <view class="pictrue">
- <image :src="val.cart_info.product.image" />
- </view>
- <view class="text acea-row row-between row-column">
- <view class="info line2">
- {{ val.cart_info.product.store_name }}
- </view>
- <view class="attr" v-if="val.cart_info.productAttr.sku">
- {{ val.cart_info.productAttr.sku }}
- </view>
- </view>
- </view>
- <view class="money">
- <view class="x-money">¥{{ val.cart_info.product.price }}</view>
- <view class="num">x{{ item.total_num }}</view>
- <view class="y-money">
- ¥{{ val.cart_info.productAttr.cost }}
- </view>
- </view>
- </view>
- </view>
- <view class="public-total">
- 共{{ item.total_num }}件商品,
- <span v-if="where.status <= 1">应</span>
- <span v-else>已</span>
- 支付
- <span class="money">¥{{ item.pay_price }}</span> ( 邮费 ¥{{
- item.total_postage
- }}
- )
- </view>
- <view class="operation acea-row row-between-wrapper">
- <view class="more">
- <!-- <view class="iconfont icon-gengduo" @click="more(index)"></view>-->
- <!-- <view class="order" v-show="current === index">-->
- <!-- <view class="items">-->
- <!-- {{ where.status > 0 ? "删除" : "取消" }}订单-->
- <!-- </view>-->
- <!-- <view class="arrow"></view>-->
- <!-- </view>-->
- </view>
- <view class="acea-row row-middle">
- <view class="bnt" @click="modify(item, 0)" v-if="where.status == 1">
- 一键改价
- </view>
- <view class="bnt" @click="modify(item, 1)">订单备注</view>
- <navigator class="bnt" v-if="where.status == 2 && item.order_type == 0" :url="'/pages/admin/delivery/index?id='+item.order_id">去发货
- </navigator>
- </view>
- </view>
- </view>
- </view>
- <Loading :loaded="loaded" :loading="loading"></Loading>
- <PriceChange :change="change" :orderInfo="orderInfo" v-on:closechange="changeclose($event)" v-on:savePrice="savePrice"
- :status="status"></PriceChange>
- </view>
- </template>
- <script>
- import {
- getOrderList,
- setAdminOrderPrice,
- setAdminOrderRemark,
- setOfflinePay,
- setOrderRefund
- } from "@/api/admin";
- import Loading from '@/components/Loading/index'
- import PriceChange from '@/components/PriceChange/index'
- import { isMoney } from '@/utils/validate.js'
- export default {
- name: "AdminOrderList",
- components: {
- Loading,
- PriceChange
- },
- data() {
- return {
- current: "",
- change: false,
- types: 1,
- where: {
- page: 1,
- limit: 10,
- status: 1
- },
- list: [],
- loaded: false,
- loading: false,
- orderInfo: {},
- status: ""
- };
- },
- watch: {
- "$route.params.types": function(newVal) {
- let that = this;
- if (newVal != undefined) {
- that.where.status = newVal;
- that.init();
- }
- },
- types: function() {
- this.getIndex();
- }
- },
- onLoad(option) {
- this.where.status = option.types
- this.current = "";
- this.getIndex();
- },
- methods: {
- // 获取数据
- getIndex: function() {
- let that = this;
- if (that.loading || that.loaded) return;
- that.loading = true;
- getOrderList(that.where).then(
- res => {
- that.loading = false;
- that.loaded = res.data.list.length < that.where.limit;
- that.list.push.apply(that.list, res.data.list);
- that.where.page = that.where.page + 1;
- },
- err => {
- that.$dialog.message(error.msg);
- }
- );
- },
- // 初始化
- init: function() {
- this.list = [];
- this.where.page = 1;
- this.loaded = false;
- this.loading = false;
- this.getIndex();
- this.current = "";
- },
- // 导航切换
- changeStatus(val) {
- if (this.where.status != val) {
- this.where.status = val;
- this.init();
- }
- },
- // 商品操作
- modify: function(item, status) {
- let temp = status.toString()
- this.change = true;
- this.orderInfo = item;
- this.status = temp;
- },
- changeclose: function(msg) {
- this.change = msg;
- },
- async savePrice(opt) {
- let that = this,
- data = {},
- price = opt.orderInfo.pay_postage,
- refund_price = opt.refund_price,
- refund_status = that.orderInfo.refund_status,
- remark = opt.remark;
- let parmas = {
- pay_postage: opt.orderInfo.pay_postage,
- coupon_price: opt.orderInfo.coupon_price,
- total_price: Number(opt.orderInfo.total_price)
- }
- let id = that.orderInfo.order_id;
- if (that.status == 0) {
- if(!isMoney(opt.orderInfo.pay_postage || opt.orderInfo.total_price)){
- return that.$util.Tips({title: '请输入正确的金额'});
- }
- data.pay_price = price;
- setAdminOrderPrice(id,parmas).then(
- function() {
- that.change = false;
- that.$util.Tips({
- title:'改价成功',
- icon:'success'
- })
- that.init();
- },
- function(res) {
- that.change = false;
- that.$util.Tips({
- title:res,
- icon:'none'
- })
- }
- );
- } else {
- if(!remark){
- return this.$util.Tips({
- title:'请输入备注'
- })
- }
- setAdminOrderRemark(id, {remark: remark}).then(
- res => {
- that.change = false;
- this.$util.Tips({
- title:res.message,
- icon:'success'
- })
- that.init();
- },
- err => {
- that.change = false;
- that.$util.Tips({title: err});
- }
- );
- }
- },
- toDetail(item){
- uni.navigateTo({
- url:`/pages/admin/orderDetail/index?id=${item.order_id}`
- })
- }
- },
- onReachBottom() {
- this.getIndex()
- }
- }
- </script>
- <style>
- .pos-order-list .nav {
- width: 100%;
- height: 96upx;
- background-color: #fff;
- font-size: 30upx;
- color: #282828;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- }
- .pos-order-list .nav .item.on {
- color: #2291f8;
- }
- .pos-order-list .list {
- margin-top: 120upx;
- }
- .pos-order-list .list .item {
- background-color: #fff;
- width: 100%;
- }
- .pos-order-list .list .item~.item {
- margin-top: 24upx;
- }
- .pos-order-list .list .item .order-num {
- height: 124upx;
- border-bottom: 1px solid #eee;
- font-size: 30upx;
- font-weight: bold;
- color: #282828;
- padding: 0 30upx;
- }
- .pos-order-list .list .item .order-num .time {
- font-size: 26upx;
- font-weight: normal;
- color: #999;
- margin-top: -40upx;
- }
- .pos-order-list .list .item .operation {
- padding: 20upx 30upx;
- margin-top: 3upx;
- }
- .pos-order-list .list .item .operation .more {
- position: relative;
- }
- .pos-order-list .list .item .operation .icon-gengduo {
- font-size: 50upx;
- color: #aaa;
- }
- .pos-order-list .list .item .operation .order .arrow {
- width: 0;
- height: 0;
- border-left: 11upx solid transparent;
- border-right: 11upx solid transparent;
- border-top: 20upx solid #e5e5e5;
- position: absolute;
- left: 15upx;
- bottom: -18upx;
- }
- .pos-order-list .list .item .operation .order .arrow:before {
- content: '';
- width: 0;
- height: 0;
- border-left: 7upx solid transparent;
- border-right: 7upx solid transparent;
- border-top: 20upx solid #fff;
- position: absolute;
- left: -7upx;
- bottom: 0;
- }
- .pos-order-list .list .item .operation .order {
- width: 200upx;
- background-color: #fff;
- border: 1px solid #eee;
- border-radius: 10upx;
- position: absolute;
- top: -100upx;
- z-index: 9;
- }
- .pos-order-list .list .item .operation .order .items {
- height: 77upx;
- line-height: 77upx;
- text-align: center;
- }
- .pos-order-list .list .item .operation .order .items~.items {
- border-top: 1px solid #f5f5f5;
- }
- .pos-order-list .list .item .operation .bnt {
- font-size: 28upx;
- color: #5c5c5c;
- width: 170upx;
- height: 60upx;
- border-radius: 30upx;
- border: 1px solid #bbb;
- text-align: center;
- line-height: 60upx;
- }
- .pos-order-list .list .item .operation .bnt~.bnt {
- margin-left: 14upx;
- }
- .pos-order-goods {
- padding: 0 30upx;
- background-color: #fff;
- }
- .pos-order-goods .goods {
- height: 185upx;
- }
- .pos-order-goods .goods~.goods {
- border-top: 1px dashed #e5e5e5;
- }
- .pos-order-goods .goods .picTxt {
- width: 515upx;
- }
- .pos-order-goods .goods .picTxt .pictrue {
- width: 130upx;
- height: 130upx;
- }
- .pos-order-goods .goods .picTxt .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 6upx;
- }
- .pos-order-goods .goods .picTxt .text {
- flex-direction: column;
- width: 365upx;
- }
- .pos-order-goods .goods .picTxt .text .info {
- font-size: 28upx;
- color: #282828;
- }
- .pos-order-goods .goods .picTxt .text .attr {
- margin-top: 5rpx;
- font-size: 24upx;
- color: #999;
- }
- .pos-order-goods .goods .money {
- width: 164upx;
- text-align: right;
- font-size: 28upx;
- }
- .pos-order-goods .goods .money .x-money {
- color: #282828;
- }
- .pos-order-goods .goods .money .num {
- color: #ff9600;
- margin: 5upx 0;
- }
- .pos-order-goods .goods .money .y-money {
- color: #999;
- text-decoration: line-through;
- }
- .public-total {
- font-size: 28upx;
- color: #282828;
- border-top: 1px solid #eee;
- height: 92upx;
- line-height: 92upx;
- text-align: right;
- padding: 0 30upx;
- background-color: #fff;
- }
- .public-total .money {
- color: #ff4c3c;
- }
- </style>
|