383 lines
12 KiB
Vue
383 lines
12 KiB
Vue
<template>
|
|
<div class="search">
|
|
<Row>
|
|
<Col>
|
|
<Card>
|
|
<Row @keydown.enter.native="handleSearch">
|
|
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
|
|
<Form-item label="订单编号" prop="orderSn">
|
|
<Input
|
|
type="text"
|
|
v-model="searchForm.orderSn"
|
|
placeholder="请输入订单编号"
|
|
clearable
|
|
style="width: 200px"
|
|
/>
|
|
</Form-item>
|
|
<Form-item label="售后单号" prop="sn">
|
|
<Input
|
|
type="text"
|
|
v-model="searchForm.sn"
|
|
placeholder="请输入售后单号"
|
|
clearable
|
|
style="width: 200px"
|
|
/>
|
|
</Form-item>
|
|
<Form-item label="售后状态">
|
|
<Select v-model="searchForm.serviceStatus" placeholder="全部" clearable style="width: 200px">
|
|
<Option value="APPLY">申请售后</Option>
|
|
<Option value="PASS">通过售后</Option>
|
|
<Option value="REFUSE">拒绝售后</Option>
|
|
<Option value="BUYER_RETURN">买家退货,待卖家收货</Option>
|
|
<Option value="SELLER_CONFIRM">卖家确认收货</Option>
|
|
<Option value="SELLER_TERMINATION">卖家终止售后</Option>
|
|
<Option value="BUYER_CANCEL">买家取消售后</Option>
|
|
<Option value="COMPLETE">完成售后</Option>
|
|
</Select>
|
|
</Form-item>
|
|
<Form-item label="申请时间">
|
|
<DatePicker
|
|
v-model="selectDate"
|
|
type="datetimerange"
|
|
format="yyyy-MM-dd HH:mm:ss"
|
|
clearable
|
|
@on-change="selectDateRange"
|
|
placeholder="选择起始时间"
|
|
style="width: 200px"
|
|
></DatePicker>
|
|
</Form-item>
|
|
<Form-item label="商家名称" prop="storeName">
|
|
<Input
|
|
type="text"
|
|
v-model="searchForm.storeName"
|
|
placeholder="请输入商家名称"
|
|
clearable
|
|
style="width: 200px"
|
|
/>
|
|
</Form-item>
|
|
<Form-item label="会员名称" prop="memberName">
|
|
<Input
|
|
type="text"
|
|
v-model="searchForm.memberName"
|
|
placeholder="请输入会员名称"
|
|
clearable
|
|
style="width: 200px"
|
|
/>
|
|
</Form-item>
|
|
<Form-item label="售后类型">
|
|
<Select v-model="searchForm.serviceType" placeholder="全部" clearable style="width: 200px">
|
|
<Option value="RETURN_MONEY">退款</Option>
|
|
<Option value="RETURN_GOODS">退货</Option>
|
|
</Select>
|
|
</Form-item>
|
|
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
|
</Form>
|
|
</Row>
|
|
<Row class="padding-row">
|
|
<Table
|
|
:loading="loading"
|
|
border
|
|
:columns="columns"
|
|
:data="data"
|
|
ref="table"
|
|
sortable="custom"
|
|
@on-sort-change="changeSort"
|
|
@on-selection-change="changeSelect"
|
|
>
|
|
<!-- 商品栏目格式化 -->
|
|
<template slot="goodsSlot" slot-scope="{row}">
|
|
<div style="margin-top: 5px;height: 80px; display: flex;">
|
|
<div style="">
|
|
<img :src="row.goodsImage" style="height: 60px;margin-top: 3px">
|
|
</div>
|
|
|
|
<div style="margin-left: 13px;">
|
|
<div class="div-zoom">
|
|
<a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
|
|
</div>
|
|
<Poptip trigger="hover" title="扫码在手机中查看" transfer>
|
|
<div slot="content">
|
|
<vue-qr :text="wapLinkTo(row.goodsId,row.skuId)" :margin="0" colorDark="#000" colorLight="#fff" :size="150"></vue-qr>
|
|
</div>
|
|
<img src="../../../assets/qrcode.svg" class="hover-pointer" width="20" height="20" alt="">
|
|
</Poptip>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
</Table>
|
|
</Row>
|
|
<Row type="flex" justify="end" class="page">
|
|
<Page
|
|
:current="searchForm.pageNumber"
|
|
:total="total"
|
|
:page-size="searchForm.pageSize"
|
|
@on-change="changePage"
|
|
@on-page-size-change="changePageSize"
|
|
:page-size-opts="[10, 20, 50]"
|
|
size="small"
|
|
show-total
|
|
show-elevator
|
|
show-sizer
|
|
></Page>
|
|
</Row>
|
|
</Card>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import * as API_Order from "@/api/order";
|
|
|
|
export default {
|
|
name: "orderList",
|
|
components: {},
|
|
data() {
|
|
return {
|
|
loading: true, // 表单加载状态
|
|
searchForm: {
|
|
// 搜索框初始化对象
|
|
pageNumber: 1, // 当前页数
|
|
pageSize: 10, // 页面大小
|
|
sort: "createTime", // 默认排序字段
|
|
order: "desc", // 默认排序方式
|
|
startDate: "", // 起始时间
|
|
endDate: "", // 终止时间
|
|
orderSn: "",
|
|
memberName: "",
|
|
serviceStatus: "",
|
|
storeName:"",
|
|
sn: "",
|
|
|
|
},
|
|
selectDate: null, // 选择时间段
|
|
form: {
|
|
// 添加或编辑表单对象初始化数据
|
|
sn: "",
|
|
storeName: "",
|
|
startTime: "",
|
|
endTime: "",
|
|
billPrice: "",
|
|
},
|
|
selectList: [], // 多选数据
|
|
selectCount: 0, // 多选计数
|
|
columns: [
|
|
{
|
|
title: "售后服务单号",
|
|
key: "sn",
|
|
minWidth: 140,
|
|
tooltip: true
|
|
},
|
|
{
|
|
title: "订单编号",
|
|
key: "orderSn",
|
|
minWidth: 120,
|
|
tooltip: true
|
|
},
|
|
{
|
|
title: "商品",
|
|
key: "goodsName",
|
|
minWidth: 300,
|
|
tooltip: true,
|
|
slot: "goodsSlot",
|
|
},
|
|
{
|
|
title: "会员名称",
|
|
key: "memberName",
|
|
width: 140,
|
|
},
|
|
{
|
|
title: "商家名称",
|
|
key: "storeName",
|
|
minWidth: 100,
|
|
tooltip: true
|
|
},
|
|
{
|
|
title: "售后金额",
|
|
key: "applyRefundPrice",
|
|
width: 110,
|
|
render: (h, params) => {
|
|
if(params.row.applyRefundPrice == null){
|
|
return h(
|
|
"div",
|
|
this.$options.filters.unitPrice(0, "¥")
|
|
);
|
|
}else{
|
|
return h(
|
|
"div",
|
|
this.$options.filters.unitPrice(params.row.applyRefundPrice, "¥")
|
|
);
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
title: "售后类型",
|
|
key: "serviceType",
|
|
width: 100,
|
|
render: (h, params) => {
|
|
if (params.row.serviceType == "RETURN_MONEY") {
|
|
return h('div', [h('span', {}, '退款'),]);
|
|
} else if (params.row.serviceType == "RETURN_GOODS") {
|
|
return h('div', [h('span', {}, '退货'),]);
|
|
} else if (params.row.serviceType == "EXCHANGE_GOODS") {
|
|
return h('div', [h('span', {}, '换货'),]);
|
|
}
|
|
}
|
|
},
|
|
|
|
{
|
|
title: "售后状态",
|
|
key: "serviceStatus",
|
|
width: 110,
|
|
render: (h, params) => {
|
|
if (params.row.serviceStatus == "APPLY") {
|
|
return h('div', [h('span', {}, '申请中'),]);
|
|
} else if (params.row.serviceStatus == "PASS") {
|
|
return h('div', [h('span', {}, '通过售后'),]);
|
|
} else if (params.row.serviceStatus == "REFUSE") {
|
|
return h('div', [h('span', {}, '拒绝售后'),]);
|
|
} else if (params.row.serviceStatus == "BUYER_RETURN") {
|
|
return h('div', [h('span', {}, '买家退货,待卖家收货'),]);
|
|
} else if (params.row.serviceStatus == "SELLER_RE_DELIVERY") {
|
|
return h('div', [h('span', {}, '商家换货/补发'),]);
|
|
} else if (params.row.serviceStatus == "SELLER_CONFIRM") {
|
|
return h('div', [h('span', {}, '卖家确认收货'),]);
|
|
} else if (params.row.serviceStatus == "SELLER_TERMINATION") {
|
|
return h('div', [h('span', {}, '卖家终止售后'),]);
|
|
} else if (params.row.serviceStatus == "BUYER_CONFIRM") {
|
|
return h('div', [h('span', {}, '买家确认收货'),]);
|
|
} else if (params.row.serviceStatus == "BUYER_CANCEL") {
|
|
return h('div', [h('span', {}, '买家取消售后'),]);
|
|
} else if (params.row.serviceStatus == "COMPLETE") {
|
|
return h('div', [h('span', {}, '完成售后'),]);
|
|
}else if (params.row.serviceStatus == "WAIT_REFUND") {
|
|
return h('div', [h('span', {}, '待平台退款'),]);
|
|
}
|
|
}
|
|
},
|
|
|
|
{
|
|
title: "操作",
|
|
key: "action",
|
|
fixed: "right",
|
|
align: "center",
|
|
width: 100,
|
|
render: (h, params) => {
|
|
return h("div", [
|
|
h(
|
|
"Button",
|
|
{
|
|
props: {
|
|
type: "info",
|
|
size: "small",
|
|
},
|
|
style: {
|
|
marginRight: "5px",
|
|
},
|
|
on: {
|
|
click: () => {
|
|
this.detail(params.row);
|
|
},
|
|
},
|
|
},
|
|
"查看"
|
|
),
|
|
]);
|
|
},
|
|
},
|
|
],
|
|
data: [], // 表单数据
|
|
total: 0, // 表单数据总数
|
|
};
|
|
},
|
|
methods: {
|
|
init() {
|
|
this.getDataList();
|
|
},
|
|
changePage(v) {
|
|
this.searchForm.pageNumber = v;
|
|
this.getDataList();
|
|
this.clearSelectAll();
|
|
},
|
|
changePageSize(v) {
|
|
this.searchForm.pageSize = v;
|
|
this.getDataList();
|
|
},
|
|
handleSearch() {
|
|
this.searchForm.pageNumber = 1;
|
|
this.searchForm.pageSize = 10;
|
|
this.getDataList();
|
|
},
|
|
changeSort(e) {
|
|
this.searchForm.sort = e.key;
|
|
this.searchForm.order = e.order;
|
|
if (e.order === "normal") {
|
|
this.searchForm.order = "";
|
|
}
|
|
this.getDataList();
|
|
},
|
|
clearSelectAll() {
|
|
this.$refs.table.selectAll(false);
|
|
},
|
|
changeSelect(e) {
|
|
this.selectList = e;
|
|
this.selectCount = e.length;
|
|
},
|
|
selectDateRange(v) {
|
|
if (v) {
|
|
this.searchForm.startDate = v[0];
|
|
this.searchForm.endDate = v[1];
|
|
}
|
|
},
|
|
getDataList() {
|
|
this.loading = true;
|
|
API_Order.getAfterSaleOrderPage(this.searchForm).then((res) => {
|
|
this.loading = false;
|
|
if (res.success) {
|
|
this.data = res.result.records;
|
|
this.total = res.result.total;
|
|
}
|
|
});
|
|
this.total = this.data.length;
|
|
this.loading = false;
|
|
},
|
|
//确认收款
|
|
confirmPrice(v) {
|
|
this.$Modal.confirm({
|
|
title: "确认收款",
|
|
content: "您确定要收款吗?",
|
|
loading: true,
|
|
onOk: () => {
|
|
API_Order.orderPay(v.sn).then(res => {
|
|
if (res.success) {
|
|
this.$Message.success("收款成功")
|
|
this.getDataList()
|
|
}
|
|
this.$Modal.remove();
|
|
})
|
|
},
|
|
});
|
|
|
|
},
|
|
|
|
detail(v) {
|
|
let sn = v.sn;
|
|
this.$router.push({
|
|
name: "after-order-detail",
|
|
query: {sn: sn},
|
|
});
|
|
|
|
},
|
|
},
|
|
mounted() {
|
|
this.init();
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
// 建议引入通用样式 可删除下面样式代码
|
|
@import "@/styles/table-common.scss";
|
|
</style>
|