Changes
This commit is contained in:
parent
1204b77c7d
commit
d3aa58af12
2812
package-lock.json
generated
2812
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||
|
@ -139,6 +139,19 @@
|
|||
</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>
|
||||
</el-aside>
|
||||
|
|
|
@ -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
117
src/views/Refund/Refund.vue
Normal 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>
|
|
@ -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',
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user