订单列表完善

This commit is contained in:
yuanteng 2024-11-11 09:29:36 +08:00
parent 74c92216f8
commit f494a44d81
2 changed files with 98 additions and 294 deletions

View File

@ -21,9 +21,9 @@
:header-cell-style="{ 'text-align': 'center' }"> :header-cell-style="{ 'text-align': 'center' }">
<el-table-column type="selection" width="55" fixed="left"></el-table-column> <el-table-column type="selection" width="55" fixed="left"></el-table-column>
<el-table-column prop="id" label="订单编号" width="80"></el-table-column> <el-table-column prop="id" label="订单编号" width="80"></el-table-column>
<el-table-column prop="userId" label="用户id"></el-table-column> <el-table-column prop="createTime" label="下单时间" width="180"></el-table-column>
<el-table-column prop="userName" label="用户名" width="100"></el-table-column> <el-table-column prop="userName" label="用户名" width="80"></el-table-column>
<el-table-column prop="orderNumber" label="订单编号" width="150"></el-table-column> <el-table-column prop="orderNumber" label="订单编号" width="180"></el-table-column>
<el-table-column label="所购买的商品" width="100"> <el-table-column label="所购买的商品" width="100">
<el-table-column label="展开所有商品" type="expand" width="100"> <el-table-column label="展开所有商品" type="expand" width="100">
<template #default="props"> <template #default="props">
@ -47,9 +47,9 @@
</el-table-column> </el-table-column>
<el-table-column label="地址信息快照" width="180"> <el-table-column label="地址信息快照" width="180">
<el-table-column prop="addressSnapshot.name" label="收货人" /> <el-table-column prop="addressSnapshot.name" label="收货人" />
<el-table-column prop="addressSnapshot.phone" label="手机号" /> <el-table-column prop="addressSnapshot.phone" label="手机号" width="180"/>
<el-table-column prop="addressSnapshot.region" label="地区" /> <el-table-column prop="addressSnapshot.region" label="地区" width="180"/>
<el-table-column prop="addressSnapshot.detailAddress" label="详细地址" /> <el-table-column prop="addressSnapshot.detailAddress" label="详细地址" width="180"/>
</el-table-column> </el-table-column>
<el-table-column label="优惠卷信息快照" width="50"> <el-table-column label="优惠卷信息快照" width="50">
<el-table-column prop="couponSnapshot.name" label="优惠卷名称" /> <el-table-column prop="couponSnapshot.name" label="优惠卷名称" />
@ -60,13 +60,13 @@
<el-table-column prop="orderStatus" label="快递单号"></el-table-column> <el-table-column prop="orderStatus" label="快递单号"></el-table-column>
<el-table-column label="操作" width="220px" fixed="right"> <el-table-column label="操作" width="220px" fixed="right">
<template #default="scope"> <template #default="scope">
<el-button size="small" @click="showDetail(scope.$index, scope.row, 0)"> <el-button size="small" @click="showDetail(scope.$index, scope.row)">
详情 详情
</el-button> </el-button>
<el-button size="small" @click=""> <el-button size="small" @click="deliverGoods(scope.row)">
发货 发货
</el-button> </el-button>
<el-button size="small" @click="" type="warning" plain> <el-button size="small" @click="deleteOrder(scope.row)" type="warning" plain>
取消订单 取消订单
</el-button> </el-button>
</template> </template>
@ -78,55 +78,47 @@
:small="null" :disabled="null" :background="null" layout="total, sizes, prev, pager, next, jumper" :small="null" :disabled="null" :background="null" layout="total, sizes, prev, pager, next, jumper"
:total="total" /> :total="total" />
</div> </div>
<!-- <el-dialog title="订单详情信息" v-model="orderList" width="60%"> <el-dialog title="订单详情信息" v-model="DialogVisible" width="60%">
<el-form label-width="100px" size="default"> <el-form label-width="100px" size="default" :model="editForm">
<el-form-item label="订单id"> <el-form-item label="订单编号">
<el-input v-model="orderList.id" autocomplete="off"></el-input> <el-input v-model="editForm.addressSnapshot" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="用户id">
<el-input v-model="orderList.userId" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="用户名称"> <el-form-item label="用户名称">
<el-input v-model="orderList.addressSnapshot.name" autocomplete="off"></el-input> <el-input v-model="editForm.addressSnapshot.name" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="订单编号"> <el-form-item label="收货手机">
<el-input v-model="orderList.addressSnapshot" autocomplete="off"></el-input> <el-input v-model="editForm.addressSnapshot.phone" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="收货地址"> <el-form-item label="收货地址">
<el-input v-model="orderList.addressSnapshot.region" autocomplete="off"></el-input> <el-input v-model="editForm.addressSnapshot.region" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="详细地址"> <!-- 这里的商品明细就不放图片了 -->
<el-input v-model="orderList.addressSnapshot.detailAddress" autocomplete="off"></el-input> <el-form-item label="商品明细">
</el-form-item> <el-input v-model="editForm.addressSnapshot.detailAddress" autocomplete="off"></el-input>
<el-form-item label="电话">
<el-input v-model="orderList.addressSnapshot.phone" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="优惠券名称">
<el-input v-model="orderList.couponSnapshot.name" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="满减金额">
<el-input v-model="orderList.couponSnapshot.conditionAmount" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="订单总金额"> <el-form-item label="订单总金额">
<el-input v-model="orderList.totalAmount" autocomplete="off"></el-input> <el-input v-model="editForm.totalAmount" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="订单状态"> <el-form-item label="订单状态">
<el-input v-model="orderList.orderStatus" autocomplete="off"></el-input> <el-input v-model="editForm.orderStatus" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="快递单号">
<!-- <el-input v-model="editForm.totalAmount" autocomplete="off"></el-input> -->
</el-form-item> </el-form-item>
<el-form-item label="创建时间"> <el-form-item label="创建时间">
<el-input v-model="orderList.createTime" autocomplete="off"></el-input> <el-input v-model="editForm.createTime" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="更新时间"> <el-form-item label="更新时间">
<el-input v-model="orderList.updateTime" autocomplete="off"></el-input> <el-input v-model="editForm.updateTime" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<template #footer> <template #footer>
<div class="dialog-footer"> <div class="dialog-footer">
<el-button style="height: 30px;" @click="dialogFormVisible = false">取消</el-button> <el-button style="height: 30px;" @click="DialogVisible = false">取消</el-button>
<el-button style="height: 30px" type="primary" @click=save>确认</el-button> <el-button style="height: 30px" type="primary" @click="DialogVisible = false">确认</el-button>
</div> </div>
</template> </template>
</el-dialog> --> </el-dialog>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
@ -136,8 +128,8 @@ import { ElMessage } from "element-plus";
const tableData: any = ref([]); // const tableData: any = ref([]); //
const total = ref(0); const total = ref(0);
const title = ref('') const title = ref('')
const editForm: any = ref({}); const editForm: any = ref({}); //
const DialogVisible = ref(true); const DialogVisible = ref(false); //
const name = ref('') const name = ref('')
const searchParams: any = ref({ // const searchParams: any = ref({ //
current: 1, // current: 1, //
@ -165,11 +157,11 @@ const handleSelectionChange = (row: any) => {
const getOrderList = async () => { const getOrderList = async () => {
try { try {
const res = await myAxios.post('/order/list/page', { ...searchParams.value }); const res = await myAxios.post('/order/list/page', { ...searchParams.value });
console.log('订单信息--->', res.data.data); // console.log('--->', res.data.data);
if (res.data.code === 1) { if (res.data.code === 1) {
tableData.value = res.data.data.records; tableData.value = res.data.data.records;
total.value = parseInt(res.data.data.total) total.value = parseInt(res.data.data.total)
console.log('表单信息--->', tableData.value[0].orderItemList); // console.log('--->', tableData.value);
} else { } else {
ElMessage({ ElMessage({
message: '获取数据失败', message: '获取数据失败',
@ -184,14 +176,33 @@ const getOrderList = async () => {
const delBatch = () => { const delBatch = () => {
// //
} }
const showDetail = (index: number, row: any, flag: number) => { //
const showDetail = (index: number, row: any) => {
title.value = "订单详情" title.value = "订单详情"
DialogVisible.value = true; DialogVisible.value = true;
editForm.value = row; editForm.value = row;
console.log('editForm--->',editForm.value);
}; };
const deleteProduct = async (index: number) => { //
const deliverGoods = async (row : any)=>{
// console.log('status--->',row.id);
const res = await myAxios.post('/order/update',{
id: row.id,
orderStatus: "已发货"
})
//
if(res.data.code === 1) {
ElMessage({
type: 'success',
message: '发货成功'
})
getOrderList()
}
}
//
const deleteOrder = async (row : any) => {
// console.log(typeof index) // console.log(typeof index)
const res = await myAxios.post('/goods/delete', { id: index }) const res = await myAxios.post('/goods/delete', { id: row.id })
console.log(res) console.log(res)
if (res.data.code === 1) { if (res.data.code === 1) {
ElMessage({ ElMessage({
@ -206,6 +217,10 @@ const reset = () => {
}; };
const load = () => { } const load = () => { }
//
const save =()=>{
}
</script> </script>
<style lang="scss" scoped></style> <style lang="scss" scoped></style>

View File

@ -1,252 +1,41 @@
<template> <template>
switch parent border: <el-switch v-model="parentBorder" /> switch child <div>
border: <el-switch v-model="childBorder" /> <span
<el-table :data="tableData" :border="parentBorder" style="width: 100%"> :style="getStyle(1)"
<el-table-column type="expand"> @click="selectText(1)"
<template #default="props"> >
<div m="4"> 文字1
<p m="t-0 b-2">State: {{ props.row.state }}</p> </span>
<p m="t-0 b-2">City: {{ props.row.city }}</p> <span
<p m="t-0 b-2">Address: {{ props.row.address }}</p> :style="getStyle(2)"
<p m="t-0 b-2">Zip: {{ props.row.zip }}</p> @click="selectText(2)"
<h3>Family</h3> >
<el-table :data="props.row.family" :border="childBorder"> 文字2
<el-table-column label="Name" prop="name" /> </span>
<el-table-column label="State" prop="state" />
<el-table-column label="City" prop="city" />
<el-table-column label="Address" prop="address" />
<el-table-column label="Zip" prop="zip" />
</el-table>
</div> </div>
</template>
</el-table-column>
<el-table-column label="Date" prop="date" />
<el-table-column label="Name" prop="name" />
</el-table>
</template> </template>
<script lang="ts" setup> <script setup>
import { ref } from 'vue' import { ref } from 'vue';
const parentBorder = ref(false) const selectedText = ref(1); //
const childBorder = ref(false)
const tableData = [ //
{ const getStyle = (textNum) => {
date: '2016-05-03', return {
name: 'Tom', 'border-bottom': selectedText.value === textNum ? '2px solid black' : 'none',
state: 'California', 'cursor': 'pointer'
city: 'San Francisco', };
address: '3650 21st St, San Francisco', };
zip: 'CA 94114',
family: [ const selectText = (textNum) => {
{ selectedText.value = textNum; //
name: 'Jerry', };
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-02',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-04',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-01',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-08',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-06',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
{
date: '2016-05-07',
name: 'Tom',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
family: [
{
name: 'Jerry',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Spike',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
{
name: 'Tyke',
state: 'California',
city: 'San Francisco',
address: '3650 21st St, San Francisco',
zip: 'CA 94114',
},
],
},
]
</script> </script>
<style scoped>
span {
margin-right: 10px;
padding-bottom: 5px;
}
</style>