商品订单还有些问题

This commit is contained in:
yuanteng 2024-11-05 16:45:53 +08:00
parent 4951ab1daf
commit ee87e55b63
3 changed files with 319 additions and 86 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<el-input style="width: 200px; height: 30px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入商品名称" <el-input style="width: 200px; height: 30px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入订单编号"
v-model="name"></el-input> v-model="name"></el-input>
<el-button class="ml-5" type="primary" @click="load" style="height: 25px;">搜索</el-button> <el-button class="ml-5" type="primary" @click="load" style="height: 25px;">搜索</el-button>
<el-button type="warning" @click="reset" style="height:25px">重置</el-button> <el-button type="warning" @click="reset" style="height:25px">重置</el-button>
@ -15,18 +15,43 @@
</template> </template>
</el-popconfirm> </el-popconfirm>
</div> </div>
<!-- 数据展示层 -->
<el-table :data="tableData" border stripe header-cell-class-name="headerBg" <el-table :data="tableData" border stripe header-cell-class-name="headerBg"
:cell-style="{ 'text-align': 'center', 'font-size': '16px' }" @selection-change="handleSelectionChange" :cell-style="{ 'text-align': 'center', 'font-size': '16px' }" @selection-change="handleSelectionChange"
:header-cell-style="{ 'text-align': 'center' }"> :header-cell-style="{ 'text-align': 'center' }">
<el-table-column type="selection" width="55"></el-table-column> <el-table-column type="selection" width="55" fixed="left"></el-table-column>
<el-table-column prop="id" label="订单id" 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="userId" label="用户id"></el-table-column>
<el-table-column prop="orderNumber" label="订单编号" width="180"></el-table-column> <el-table-column prop="orderNumber" label="订单编号" width="150"></el-table-column>
<!-- 商品信息需要发第二次请求 -->
<el-table-column label="所购买的商品" width="100">
<el-table-column label="展开所有商品" type="expand" width="100">
<el-table :data="orderDetail">
<el-table-column label="商品编号" prop="id" />
<el-table-column label="商品名称" prop="orderDetail[num].type" />
<el-table-column label="商品图片" prop="orderDetail[num].price" />
<el-table-column label="类别" prop="city" />
<el-table-column label="商品单价" prop="address" />
<el-table-column label="是否是限定商品" prop="zip" />
<el-table-column label="数量" prop="address" />
</el-table>
</el-table-column>
</el-table-column>
<el-table-column label="地址信息快照" width="180">
<el-table-column prop="addressSnapshot.name" label="收货人" />
<el-table-column prop="addressSnapshot.phone" label="手机号" />
<el-table-column prop="addressSnapshot.region" label="地区" />
<el-table-column prop="addressSnapshot.detailAddress" label="详细地址" />
</el-table-column>
<el-table-column label="优惠卷信息快照" width="50">
<el-table-column prop="couponSnapshot.name" label="优惠卷名称" />
<el-table-column prop="couponSnapshot.conditionAmount" label="优惠金额" />
</el-table-column>
<el-table-column prop="totalAmount" label="订单总金额"></el-table-column> <el-table-column prop="totalAmount" label="订单总金额"></el-table-column>
<el-table-column prop="orderStatus" label="订单状态"></el-table-column> <el-table-column prop="orderStatus" label="订单状态"></el-table-column>
<el-table-column label="操作" width="250px"> <el-table-column label="操作" width="120px" fixed="right">
<template #default="scope"> <template #default="scope">
<el-button size="small" @click="ReviseOrView(scope.$index, scope.row , 0)"> <el-button size="small" @click="showDetail(scope.$index, scope.row , 0)">
详情 详情
</el-button> </el-button>
<el-popconfirm class="ml-5" confirm-button-text='确定' cancel-button-text='取消' icon="InfoFilled" icon-color="red" <el-popconfirm class="ml-5" confirm-button-text='确定' cancel-button-text='取消' icon="InfoFilled" icon-color="red"
@ -42,12 +67,17 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<div style="padding: 10px 0"> <div style="padding: 10px 0">
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" <el-pagination @size-change="handleSizeChange"
:current-page="searchParams.current" :page-size="searchParams.pageSize" :page-sizes="[5, 10, 15, 20]" @current-change="handleCurrentChange"
:small="null" :disabled="null" :background="null" layout="total, sizes, prev, pager, next, jumper" :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" /> :total="total" />
</div> </div>
<el-dialog title="订单详情信息" v-model="orderList" width="60%"> <!-- <el-dialog title="订单详情信息" v-model="orderList" width="60%">
<el-form label-width="100px" size="default"> <el-form label-width="100px" size="default">
<el-form-item label="订单id"> <el-form-item label="订单id">
<el-input v-model="orderList.id" autocomplete="off"></el-input> <el-input v-model="orderList.id" autocomplete="off"></el-input>
@ -95,14 +125,14 @@
<el-button style="height: 30px" type="primary" @click=save>确认</el-button> <el-button style="height: 30px" type="primary" @click=save>确认</el-button>
</div> </div>
</template> </template>
</el-dialog> </el-dialog> -->
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import {ref} from "vue"; import {onMounted, ref} from "vue";
import myAxios from "@/api/myAxios"; import myAxios from "@/api/myAxios";
import {ElMessage} from "element-plus"; 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({});
@ -112,6 +142,13 @@ const searchParams: any = ref({ //封装分页
current: 1, // current: 1, //
pageSize: 5 // pageSize: 5 //
}) })
const num = ref(0)
const orderDetail : any = ref([]) //
//
const orderList = ref([{}])
onMounted(()=>{
getOrderList() //
})
const handleSizeChange = (newSize: any) => { const handleSizeChange = (newSize: any) => {
searchParams.value.pageSize = newSize // searchParams.value.pageSize = newSize //
getOrderList() getOrderList()
@ -121,14 +158,29 @@ const handleCurrentChange = (Current: any) => {
getOrderList() getOrderList()
} }
const handleSelectionChange = (row: any) => { const handleSelectionChange = (row: any) => {
id.value = JSON.parse(JSON.stringify(row)); // id.value = JSON.parse(JSON.stringify(row));
} }
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);
if (res.data.code === 1) { if (res.data.code === 1) {
orderList.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-->',tableData.value);
//
console.log('数组长度--->',tableData.value.length);
for(let key in tableData.value) {
num.value = parseInt(key)
const resOrderDetail = await myAxios.post('/order/list/item',{id:tableData.value[key].id}) //
if( resOrderDetail.data.code === 1 ) {
orderDetail.value[num.value] = resOrderDetail.data.data //
}
console.log('请求返回的resOrderDetail--->',resOrderDetail.data);
console.log('第',key,'次返回的orderDetail-->',orderDetail.value[num.value]);
console.log('总的orderDetail-->',orderDetail.value);
}
// console.log(orderDetail.value);
} else { } else {
ElMessage({ ElMessage({
message: '获取数据失败', message: '获取数据失败',
@ -140,36 +192,16 @@ const getOrderList = async () => {
}); });
} }
} }
const orderList = ref({
id:'',
userId:'',
addressSnapshot:{
name:'',
phone:'',
region:'',
detailAddress:''
},
couponSnapshot:{
name:'',
conditionAmount:''
},
totalAmount:'',
orderStatus:'',
createTime:'',
updateTime:'',
isDelete:'',
orderNumber:'',
})
const delBatch =()=>{ const delBatch =()=>{
// //
} }
const ReviseOrView = (index: number, row: any , flag : number) => { const showDetail = (index: number, row: any , flag : number) => {
title.value = "编辑商品" title.value = "订单详情"
DialogVisible.value = true; DialogVisible.value = true;
editForm.value = row; editForm.value = row;
}; };
const deleteProduct = async (index: number) => { const deleteProduct = async (index: number) => {
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: index })
console.log(res) console.log(res)
if (res.data.code === 1) { if (res.data.code === 1) {

View File

@ -1,4 +1,4 @@
<!--<template>--> <!-- <template>-->
<!--<div>--> <!--<div>-->
<!-- <el-input style="width: 200px; height: 30px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入商品名称"--> <!-- <el-input style="width: 200px; height: 30px; margin-right: 10px;" suffix-icon="Search" placeholder="请输入商品名称"-->
<!-- v-model="id"></el-input>--> <!-- v-model="id"></el-input>-->
@ -164,4 +164,4 @@
<!--<style lang="scss" scoped>--> <!--<style lang="scss" scoped>-->
<!--</style>--> <!--</style> -->

View File

@ -1,51 +1,252 @@
<template> <template>
<div> switch parent border: <el-switch v-model="parentBorder" /> switch child
<div border: <el-switch v-model="childBorder" />
v-for="(item, index) in items" <el-table :data="tableData" :border="parentBorder" style="width: 100%">
:key="index" <el-table-column type="expand">
class="box" <template #default="props">
@click="changeColor(index)" <div m="4">
:style="getBoxStyle(index)" <p m="t-0 b-2">State: {{ props.row.state }}</p>
> <p m="t-0 b-2">City: {{ props.row.city }}</p>
{{ item }} <p m="t-0 b-2">Address: {{ props.row.address }}</p>
</div> <p m="t-0 b-2">Zip: {{ props.row.zip }}</p>
<h3>Family</h3>
<el-table :data="props.row.family" :border="childBorder">
<el-table-column label="Name" prop="name" />
<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> <script lang="ts" setup>
import { ref } from 'vue'; import { ref } from 'vue'
export default { const parentBorder = ref(false)
setup() { const childBorder = ref(false)
const items = ref(['Box 1', 'Box 2', 'Box 3']); const tableData = [
const currentColor = ref(null); {
date: '2016-05-03',
const changeColor = (index) => { name: 'Tom',
currentColor.value = index; state: 'California',
}; city: 'San Francisco',
address: '3650 21st St, San Francisco',
const getBoxStyle = (index) => ({ zip: 'CA 94114',
backgroundColor: currentColor.value === index ? 'lightblue' : 'gray' family: [
}); {
name: 'Jerry',
return { state: 'California',
items, city: 'San Francisco',
changeColor, address: '3650 21st St, San Francisco',
getBoxStyle, 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>
.box {
width: 200px;
height: 100px;
color: black;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: 5px 0;
}
</style>