This commit is contained in:
曹辉 2023-03-10 15:51:29 +08:00
parent c7859afa5c
commit 85d6b97e8f

View File

@ -25,8 +25,7 @@ export default {
innerrefund: false, innerrefund: false,
orderList: [], orderList: [],
refundlist: [], refundlist: [],
orderTypelist: [ orderTypelist: [{
{
value: "INTEGRAL_EXCHANGE", value: "INTEGRAL_EXCHANGE",
label: "积分兑换", label: "积分兑换",
}, },
@ -157,13 +156,6 @@ export default {
this.queryParams.nurseStationId = item.id; this.queryParams.nurseStationId = item.id;
this.nurseStationshow = false; this.nurseStationshow = false;
}, },
//护理站list
info() {
getListByUser(this.getListByUserquery).then((res) => {
this.nurseStationlist = res.rows;
this.stationtotal = res.total;
});
},
//页面所属护理站 //页面所属护理站
ParamsStation(item) { ParamsStation(item) {
console.log(this.getListByUserquery) console.log(this.getListByUserquery)
@ -236,6 +228,8 @@ export default {
return "护理站"; return "护理站";
case "SHOPPING_MALL": case "SHOPPING_MALL":
return "商城"; return "商城";
case "HEALTH_CONSULTATION":
return "健康咨询";
default: default:
break; break;
} }
@ -258,7 +252,7 @@ export default {
this.ratelist = {} this.ratelist = {}
if (row.orderStatus == 'EVALUATED') { if (row.orderStatus == 'EVALUATED') {
this.ratelist = res.data.orderEvaluatePictureInfoList this.ratelist = res.data.orderEvaluatePictureInfoList
} else { } } else {}
}); });
}, },
// 查看录入物流单号弹框 // 查看录入物流单号弹框
@ -298,7 +292,7 @@ export default {
//确认退款 确定按钮 //确认退款 确定按钮
submitRefundOrder() { submitRefundOrder() {
var obj = {}; var obj = {};
obj.orderType=this.refundlist.orderType; obj.orderType = this.refundlist.orderType;
obj.orderNo = this.refundlist.goOrderNo; obj.orderNo = this.refundlist.goOrderNo;
obj.refundReason = this.refundlist.dictLabel; obj.refundReason = this.refundlist.dictLabel;
obj.refundPrice = this.refundlist.godTotalPrice; obj.refundPrice = this.refundlist.godTotalPrice;
@ -419,14 +413,14 @@ export default {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal this.$modal
.confirm('是否确认删除商品订单编号为"' + ids + '"的数据项?') .confirm('是否确认删除商品订单编号为"' + ids + '"的数据项?')
.then(function () { .then(function() {
return delGoodsOrder(ids); return delGoodsOrder(ids);
}) })
.then(() => { .then(() => {
this.getList(); this.getList();
this.$modal.msgSuccess("删除成功"); this.$modal.msgSuccess("删除成功");
}) })
.catch(() => { }); .catch(() => {});
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {