修改
This commit is contained in:
parent
c7859afa5c
commit
85d6b97e8f
@ -25,8 +25,7 @@ export default {
|
||||
innerrefund: false,
|
||||
orderList: [],
|
||||
refundlist: [],
|
||||
orderTypelist: [
|
||||
{
|
||||
orderTypelist: [{
|
||||
value: "INTEGRAL_EXCHANGE",
|
||||
label: "积分兑换",
|
||||
},
|
||||
@ -40,45 +39,45 @@ export default {
|
||||
],
|
||||
ratelist: {}, //评分list
|
||||
orderStatuslist: [{
|
||||
value: "WAIT_PAY",
|
||||
label: "待付款",
|
||||
},
|
||||
{
|
||||
value: "PAY",
|
||||
label: "待发货",
|
||||
},
|
||||
{
|
||||
value: "WAIT_RECEIVED_GOODS",
|
||||
label: "待收货",
|
||||
},
|
||||
{
|
||||
value: "RECEIVED_GOODS",
|
||||
label: "待评价",
|
||||
},
|
||||
{
|
||||
value: "EVALUATED",
|
||||
label: "交易完成",
|
||||
},
|
||||
{
|
||||
value: "CANCEL",
|
||||
label: "已取消",
|
||||
},
|
||||
{
|
||||
value: "WAIT_RETURNED_GOODS",
|
||||
label: "待退货",
|
||||
},
|
||||
{
|
||||
value: "RETURNED_GOODS",
|
||||
label: "已退货",
|
||||
},
|
||||
{
|
||||
value: "WAIT_REFUND",
|
||||
label: "退款中",
|
||||
},
|
||||
{
|
||||
value: "REFUNDED",
|
||||
label: "退款成功",
|
||||
},
|
||||
value: "WAIT_PAY",
|
||||
label: "待付款",
|
||||
},
|
||||
{
|
||||
value: "PAY",
|
||||
label: "待发货",
|
||||
},
|
||||
{
|
||||
value: "WAIT_RECEIVED_GOODS",
|
||||
label: "待收货",
|
||||
},
|
||||
{
|
||||
value: "RECEIVED_GOODS",
|
||||
label: "待评价",
|
||||
},
|
||||
{
|
||||
value: "EVALUATED",
|
||||
label: "交易完成",
|
||||
},
|
||||
{
|
||||
value: "CANCEL",
|
||||
label: "已取消",
|
||||
},
|
||||
{
|
||||
value: "WAIT_RETURNED_GOODS",
|
||||
label: "待退货",
|
||||
},
|
||||
{
|
||||
value: "RETURNED_GOODS",
|
||||
label: "已退货",
|
||||
},
|
||||
{
|
||||
value: "WAIT_REFUND",
|
||||
label: "退款中",
|
||||
},
|
||||
{
|
||||
value: "REFUNDED",
|
||||
label: "退款成功",
|
||||
},
|
||||
],
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
@ -157,13 +156,6 @@ export default {
|
||||
this.queryParams.nurseStationId = item.id;
|
||||
this.nurseStationshow = false;
|
||||
},
|
||||
//护理站list
|
||||
info() {
|
||||
getListByUser(this.getListByUserquery).then((res) => {
|
||||
this.nurseStationlist = res.rows;
|
||||
this.stationtotal = res.total;
|
||||
});
|
||||
},
|
||||
//页面所属护理站
|
||||
ParamsStation(item) {
|
||||
console.log(this.getListByUserquery)
|
||||
@ -236,6 +228,8 @@ export default {
|
||||
return "护理站";
|
||||
case "SHOPPING_MALL":
|
||||
return "商城";
|
||||
case "HEALTH_CONSULTATION":
|
||||
return "健康咨询";
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -258,7 +252,7 @@ export default {
|
||||
this.ratelist = {}
|
||||
if (row.orderStatus == 'EVALUATED') {
|
||||
this.ratelist = res.data.orderEvaluatePictureInfoList
|
||||
} else { }
|
||||
} else {}
|
||||
});
|
||||
},
|
||||
// 查看录入物流单号弹框
|
||||
@ -298,7 +292,7 @@ export default {
|
||||
//确认退款 确定按钮
|
||||
submitRefundOrder() {
|
||||
var obj = {};
|
||||
obj.orderType=this.refundlist.orderType;
|
||||
obj.orderType = this.refundlist.orderType;
|
||||
obj.orderNo = this.refundlist.goOrderNo;
|
||||
obj.refundReason = this.refundlist.dictLabel;
|
||||
obj.refundPrice = this.refundlist.godTotalPrice;
|
||||
@ -419,21 +413,21 @@ export default {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除商品订单编号为"' + ids + '"的数据项?')
|
||||
.then(function () {
|
||||
.then(function() {
|
||||
return delGoodsOrder(ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => { });
|
||||
.catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download(
|
||||
"system/goodsOrder/export", {
|
||||
...this.queryParams,
|
||||
},
|
||||
...this.queryParams,
|
||||
},
|
||||
`goodsOrder_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user