商品管理的商品列表分页

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

View File

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