优化退款消息提示
parent
bd322709f3
commit
c281b0a867
|
@ -13,7 +13,7 @@
|
||||||
<Carousel loop :autoplay-speed="5000" class="login-carousel" arrow="never">
|
<Carousel loop :autoplay-speed="5000" class="login-carousel" arrow="never">
|
||||||
<CarouselItem>
|
<CarouselItem>
|
||||||
<div class="demo-carousel" @click='$refs.verify.show = false'>
|
<div class="demo-carousel" @click='$refs.verify.show = false'>
|
||||||
<img src="https://wanmi-b2b.oss-cn-shanghai.aliyuncs.com/201811141632252680" />
|
<img src="https://lili-system.oss-cn-beijing.aliyuncs.com/background.jpg" />
|
||||||
</div>
|
</div>
|
||||||
</CarouselItem>
|
</CarouselItem>
|
||||||
</Carousel>
|
</Carousel>
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
<Row type="flex" justify="center" class="copyright">
|
<Row type="flex" justify="center" class="copyright">
|
||||||
Copyright © {{year}} - Present
|
Copyright © {{year}} - Present
|
||||||
<a href="https://pickmall.cn" target="_blank" style="margin: 0 5px">{{config.title}}</a>
|
<a href="https://pickmall.cn" target="_blank" style="margin: 0 5px">{{config.title}}</a>
|
||||||
版权所有
|
版权所有
|
||||||
</Row>
|
</Row>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,26 +2,101 @@
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Card>
|
<Card>
|
||||||
<Row @keydown.enter.native="handleSearch">
|
<Row @keydown.enter.native="handleSearch">
|
||||||
<Form ref="searchForm" :model="searchForm" inline :label-width="70" class="search-form">
|
<Form
|
||||||
|
ref="searchForm"
|
||||||
|
:model="searchForm"
|
||||||
|
inline
|
||||||
|
:label-width="70"
|
||||||
|
class="search-form"
|
||||||
|
>
|
||||||
<Form-item label="订单号" prop="orderSn">
|
<Form-item label="订单号" prop="orderSn">
|
||||||
<Input type="text" v-model="searchForm.orderSn" placeholder="订单/交易号" clearable style="width: 200px" />
|
<Input
|
||||||
|
type="text"
|
||||||
|
v-model="searchForm.orderSn"
|
||||||
|
placeholder="订单/交易号"
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
/>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Form-item label="退款状态">
|
<Form-item label="退款状态">
|
||||||
<Select v-model="searchForm.isRefund" placeholder="请选择" clearable style="width: 200px">
|
<Select
|
||||||
|
v-model="searchForm.isRefund"
|
||||||
|
placeholder="请选择"
|
||||||
|
clearable
|
||||||
|
style="width: 200px"
|
||||||
|
>
|
||||||
<Option value="false">未退款</Option>
|
<Option value="false">未退款</Option>
|
||||||
<Option value="true">已退款</Option>
|
<Option value="true">已退款</Option>
|
||||||
</Select>
|
</Select>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Form-item label="退款时间">
|
<Form-item label="退款时间">
|
||||||
<DatePicker v-model="selectDate" type="datetimerange" format="yyyy-MM-dd" clearable @on-change="selectDateRange" placeholder="选择起始时间" style="width: 200px"></DatePicker>
|
<DatePicker
|
||||||
|
v-model="selectDate"
|
||||||
|
type="datetimerange"
|
||||||
|
format="yyyy-MM-dd"
|
||||||
|
clearable
|
||||||
|
@on-change="selectDateRange"
|
||||||
|
placeholder="选择起始时间"
|
||||||
|
style="width: 200px"
|
||||||
|
></DatePicker>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
<Button @click="handleSearch" type="primary" icon="ios-search" class="search-btn">搜索</Button>
|
<Button
|
||||||
|
@click="handleSearch"
|
||||||
|
type="primary"
|
||||||
|
icon="ios-search"
|
||||||
|
class="search-btn"
|
||||||
|
>搜索</Button
|
||||||
|
>
|
||||||
</Form>
|
</Form>
|
||||||
</Row>
|
</Row>
|
||||||
<Table :loading="loading" border :columns="columns" :data="data" ref="table" class="mt_10"></Table>
|
<Table
|
||||||
|
:loading="loading"
|
||||||
|
border
|
||||||
|
:columns="columns"
|
||||||
|
:data="data"
|
||||||
|
ref="table"
|
||||||
|
class="mt_10"
|
||||||
|
>
|
||||||
|
<template slot-scope="{ row, index }" slot="actions">
|
||||||
|
|
||||||
|
<Tag color="green" v-if="row.isRefund">已退款</Tag>
|
||||||
|
<div v-if="!row.isRefund">
|
||||||
|
<Tag v-if="!row.errorMessage" color="red">未退款</Tag>
|
||||||
|
<Tooltip v-else placement="left">
|
||||||
|
<Tag color="red">未退款<Icon type="md-help" /></Tag>
|
||||||
|
<div
|
||||||
|
slot="content"
|
||||||
|
style="white-space: normal"
|
||||||
|
v-if="row.paymentName == 'WECHAT'"
|
||||||
|
>
|
||||||
|
{{
|
||||||
|
row.errorMessage ? JSON.parse(row.errorMessage).message : ""
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
slot="content"
|
||||||
|
style="white-space: normal"
|
||||||
|
v-if="row.paymentName == 'ALIPAY'"
|
||||||
|
>
|
||||||
|
{{ row.errorMessage || "" }}
|
||||||
|
</div>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Table>
|
||||||
<Row type="flex" justify="end" class="mt_10">
|
<Row type="flex" justify="end" class="mt_10">
|
||||||
<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"
|
<Page
|
||||||
show-total show-elevator show-sizer></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>
|
</Row>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
@ -87,29 +162,15 @@ export default {
|
||||||
{
|
{
|
||||||
title: "申请时间",
|
title: "申请时间",
|
||||||
key: "createTime",
|
key: "createTime",
|
||||||
minWidth: 200,
|
minWidth: 120,
|
||||||
tooltip: true,
|
tooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "退款状态",
|
title: "退款状态",
|
||||||
key: "isRefund",
|
key: "isRefund",
|
||||||
fixed: "right",
|
align:"center",
|
||||||
width: 120,
|
width: 200,
|
||||||
render: (h, params) => {
|
slot: "actions",
|
||||||
if (params.row.isRefund == "1") {
|
|
||||||
return h("div", [
|
|
||||||
h("Tag", { props: { color: "green" } }, "已退款"),
|
|
||||||
]);
|
|
||||||
} else {
|
|
||||||
return h("div", [
|
|
||||||
h("span", [
|
|
||||||
h("Tag", { props: { color: "orange" } }, "未退款"),
|
|
||||||
h("span", params.row.errorMessage || ''),
|
|
||||||
]),
|
|
||||||
// h("Tag", { props: { color: "orange" } }, "未退款"),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
data: [], // 表单数据
|
data: [], // 表单数据
|
||||||
|
@ -163,4 +224,3 @@ export default {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue