商品管理的商品列表分页

This commit is contained in:
yuanteng 2024-10-31 17:56:15 +08:00
parent 8767d7e857
commit e5939bc8b0
2 changed files with 69 additions and 70 deletions

View File

@ -250,16 +250,16 @@
import { ElMessage } from 'element-plus';
import { ref, onMounted } from 'vue';
import myAxios from "@/api/myAxios";
const pageNum = ref(0);
const pageSize = ref(0);
//
const total = ref(0);
const id = ref([]);
onMounted(() => {
load();
});
const handleSelectionChange = (row: any) => {
id.value = JSON.parse(JSON.stringify(row));
};
//
const searchParams: any = ref({
//
current: 1,
//
pageSize: 5
})
const username = ref('');
const detailDialogVisible = ref(false);
const editDialogVisible = ref(false);
@ -267,6 +267,7 @@ const types = ref('');
const Region = ref('');
let selectedProduct = ref('');
const loading = ref(false)
const tableData = ref([]);
let editForm = ref({
id: '',
goodImg: '',
@ -280,6 +281,13 @@ let editForm = ref({
label: '',
introDetail: '',
});
//
onMounted(() => {
getGoodList()
})
const handleSelectionChange = (row: any) => {
id.value = JSON.parse(JSON.stringify(row));
};
const handleView = (index: number, row: any) => {
selectedProduct = row;
detailDialogVisible.value = true;
@ -298,9 +306,7 @@ const handleOff = (index: number, row: any) => {
row.attribute = '上架';
}
};
onMounted(() => {
getTableData()
})
const handleDelete = (index: number, row: any) => {
const confirmDelete = window.confirm('您确定要删除该商品吗?');
if (confirmDelete) {
@ -311,13 +317,15 @@ const handleDelete = (index: number, row: any) => {
});
}
};
const searchParams: any = ref({})
const getTableData = async () => {
const getGoodList = async () => {
loading.value = true;
try {
const res = await myAxios.post('/api/goods/update', {...tableData.value });
const res = await myAxios.post('/goods/list/page', {...searchParams.value });
console.log(res.data)
if (res.data.code === 1) {
tableData.value = res.data.data.records;
total.value = parseInt(res.data.data.total)
} else {
ElMessage({
message: '获取数据失败',
@ -327,73 +335,65 @@ const getTableData = async () => {
ElMessage({
message: '发生错误',
});
} finally {
loading.value = false;
}
}
const tableData = ref([
{
id: '',
goodImg: '',
name: '',
price: '',
type: '',
inventory: '',//
isShelves: '',
region: '',
label: '',//
introDetail: '',//
attribute:'',
},
]);
//
const handleSizeChange =(newSize : any)=>{
searchParams.value.pageSize = newSize //
getGoodList()
}
//
const handleCurrentChange = (Current : any) => {
searchParams.value.current = Current
getGoodList()
}
const reset = () => {
username.value = '';
types.value = '';
Region.value = '';
};
const saveEdit = () => {
const indexToUpdate = tableData.findIndex(item => item.id === editForm.value.id);
if (indexToUpdate!== -1) {
tableData[indexToUpdate] = {
...tableData[indexToUpdate],
...editForm.value,
};
ElMessage({
message: '编辑成功',
type: 'success',
});
editDialogVisible.value = false;
};
};
// const saveEdit = () => {
// const indexToUpdate = tableData.findIndex(item => item.id === editForm.value.id);
// if (indexToUpdate!== -1) {
// tableData[indexToUpdate] = {
// ...tableData[indexToUpdate],
// ...editForm.value,
// };
// ElMessage({
// message: '',
// type: 'success',
// });
// editDialogVisible.value = false;
// };
// };
const load = async () => {
await instance.get('/admin/findAllUsers').then(res => {
console.log(res.data.data);
res.data.data.forEach(item => {
console.log(item);
});
tableData.value = res.data.data;
});
};
// const getListPage = async () => {
// await instance.post('/goods/list/page').then(res => {
// console.log(res.data.data);
// res.data.data.forEach(item => {
// console.log(item);
// });
// tableData.value = res.data.data;
// });
// };
const delBatchSuccess = () => {
ElMessage({
message: '批量删除成功',
type: 'success',
});
};
const delBatch = async () => {
await instance.post('').then(res => {
if (res.data.code === '200') {
load();
} else {
ElMessage({
message: '批量删除失败',
type: 'error',
});
}
});
};
// const delBatch = async () => {
// await instance.post('').then(res => {
// if (res.data.code === '200') {
// load();
// } else {
// ElMessage({
// message: '',
// type: 'error',
// });
// }
// });
// };
</script>
<style scoped>

View File

@ -72,7 +72,6 @@
import { ElMessage } from 'element-plus';
import myAxios from '@/api/myAxios';
import {ref, onMounted} from 'vue'
import { da } from 'element-plus/es/locales.mjs';
//
const tableData = ref([])
@ -114,7 +113,7 @@ const getUserList = async () => {
const handleSelectionChange = (val:any)=>{
console.log(val)
}
//
//
const handleSizeChange = (newSize:any) => {
searchParams.value.pageSize = newSize //
getUserList() //