|
|
|
@ -46,7 +46,7 @@ |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<el-button type="primary" @click="getRefund">查询</el-button> |
|
|
|
<el-button type="editRow" @click="reset">重置</el-button> |
|
|
|
<el-button type="success" @click="reset">重置</el-button> |
|
|
|
<!-- <el-button type="warning">导出excel</el-button> |
|
|
|
<el-button type="primary">查看导出列表</el-button> --> |
|
|
|
</div> |
|
|
|
@ -308,6 +308,10 @@ const getRefund = async function () { |
|
|
|
// 提交 |
|
|
|
const submitRefund = async function () { |
|
|
|
try { |
|
|
|
if(typeof editForm.value.refundAmount !== 'number'){ |
|
|
|
ElMessage.error('请输入数字') |
|
|
|
return |
|
|
|
} |
|
|
|
const params = { |
|
|
|
refundVoucher: editForm.value.imageUrl, |
|
|
|
refundTime: editForm.value.refundTime ? dayjs(editForm.value.refundTime).format('YYYY-MM-DD HH:mm:ss') : "", |
|
|
|
@ -653,8 +657,8 @@ const disabledDate = (time) => { |
|
|
|
const reset = function () { |
|
|
|
searchForm.value = { |
|
|
|
jwcode: '', |
|
|
|
market: searchForm.value.market, |
|
|
|
statuses: searchForm.value.statuses |
|
|
|
market: [], |
|
|
|
statuses: [] |
|
|
|
} |
|
|
|
dateRange.value = [] |
|
|
|
getRefund() |
|
|
|
|