商品管理的商品列表分页
This commit is contained in:
parent
8767d7e857
commit
e5939bc8b0
|
@ -246,20 +246,20 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
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>
|
||||||
|
|
|
@ -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() //重新发起请求
|
||||||
|
|
Loading…
Reference in New Issue
Block a user