-
+
{
try {
searchParams.value.orderNumber = orderNumber.value
const res = await myAxios.post('/clothesRent/list', { ...searchParams.value });
- // console.log('订单信息--->', res.data.data);
+ console.log('订单信息--->', res.data.data);
if (res.data.code === 1) {
tableData.value = res.data.data.records;
total.value = parseInt(res.data.data.total)
@@ -205,4 +217,9 @@ const cancelOrder = async (row: any) => { //取消订单的方法(未支付能
width: 100%;
min-width: 1000px;
}
+.titleHeader {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 20px
+}
\ No newline at end of file
diff --git a/src/views/ServiceType/ProductCenter.vue b/src/views/ServiceType/ProductCenter.vue
index 4022f1c..78ccecb 100644
--- a/src/views/ServiceType/ProductCenter.vue
+++ b/src/views/ServiceType/ProductCenter.vue
@@ -321,7 +321,7 @@ const onSearch = (data : String)=>{ //搜索按钮方法
//批量删除
const delBatch = async ()=>{
console.log(idList.value);
- const res = await myAxios.post('/goods/delBatch',{
+ const res = await myAxios.post('/goods/delBatch/service',{
idList: idList.value
})
console.log(res.data);
@@ -330,7 +330,7 @@ const delBatch = async ()=>{
type: 'success',
message: '批量删除成功'
})
- getProductList()
+ await getProductList()
} else {
ElMessage.error('删除失败')
}
diff --git a/src/views/User/PersonalCenter.vue b/src/views/User/PersonalCenter.vue
index c96237c..d3d96c2 100644
--- a/src/views/User/PersonalCenter.vue
+++ b/src/views/User/PersonalCenter.vue
@@ -25,6 +25,7 @@
+ {{ btnText }}
确认
@@ -37,12 +38,12 @@ import { ref, onBeforeMount } from 'vue'
import { SuccessInfo, WarnInfo } from '@/utils/messageInfo';
import { useRoute } from "vue-router";
import PreviewSingleImgUpload from "@/utils/imgUpload/PreviewSingleImgUpload.vue";
-import {invInput} from "@/utils/entityProduct/globalVar";
const disabled = ref(true) //表单是否禁用
const userForm: any = ref({}) //用户表单
const route = useRoute()
+const btnText = ref('编辑') //编辑按钮
onBeforeMount(()=>{
if(route.params.flag === '1') {
@@ -62,6 +63,17 @@ const getUserInfo = async () => {
}
}
+const changeBtnStatus = () => {
+ if(btnText.value === '编辑') {
+ disabled.value = false
+ btnText.value = '取消'
+ } else if(btnText.value === '取消') {
+ disabled.value = true
+ btnText.value = '编辑'
+ getUserInfo()
+ }
+}
+
const saveEdit = async ()=>{ //保存用户信息
const res = await myAxios.post('/user/update',{
id: userForm.value.id,
@@ -69,11 +81,13 @@ const saveEdit = async ()=>{ //保存用户信息
userName: userForm.value.userName,
userAvatar: userForm.value.userAvatar,
phone: userForm.value.phone,
- userRole: userForm.value.userRole
+ userRole: userForm.value.userRole,
+ points: userForm.value.points
})
console.log('更新信息--->',res.data)
if (res.data.code === 1) {
disabled.value = true
+ btnText.value = '编辑'
SuccessInfo('更新成功')
} else {
WarnInfo('更新失败')
diff --git a/src/views/User/SingleUserDetail.vue b/src/views/User/SingleUserDetail.vue
index 84e9bd7..54e6bdc 100644
--- a/src/views/User/SingleUserDetail.vue
+++ b/src/views/User/SingleUserDetail.vue
@@ -69,7 +69,8 @@ const saveEdit = async ()=>{ //保存用户信息
userName: userForm.value.userName,
userAvatar: userForm.value.userAvatar,
phone: userForm.value.phone,
- userRole: userForm.value.userRole
+ userRole: userForm.value.userRole,
+ points: userForm.value.points
})
console.log('更新信息--->',res.data)
if (res.data.code === 1) {
diff --git a/src/views/excelTest.vue b/src/views/excelTest.vue
new file mode 100644
index 0000000..fd911ce
--- /dev/null
+++ b/src/views/excelTest.vue
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+ {{ $index + 1 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
![]()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
导出为 Excel
+
+
+
+
diff --git a/src/views/test2.vue b/src/views/test2.vue
new file mode 100644
index 0000000..16628bc
--- /dev/null
+++ b/src/views/test2.vue
@@ -0,0 +1,110 @@
+import { saveAs } from "file-saver";
+import ExcelJS from "exceljs";
+
+// 用于将图片转换为 Base64 编码
+function getBase64Image(url) {
+return new Promise((resolve, reject) => {
+const img = new Image();
+img.crossOrigin = 'Anonymous'; // 允许跨域获取
+img.onload = () => {
+const canvas = document.createElement('canvas');
+const ctx = canvas.getContext('2d');
+canvas.height = img.height;
+canvas.width = img.width;
+ctx.drawImage(img, 0, 0);
+const dataURL = canvas.toDataURL('image/png');
+resolve(dataURL);
+};
+img.onerror = (error) => reject(error);
+img.src = url;
+});
+}
+
+export const serviceOrderList = (tableData, downloadUrl) => {
+const workbook = new ExcelJS.Workbook();
+const worksheet = workbook.addWorksheet('Order Details');
+
+// 设置列标题
+worksheet.columns = [
+{ header: '订单序号', key: 'index', width: 10 },
+{ header: '订单编号', key: 'orderNumber', width: 30 },
+{ header: '下单时间', key: 'createTime', width: 20 },
+{ header: '用户名', key: 'userName', width: 15 },
+{ header: '所购买的商品', key: 'goodName', width: 30 },
+{ header: '商品图片', key: 'goodImg', width: 20 },
+{ header: '商品类别', key: 'type', width: 20 },
+{ header: '商品单价', key: 'price', width: 15 },
+{ header: '数量', key: 'quantity', width: 10 },
+{ header: '总价', key: 'itemTotalAmount', width: 15 },
+{ header: '预约日期', key: 'reservationDate', width: 15 },
+{ header: '预约时间段', key: 'timeSlot', width: 15 },
+{ header: '联系人姓名', key: 'contactName', width: 20 },
+{ header: '联系人手机号', key: 'contactPhone', width: 20 },
+{ header: '订单实付金额', key: 'totalAmount', width: 20 },
+{ header: '订单状态', key: 'orderStatus', width: 20 },
+];
+
+// 遍历 tableData 并填充数据
+tableData.forEach((order, index) => {
+// 展平每个订单的数据
+order.orderItemList.forEach(async (item) => {
+// 订单每个商品的行
+const row = worksheet.addRow({
+index: index + 1,
+orderNumber: order.orderNumber,
+createTime: order.createTime,
+userName: order.userName,
+goodName: item.goodSnapshot.name,
+goodImg: item.goodSnapshot.goodImg.split(';')[0], // 提取商品图片路径
+type: item.goodSnapshot.type,
+price: item.goodSnapshot.price,
+quantity: item.quantity,
+itemTotalAmount: item.itemTotalAmount,
+reservationDate: item.reservationDate,
+timeSlot: item.timeSlot,
+contactName: order.contactsSnapshot.name,
+contactPhone: order.contactsSnapshot.phone,
+totalAmount: order.totalAmount,
+orderStatus: order.orderStatus,
+});
+
+// 获取商品图片的 Base64 编码
+try {
+const imageUrl = 'https://www.carboner.cn:8888/api/file/downloadFile?objectKey=' + row.getCell('goodImg').value;
+const base64Image = await getBase64Image(imageUrl);
+
+// 将 Base64 图片添加到 Excel
+const imageId = workbook.addImage({
+base64: base64Image,
+extension: 'png',
+});
+
+// 设置图片在 Excel 单元格中的显示
+worksheet.getRow(row.number).getCell('goodImg').value = { type: 'image', imageId };
+worksheet.getRow(row.number).getCell('goodImg').style = {
+alignment: { vertical: 'middle', horizontal: 'center' },
+};
+} catch (error) {
+console.error('图片转换失败', error);
+}
+});
+});
+
+// 自适应列宽
+worksheet.columns.forEach((column) => {
+let maxLength = 0;
+column.eachCell({ includeEmpty: true }, (cell) => {
+const cellValue = cell.value ? String(cell.value) : ''; // 确保空值也处理
+maxLength = Math.max(maxLength, cellValue.length);
+});
+
+// 设置列宽,确保列宽适应最大值
+column.width = maxLength + 2; // 留出额外的空间
+});
+
+// 导出为 Excel 文件
+workbook.xlsx.writeBuffer().then((buffer) => {
+const blob = new Blob([buffer], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });
+saveAs(blob, '订单信息.xlsx');
+});
+};