This commit is contained in:
chen-xin-zhi 2025-02-19 13:41:35 +08:00
parent 1204b77c7d
commit d3aa58af12
6 changed files with 2231 additions and 727 deletions

2812
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
<template>
<el-aside :width="sideWidth + 'px'" style="background-color: rgb(238, 241, 246); box-shadow: rgba(0, 21, 155, 0.35) 2px 0 6px">
<el-aside :width="sideWidth + 'px'" style="position: sticky; bottom: 0; left: 0; height: auto; background-color: rgb(170, 113, 81); box-shadow: rgba(0, 21, 155, 0.35) 2px 0 6px">
<el-aside :style="AsideObj">
<el-menu
style="height: 100vh; overflow-x: hidden"
style=" overflow-y: auto; overflow-x: hidden"
background-color="rgb(170, 113, 81)"
:collapse="isCollapse"
:collapse-transition="false"
@ -138,6 +138,19 @@
</el-menu-item>
</el-sub-menu>
<el-sub-menu index="7">
<template #title>
<el-icon><Switch /></el-icon>
<span>退款管理</span>
</template>
<el-menu-item index="/refund">
<el-icon><Operation /></el-icon>
<span slot="title">退款中心</span>
</el-menu-item>
</el-sub-menu>
</el-menu>
</el-aside>

View File

@ -109,7 +109,12 @@ export const routes = [
path: '/TimeCenter',
name: '预约时间中心',
component: ()=> import("../views/CostumeAppointments/TimeCenter.vue")
}
},
{
path: '/refund',
name:'退款管理',
component: ()=> import("../views/Refund/Refund.vue")
},
]
},
{

117
src/views/Refund/Refund.vue Normal file
View File

@ -0,0 +1,117 @@
<template>
<!-- 修改前请注释以前的 -->
<!-- 搜索 -->
<div>
<el-input style="width: 240px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入商户单号"
v-model="outTradeNo"></el-input>
<el-button class="ml-5" type="primary" @click="onSearch(outTradeNo)" style="height: 25px; margin-right: 10px;">搜索</el-button>
<el-button type="warning" @click="reset" style="height:25px">重置</el-button>
</div>
<div style="margin: 15px 0">
</div>
<!-- 数据展示 -->
<el-table :data="tableData" border stripe header-cell-class-name="headerBg"
:cell-style="{ 'text-align': 'center', 'font-size': '16px' }" @selection-change="handleSelectionChange"
:header-cell-style="{ 'text-align': 'center' }">
<el-table-column prop="id" label="退款编号" width="80">
<template #default="{ $index }">
{{ $index + 1 }}
</template>
</el-table-column>
<el-table-column prop="outTradeNo" label="商户单号"></el-table-column>
<el-table-column prop="outRefundNo" label="退款单号"></el-table-column>
<el-table-column prop="refundAmount" label="退款金额" width="180">
<template #default="scope">
<div>
{{ scope.row.refundAmount }}
</div>
</template>
</el-table-column>
<el-table-column prop="createTime" label="创建时间"></el-table-column>
</el-table>
<!-- 分页器 -->
<div style="padding: 10px 0">
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
:current-page="searchParams.current" :page-size="searchParams.pageSize" :page-sizes="[5, 10, 15, 20]"
:small="null" :disabled="null" :background="null" layout="total, sizes, prev, pager, next, jumper"
:total="total" />
</div>
<!-- 编辑/详情表单 -->
</template>
<script setup lang="ts">
import { ElMessage , type UploadProps , genFileId ,type UploadRawFile } from 'element-plus';
import { ref, onMounted, inject } from 'vue';
import myAxios from "@/api/myAxios";
import { handleChange, removePic, handleRemove,Exceed_ProductImg, ImgArr ,editForm} from '@/utils/entityProduct/picUpload';
const total = ref(0); //
const outTradeNo = ref('');
const searchParams: any = ref({ //
current: 1, //
pageSize: 5, //
sortField: "id", //ID
sortOrder: "descend", //
outTradeNo: outTradeNo.value
})
//
const tableData : any= ref([]); //
const reload : any = inject("reload") //
onMounted(() => { //
getProductList()
})
const getProductList = async () => {
try {
const res = await myAxios.post('/refund/list', { ...searchParams.value });
console.log('res--->',res.data)
if (res.data.code === 1) {
tableData.value = res.data.data.records;
total.value = parseInt(res.data.data.total) //
} else {
ElMessage({
message: '获取数据失败',
});
return;
}
} catch (error) {
ElMessage({
message: '发生错误',
});
}
}
//
//
const handleSizeChange = (newSize: any) => {
searchParams.value.pageSize = newSize //
getProductList()
}
//
const handleCurrentChange = (Current: any) => {
searchParams.value.current = Current
getProductList()
}
//
const reset = () => {
reload()
};
const onSearch = (data : String)=>{ //
searchParams.value.outTradeNo = data
searchParams.value.current = 1
getProductList()
}
const handleSelectionChange =()=>{}
</script>
<style scoped>
.headerBg {
background-color: #eee !important;
}
</style>

View File

@ -102,6 +102,7 @@ const handleRemove: UploadProps['onRemove'] = (uploadFile, uploadFiles) => {
const onSubmit = async () => {
const values = Object.values(form.value);
// 使some()
console.log(form.value.appointmentDateAddRequestList)
if (values.some(value => value === null || value === undefined || value === '') || form.value.appointmentDateAddRequestList.length == 0) {
ElMessage({
type: 'warning',

View File

@ -4,8 +4,8 @@
<div>
<el-input style="width: 200px; height: 30px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入课程名称"
v-model="productName"></el-input>
<el-form-item label="商品状态" style="width: 200px;margin-right: 10px;display: inline-block">
<el-select v-model="state" placeholder="请选择" @change="(event: any) => searchByState(event)">
<el-form-item label="" style="width: 200px; min-height: 24px; margin-right: 10px;display: inline-block">
<el-select v-model="state" placeholder="商品状态" @change="(event: any) => searchByState(event)">
<el-option label="已上架" value="1" />
<el-option label="已下架" value="0" />
</el-select>