|
|
|
@ -14,7 +14,7 @@
|
|
|
|
|
<view class="orderingUser acea-row row-middle">{{ orderInfo.nickname }}</view> |
|
|
|
|
<view class="address"> |
|
|
|
|
<view class="name"> |
|
|
|
|
{{ orderInfo.realName}} |
|
|
|
|
{{ orderInfo.realName }} |
|
|
|
|
<text class="phone">{{ orderInfo.userPhone }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view>{{ orderInfo.userAddress }}</view> |
|
|
|
@ -23,11 +23,7 @@
|
|
|
|
|
<image :src="`${$VUE_APP_RESOURCES_URL}/images/line.jpg`" /> |
|
|
|
|
</view> |
|
|
|
|
<view class="pos-order-goods"> |
|
|
|
|
<view |
|
|
|
|
class="goods acea-row row-between-wrapper" |
|
|
|
|
v-for="(item, orderInfoIndex) in orderInfo.cartInfo" |
|
|
|
|
:key="orderInfoIndex" |
|
|
|
|
> |
|
|
|
|
<view class="goods acea-row row-between-wrapper" v-for="(item, orderInfoIndex) in orderInfo.cartInfo" :key="orderInfoIndex"> |
|
|
|
|
<view class="picTxt acea-row row-between-wrapper"> |
|
|
|
|
<view class="pictrue"> |
|
|
|
|
<image :src="item.productInfo.image" /> |
|
|
|
@ -47,21 +43,16 @@
|
|
|
|
|
<view class="public-total"> |
|
|
|
|
共{{ orderInfo.totalNum }}件商品,应支付 |
|
|
|
|
<text class="money">¥{{ orderInfo.payPrice }}</text> |
|
|
|
|
( 邮费 ¥{{ |
|
|
|
|
orderInfo.payPostage |
|
|
|
|
}} |
|
|
|
|
) |
|
|
|
|
( 邮费 ¥{{ orderInfo.payPostage }}) |
|
|
|
|
</view> |
|
|
|
|
<view class="wrapper"> |
|
|
|
|
<view class="item acea-row row-between"> |
|
|
|
|
<view>订单编号:</view> |
|
|
|
|
<view class="conter acea-row row-middle row-right"> |
|
|
|
|
{{ orderInfo.orderId |
|
|
|
|
}} |
|
|
|
|
<text |
|
|
|
|
class="copy copy-data" |
|
|
|
|
@click="copyClipboard(orderInfo.orderId)" |
|
|
|
|
>复制</text> |
|
|
|
|
{{ orderInfo.orderId }} |
|
|
|
|
<!-- #ifndef H5 --> |
|
|
|
|
<text class="copy copy-data" @click="copyClipboard(orderInfo.orderId)">复制</text> |
|
|
|
|
<!-- #endif --> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="item acea-row row-between"> |
|
|
|
@ -73,7 +64,7 @@
|
|
|
|
|
</view> |
|
|
|
|
<view class="item acea-row row-between"> |
|
|
|
|
<view>支付状态:</view> |
|
|
|
|
<view class="conter">{{ orderInfo.paid == 1 ? "已支付" : "未支付" }}</view> |
|
|
|
|
<view class="conter">{{ orderInfo.paid == 1 ? '已支付' : '未支付' }}</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="item acea-row row-between"> |
|
|
|
|
<view>支付方式:</view> |
|
|
|
@ -98,10 +89,7 @@
|
|
|
|
|
<text class="money font-color-red">¥{{ orderInfo.payPrice }}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view |
|
|
|
|
class="wrapper" |
|
|
|
|
v-if="orderInfo.delivery_type != 'fictitious' && orderInfo._status._type === 2" |
|
|
|
|
> |
|
|
|
|
<view class="wrapper" v-if="orderInfo.delivery_type != 'fictitious' && orderInfo._status._type === 2"> |
|
|
|
|
<view class="item acea-row row-between"> |
|
|
|
|
<view>配送方式:</view> |
|
|
|
|
<view class="conter" v-if="orderInfo.delivery_type === 'express'">快递</view> |
|
|
|
@ -116,12 +104,10 @@
|
|
|
|
|
<view v-if="orderInfo.delivery_type === 'express'">快递单号:</view> |
|
|
|
|
<view v-if="orderInfo.delivery_type === 'send'">送货人电话:</view> |
|
|
|
|
<view class="conter"> |
|
|
|
|
{{ orderInfo.delivery_id |
|
|
|
|
}} |
|
|
|
|
<text |
|
|
|
|
class="copy copy-data" |
|
|
|
|
@click="copyClipboard(orderInfo.delivery_id)" |
|
|
|
|
>复制</text> |
|
|
|
|
{{ orderInfo.delivery_id }} |
|
|
|
|
<!-- #ifndef H5 --> |
|
|
|
|
<text class="copy copy-data" @click="copyClipboard(orderInfo.delivery_id)">复制</text> |
|
|
|
|
<!-- #endif --> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -130,208 +116,186 @@
|
|
|
|
|
<view class="more"></view> |
|
|
|
|
<view class="bnt cancel" @click="modify(0)" v-if="types == 0">一键改价</view> |
|
|
|
|
<view class="bnt cancel" @click="modify(0)" v-if="types == -1">立即退款</view> |
|
|
|
|
<view |
|
|
|
|
class="bnt cancel" |
|
|
|
|
v-if="orderInfo.pay_type === 'offline' && orderInfo.paid === 0" |
|
|
|
|
@click="offlinePay" |
|
|
|
|
>确认付款</view> |
|
|
|
|
<view class="bnt delivery" v-if="title=='未发货' && types == 1" @click="goGoodsDeliver(orderInfo)">去发货</view> |
|
|
|
|
<view class="bnt quick" v-if="title=='待核销' && types == 1" @click="storeCancellation(0)">快速核销</view> |
|
|
|
|
<view class="bnt delivery" v-if="title=='待核销' && types == 1" @click="storeCancellation(1)">立即核销</view> |
|
|
|
|
<view class="bnt cancel" v-if="orderInfo.pay_type === 'offline' && orderInfo.paid === 0" @click="offlinePay">确认付款</view> |
|
|
|
|
<view class="bnt delivery" v-if="title == '未发货' && types == 1" @click="goGoodsDeliver(orderInfo)">去发货</view> |
|
|
|
|
<view class="bnt quick" v-if="title == '待核销' && types == 1" @click="storeCancellation(0)">快速核销</view> |
|
|
|
|
<view class="bnt delivery" v-if="title == '待核销' && types == 1" @click="storeCancellation(1)">立即核销</view> |
|
|
|
|
</view> |
|
|
|
|
<PriceChange |
|
|
|
|
:change="change" |
|
|
|
|
:orderInfo="orderInfo" |
|
|
|
|
v-on:closechange="changeclose($event)" |
|
|
|
|
v-on:savePrice="savePrice" |
|
|
|
|
:status="status" |
|
|
|
|
></PriceChange> |
|
|
|
|
<PriceChange :change="change" :orderInfo="orderInfo" v-on:closechange="changeclose($event)" v-on:savePrice="savePrice" :status="status"></PriceChange> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import PriceChange from "@/components/PriceChange"; |
|
|
|
|
import DataFormat from "@/components/DataFormat"; |
|
|
|
|
import { |
|
|
|
|
getAdminOrderDetail, |
|
|
|
|
setAdminOrderPrice, |
|
|
|
|
setAdminOrderRemark, |
|
|
|
|
setOfflinePay, |
|
|
|
|
setOrderRefund |
|
|
|
|
} from "@/api/admin"; |
|
|
|
|
import {orderVerific} from "@/api/order"; |
|
|
|
|
import { required, num } from "@/utils/validate"; |
|
|
|
|
import { validatorDefaultCatch } from "@/utils/dialog"; |
|
|
|
|
import { copyClipboard } from "@/utils"; |
|
|
|
|
import PriceChange from '@/components/PriceChange' |
|
|
|
|
import DataFormat from '@/components/DataFormat' |
|
|
|
|
import { getAdminOrderDetail, setAdminOrderPrice, setAdminOrderRemark, setOfflinePay, setOrderRefund } from '@/api/admin' |
|
|
|
|
import { orderVerific } from '@/api/order' |
|
|
|
|
import { required, num } from '@/utils/validate' |
|
|
|
|
import { validatorDefaultCatch } from '@/utils/dialog' |
|
|
|
|
import { copyClipboard } from '@/utils' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: "AdminOrder", |
|
|
|
|
name: 'AdminOrder', |
|
|
|
|
components: { |
|
|
|
|
PriceChange, |
|
|
|
|
DataFormat |
|
|
|
|
DataFormat, |
|
|
|
|
}, |
|
|
|
|
props: {}, |
|
|
|
|
data: function() { |
|
|
|
|
return { |
|
|
|
|
order: false, |
|
|
|
|
change: false, |
|
|
|
|
order_id: "", |
|
|
|
|
order_id: '', |
|
|
|
|
orderInfo: { |
|
|
|
|
_status: {} |
|
|
|
|
_status: {}, |
|
|
|
|
}, |
|
|
|
|
status: "", |
|
|
|
|
title: "", |
|
|
|
|
payType: "", |
|
|
|
|
types: "" |
|
|
|
|
}; |
|
|
|
|
status: '', |
|
|
|
|
title: '', |
|
|
|
|
payType: '', |
|
|
|
|
types: '', |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
"$yroute.query.oid": function(newVal) { |
|
|
|
|
let that = this; |
|
|
|
|
'$yroute.query.oid': function(newVal) { |
|
|
|
|
let that = this |
|
|
|
|
if (newVal != undefined) { |
|
|
|
|
that.order_id = newVal; |
|
|
|
|
that.getIndex(); |
|
|
|
|
} |
|
|
|
|
that.order_id = newVal |
|
|
|
|
that.getIndex() |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
onShow: function() { |
|
|
|
|
this.order_id = this.$yroute.query.oid; |
|
|
|
|
this.getIndex(); |
|
|
|
|
this.order_id = this.$yroute.query.oid |
|
|
|
|
this.getIndex() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
goGoodsDeliver(orderInfo) { |
|
|
|
|
this.$yrouter.push({ |
|
|
|
|
path: "/pages/orderAdmin/GoodsDeliver/index", |
|
|
|
|
query: { oid: orderInfo.orderId } |
|
|
|
|
}); |
|
|
|
|
path: '/pages/orderAdmin/GoodsDeliver/index', |
|
|
|
|
query: { oid: orderInfo.orderId }, |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
copyClipboard, |
|
|
|
|
more: function() { |
|
|
|
|
this.order = !this.order; |
|
|
|
|
this.order = !this.order |
|
|
|
|
}, |
|
|
|
|
modify: function(status) { |
|
|
|
|
this.change = true; |
|
|
|
|
this.status = status; |
|
|
|
|
this.change = true |
|
|
|
|
this.status = status |
|
|
|
|
}, |
|
|
|
|
changeclose: function(msg) { |
|
|
|
|
this.change = msg; |
|
|
|
|
this.change = msg |
|
|
|
|
}, |
|
|
|
|
getIndex: function() { |
|
|
|
|
let that = this; |
|
|
|
|
let that = this |
|
|
|
|
getAdminOrderDetail(that.order_id).then( |
|
|
|
|
res => { |
|
|
|
|
that.orderInfo = res.data; |
|
|
|
|
that.types = res.data._status._type; |
|
|
|
|
that.title = res.data._status._title; |
|
|
|
|
that.payType = res.data._status._payType; |
|
|
|
|
that.orderInfo = res.data |
|
|
|
|
that.types = res.data._status._type |
|
|
|
|
that.title = res.data._status._title |
|
|
|
|
that.payType = res.data._status._payType |
|
|
|
|
}, |
|
|
|
|
err => { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
) |
|
|
|
|
}, |
|
|
|
|
async savePrice(opt) { |
|
|
|
|
let that = this, |
|
|
|
|
data = {}, |
|
|
|
|
price = opt.price, |
|
|
|
|
remark = opt.remark, |
|
|
|
|
refund_price = opt.refund_price.toString(); |
|
|
|
|
data.orderId = that.orderInfo.orderId; |
|
|
|
|
refund_price = opt.refund_price.toString() |
|
|
|
|
data.orderId = that.orderInfo.orderId |
|
|
|
|
if (that.status == 0 && that.orderInfo.refundStatus === 0) { |
|
|
|
|
try { |
|
|
|
|
await this.$validator({ |
|
|
|
|
price: [ |
|
|
|
|
required(required.message("金额")), |
|
|
|
|
num(num.message("金额")) |
|
|
|
|
] |
|
|
|
|
}).validate({ price }); |
|
|
|
|
price: [required(required.message('金额')), num(num.message('金额'))], |
|
|
|
|
}).validate({ price }) |
|
|
|
|
} catch (e) { |
|
|
|
|
return validatorDefaultCatch(e); |
|
|
|
|
return validatorDefaultCatch(e) |
|
|
|
|
} |
|
|
|
|
data.price = price; |
|
|
|
|
data.price = price |
|
|
|
|
setAdminOrderPrice(data).then( |
|
|
|
|
function() { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: "改价成功", |
|
|
|
|
icon: "success", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
that.getIndex(); |
|
|
|
|
title: '改价成功', |
|
|
|
|
icon: 'success', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
that.getIndex() |
|
|
|
|
}, |
|
|
|
|
function() { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: "改价失败", |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
title: '改价失败', |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
) |
|
|
|
|
} else if (that.status == 0 && that.orderInfo.refundStatus === 1) { |
|
|
|
|
try { |
|
|
|
|
await this.$validator({ |
|
|
|
|
refund_price: [ |
|
|
|
|
required(required.message("金额")), |
|
|
|
|
num(num.message("金额")) |
|
|
|
|
] |
|
|
|
|
}).validate({ refund_price }); |
|
|
|
|
refund_price: [required(required.message('金额')), num(num.message('金额'))], |
|
|
|
|
}).validate({ refund_price }) |
|
|
|
|
} catch (e) { |
|
|
|
|
return validatorDefaultCatch(e); |
|
|
|
|
return validatorDefaultCatch(e) |
|
|
|
|
} |
|
|
|
|
data.price = refund_price; |
|
|
|
|
data.type = opt.type; |
|
|
|
|
data.price = refund_price |
|
|
|
|
data.type = opt.type |
|
|
|
|
setOrderRefund(data).then( |
|
|
|
|
res => { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
that.getIndex(); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
that.getIndex() |
|
|
|
|
}, |
|
|
|
|
err => { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
that.getIndex(); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
that.getIndex() |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
) |
|
|
|
|
} else { |
|
|
|
|
try { |
|
|
|
|
await this.$validator({ |
|
|
|
|
remark: [required(required.message("备注"))] |
|
|
|
|
}).validate({ remark }); |
|
|
|
|
remark: [required(required.message('备注'))], |
|
|
|
|
}).validate({ remark }) |
|
|
|
|
} catch (e) { |
|
|
|
|
return validatorDefaultCatch(e); |
|
|
|
|
return validatorDefaultCatch(e) |
|
|
|
|
} |
|
|
|
|
data.remark = remark; |
|
|
|
|
data.remark = remark |
|
|
|
|
setAdminOrderRemark(data).then( |
|
|
|
|
res => { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
that.getIndex(); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
that.getIndex() |
|
|
|
|
}, |
|
|
|
|
err => { |
|
|
|
|
that.change = false; |
|
|
|
|
that.change = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
offlinePay: function() { |
|
|
|
@ -339,76 +303,75 @@ export default {
|
|
|
|
|
res => { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
this.getIndex(); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
this.getIndex() |
|
|
|
|
}, |
|
|
|
|
err => { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: err.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
) |
|
|
|
|
}, |
|
|
|
|
storeCancellation(index) { |
|
|
|
|
const that = this; |
|
|
|
|
that.check = true; |
|
|
|
|
const that = this |
|
|
|
|
that.check = true |
|
|
|
|
if (index == 0) { |
|
|
|
|
uni.showModal({ |
|
|
|
|
title: "确定核销订单?", |
|
|
|
|
content: "注意:请务必核对核销码的与客户正确性", |
|
|
|
|
title: '确定核销订单?', |
|
|
|
|
content: '注意:请务必核对核销码的与客户正确性', |
|
|
|
|
success(res) { |
|
|
|
|
if (res.confirm) { |
|
|
|
|
uni.showLoading({ |
|
|
|
|
title: "查询中" |
|
|
|
|
}); |
|
|
|
|
title: '查询中', |
|
|
|
|
}) |
|
|
|
|
orderVerific(that.orderInfo.verifyCode, 1) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res) |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
that.iShidden = false; |
|
|
|
|
uni.hideLoading() |
|
|
|
|
that.iShidden = false |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: res.msg, |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 1000 |
|
|
|
|
}); |
|
|
|
|
duration: 1000, |
|
|
|
|
}) |
|
|
|
|
//最后就是返回上一个页面。 |
|
|
|
|
setTimeout(function() { |
|
|
|
|
uni.navigateBack({ |
|
|
|
|
delta: 1, // 返回上一级页面。 |
|
|
|
|
success: function() { |
|
|
|
|
console.log('成功!') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}) |
|
|
|
|
}, 1000); |
|
|
|
|
}, 1000) |
|
|
|
|
}) |
|
|
|
|
.catch((err) => { |
|
|
|
|
.catch(err => { |
|
|
|
|
console.log(err) |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
uni.hideLoading() |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: err.data.msg, |
|
|
|
|
icon: "none", |
|
|
|
|
duration: 2000 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
icon: 'none', |
|
|
|
|
duration: 2000, |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
that.$yrouter.push({ |
|
|
|
|
path: '/pages/orderAdmin/OrderCancellation/index' |
|
|
|
|
path: '/pages/orderAdmin/OrderCancellation/index', |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
<style lang="less"> |
|
|
|
|
.quick { |
|
|
|
|
background: #F25555; |
|
|
|
|
background: #f25555; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|