diff --git a/src/App.vue b/src/App.vue index edd88ac..4c73522 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,17 +6,27 @@ diff --git a/src/api/myAxios.ts b/src/api/myAxios.ts index 70aa745..62ab694 100644 --- a/src/api/myAxios.ts +++ b/src/api/myAxios.ts @@ -4,8 +4,8 @@ import router from '../router' const myAxios = axios.create({ withCredentials:true, - baseURL: 'http://localhost:9092/api'//测试服务器 - // baseURL: 'http://123.249.108.160:8888/api' + baseURL: 'http://localhost:9092/api' + // baseURL: 'http://123.249.108.160:8888/api' //测试服务器 }); // 添加请求拦截器 axios.interceptors.request.use(function (config) { diff --git a/src/layout/components/DateDrawer.vue b/src/layout/components/DateDrawer.vue new file mode 100644 index 0000000..636bdb2 --- /dev/null +++ b/src/layout/components/DateDrawer.vue @@ -0,0 +1,80 @@ + + + + + \ No newline at end of file diff --git a/src/layout/components/calendarUtil.vue b/src/layout/components/calendarUtil.vue index aecb00f..1671d83 100644 --- a/src/layout/components/calendarUtil.vue +++ b/src/layout/components/calendarUtil.vue @@ -157,6 +157,7 @@ const drawerOpen =()=>{ //抽屉打开时 if(isTrue.value) { periodObj.value = periodMap.get(periodObj.value.specificDate) timePickArr.value= timePickMap.get(periodObj.value.specificDate) + console.log('timePickArr--->',timePickArr.value); } } const resetForm =()=>{ //重置表格 diff --git a/src/utils/dealStringArray.js b/src/utils/dealStringArray.js deleted file mode 100644 index 970dfac..0000000 --- a/src/utils/dealStringArray.js +++ /dev/null @@ -1,92 +0,0 @@ -import { ElMessage } from 'element-plus'; - -const isNotValid = (val) => { - const timeRegex = /^([0-1]?[0-9]|2[0-3]):([0-5]?[0-9])-(?:[0-1]?[0-9]|2[0-3]):([0-5]?[0-9])$/; - const rangeRegex = /^\(\d+,\d+\)$/ - return timeRegex.test(val.timeSlot) && rangeRegex.test(val.numberRange) -} - -const isValidPlus = (val) => { - const timeRegex = /^([0-1]?[0-9]|2[0-3]):([0-5]?[0-9])-(?:[0-1]?[0-9]|2[0-3]):([0-5]?[0-9])$/; - const rangeRegex = /^\(\d+,\d+\)$/ - if(val.timeSlot === '' && val.numberRange === '') return false - if(timeRegex.test(val.timeSlot) && rangeRegex.test(val.numberRange)) return false - return true -} - -export const transfer = (val, arr, isAvailableArr) => { - console.log('这是val:', val) - for (var i = 0; i < val.length; i ++ ) { - for (var j = 0; j < val[i].length; j ++ ) { - arr[i][j].timeSlot = val[i][j].startTime + "-" + val[i][j].endTime - arr[i][j].numberRange = "(" + val[i][j].minNumValue + "," + val[i][j].maxNumValue + ")" - } - } - console.log('这是arr:', arr) - for (var i = 0; i < 4; i ++ ) { - for (var j = 0; j < 6; j ++ ) { - if(isValidPlus(arr[i][j])) { - ElMessage({ - type: 'error', - message: '请检查表单数据是否完整填写' - }) - return ; - } - } - } - let newArr = new Array(4) - for (var i = 0; i < 4; i ++ ) { - newArr[i] = { - timeSlot:'', - numberRange: '', - isAvailable: false - } - } - - let timeSlotArr = [] - let numberRangeArr = [] - let cnt = 0 - let k = 0 - for (var i = 0; i < val.length; i ++ ) { - for (var j = 0; j < val[i].length; j ++ ) { - if(isNotValid(arr[i][j])) { - timeSlotArr.push(arr[i][j].timeSlot) - numberRangeArr.push(arr[i][j].numberRange) - } - } - if(val[i].length == 0){ - newArr[i].timeSlot = "00:00-00:00" - newArr[i].numberRange = "(0,0)" - newArr[i].isAvailable = 0 - k ++ - cnt ++ - }else{ - newArr[i].timeSlot = timeSlotArr.join(';') - newArr[i].numberRange = numberRangeArr.join(';') - newArr[i].isAvailable = isAvailableArr[i] ? 1 : 0 - if(!isAvailableArr[i]) k ++ - } - if(cnt == 4) { - ElMessage({ - type: 'error', - message: '至少得有一个预约时间段' - }) - return ; - } - if(k == 4) { - ElMessage({ - type: 'error', - message: '至少有一天可以预约' - }) - return ; - } - timeSlotArr = [] - numberRangeArr = [] - } - ElMessage({ - type: 'success', - message: '时间段保存成功' - }) - // console.log(newArr) - return newArr -} \ No newline at end of file diff --git a/src/utils/entityProduct/FormRules.ts b/src/utils/entityProduct/FormRules.ts new file mode 100644 index 0000000..b903ab4 --- /dev/null +++ b/src/utils/entityProduct/FormRules.ts @@ -0,0 +1,26 @@ +import { saveBtn, invInput } from './globalVar'; + +export const validateName = (rule: any, value: any, callback: any) => { //商品名称的校验规则 + if (value === '') { + callback(new Error('请输入商品名称')) + } else if (value.length < 2) { + callback(new Error('商品名称不能小于两位')) + saveBtn.value = true + } else { saveBtn.value = false } +} +export const validateIntro = (rule: any, value: any, callback: any) => { //商品简介的校验规则 + if (value === '') { + callback(new Error('请输入商品简介')) + } else if (value.length < 20) { + callback(new Error('商品简介不能少于20字')) + saveBtn.value = true + } else { saveBtn.value = false } +} +export const validateDetail = (rule: any, value: any, callback: any) => { + if (value === '') { + callback(new Error('请输入商品详情')) + } else if (value.length < 80) { + callback(new Error('商品详情不能少于80字')) + saveBtn.value = true + } else { saveBtn.value = false } +} \ No newline at end of file diff --git a/src/utils/entityProduct/globalVar.ts b/src/utils/entityProduct/globalVar.ts new file mode 100644 index 0000000..70adfb2 --- /dev/null +++ b/src/utils/entityProduct/globalVar.ts @@ -0,0 +1,5 @@ +import { ref } from "vue"; + +export const saveBtn = ref(false) //提交按钮状态 +export const invInput = ref(false) //库存按钮 + diff --git a/src/utils/entityProduct/picUpload.ts b/src/utils/entityProduct/picUpload.ts new file mode 100644 index 0000000..c25cb61 --- /dev/null +++ b/src/utils/entityProduct/picUpload.ts @@ -0,0 +1,70 @@ +import { ref } from 'vue'; +import myAxios from '@/api/myAxios'; +import { type UploadFile, type UploadProps, genFileId, type UploadRawFile, type FormInstance, type FormRules } from 'element-plus'; +import { WarnInfo } from '../messageInfo'; + +export const productImgMap = new Map() //商品图片数组 +export const productImgArr: any = ref([]) +export const fileSimple = ref() //单个文件 +export const form : any = ref({ //添加实体类商品的表单 + name: '', //商品名称 + price: '', //商品价格 + intro: '',//产品简介 + festivalName: '', //节日名称 + type: '',//类别 + label: '',//商品标签 + introDetail: '',//详情描述 + goodImg: '', //商品图片url + detailImg: '', //图文详情url + inventory: '' //库存 +}) + +//图片上传请求 此请求只要选择了图片,就会默认上传 +export const handleChange = async (file: any, flag: number) => { //12.18改 + fileSimple.value = file + let formData = new FormData() //这一步很重要 创建一个FormData对象 + formData.append("file", fileSimple.value.raw) //fileSimple.value.raw 才是文件主体 将其以文件的格式插入formData + const res = await myAxios({ //编写请求,与以前的请求不同,这一次要指定好头部类型和文件类型 + url: '/file/upload/server/not_login', + method: 'post', + headers: { + 'content-Type': 'multipart/form-data' + }, + data: { + biz: "test", + // 取出formData对象中的file + file: formData.get("file") + } + }) + if (res.data.code === 1) { + if (flag === 0) { + productImgArr.value.splice(0, productImgArr.value.length) //一并删除数组中存放的图片Url地址 + productImgMap.set(fileSimple.value.uid, res.data.data) + productImgMap.forEach(loopMap) //将图片url插入到数组中 + form.value.goodImg = formatString() + } else { + form.value.detailImg = res.data.data + } + } +} + +const formatString = () => { //拼接图片URL,方便传给后端 + var str = '' + str = productImgArr.value.join(';') + return str +} + +const loopMap = (value: any, key: any, map: any) => { //循环商品图片Map集合函数,用于给请求的字段赋值 + productImgArr.value.push(value) +} + +export const handleRemove: UploadProps['onRemove'] = (uploadFile, uploadFiles) => { //uploadFile表示当前删除的图片,uploadFiles是还剩余的图片信息 + productImgMap.delete(uploadFile.uid) + productImgArr.value.splice(0, productImgArr.value.length) //一并删除数组中存放的图片Url地址 + productImgMap.forEach(loopMap) + form.value.goodImg = formatString() +} + +export const Exceed_ProductImg: UploadProps['onExceed'] = (files) => { //覆盖商品照片 'onExceed'当文件个数超过限制时,做出的判断 + WarnInfo('最多只能上传七张图片!') +} \ No newline at end of file diff --git a/src/utils/messageInfo.ts b/src/utils/messageInfo.ts new file mode 100644 index 0000000..62b0416 --- /dev/null +++ b/src/utils/messageInfo.ts @@ -0,0 +1,29 @@ +import { ElMessage } from 'element-plus'; + +export const SuccessInfo = (message: any)=>{ //成功的提示 + ElMessage({ + type: 'success', + message: message + }) +} + +export const ErrorInfo = (message: any)=>{ //错误的提示 + ElMessage({ + type: 'error', + message: message + }) +} + +export const WarnInfo = (message: any) =>{ //警告的提示 + ElMessage({ + type: 'warning', + message: message + }) +} + +export const CommInfo =(message: any)=>{ //普通提示 + ElMessage({ + type: 'info', + message: message + }) +} \ No newline at end of file diff --git a/src/views/Commodity/AddProduct.vue b/src/views/Commodity/AddProduct.vue index 1e50d4d..c20dff5 100644 --- a/src/views/Commodity/AddProduct.vue +++ b/src/views/Commodity/AddProduct.vue @@ -1,194 +1,211 @@ \ No newline at end of file +const rules = reactive>({ //表单校验规则 + name: [{ validator: validateName, trigger: 'blur' }], + intro: [{ validator: validateIntro, trigger: 'blur' }], + introDetail: [{ validator: validateDetail, trigger: 'blur' }] +}) +const addLabel = () => { //添加商品标签按钮的方法 + if (labelList.value[labelList.value.length - 1] === '') { + WarnInfo('请填写完') + return; + } + if (labelList.value.length < 4) { + labelList.value.push('') + } +} +const addLabelList = () => { //格式化商品标签 + var string = '' + if (!labelList.value.some((item: any) => item === '')) { + string = labelList.value.join(';') + } else return; + form.value.label = string +} +const customTag = (e:any)=>{ //点击定制 + if(e) { + form.value.inventory = 1 + invInput.value = true + typeSelect.value = true + form.value.type = '定制' + } else { + form.value.inventory = 0 + invInput.value = false + typeSelect.value = false + form.value.type = '' + } +} + + + \ No newline at end of file diff --git a/src/views/Commodity/MerchandiseCenter.vue b/src/views/Commodity/MerchandiseCenter.vue index 8ed2a3b..38c5a30 100644 --- a/src/views/Commodity/MerchandiseCenter.vue +++ b/src/views/Commodity/MerchandiseCenter.vue @@ -2,20 +2,16 @@
- - - - - - - - + 搜索 + + + + - - 搜索 重置
@@ -41,12 +37,18 @@ - + + + @@ -95,10 +97,8 @@ -
- 商品图标 -
+ limit="7" > @@ -116,8 +116,9 @@ - - + + +

@@ -175,9 +176,11 @@