diff --git a/src/router/routes.ts b/src/router/routes.ts index 220301d..d832a78 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -502,6 +502,16 @@ export const constantRoute = [ icon: 'Files', hidden: false } + }, + { + path: '/ExpressManagement', + name: '偏远地区物流费用', + component: () => import("@/views/OtherManagement/ExpressManagement.vue"), + meta: { + title: '偏远地区物流费用', + icon: 'Money', + hidden: false + } } ] }, diff --git a/src/views/OtherManagement/ExpressManagement.vue b/src/views/OtherManagement/ExpressManagement.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/views/ServiceType/AddServiceProduct.vue b/src/views/ServiceType/AddServiceProduct.vue index 526ff83..d0d1366 100644 --- a/src/views/ServiceType/AddServiceProduct.vue +++ b/src/views/ServiceType/AddServiceProduct.vue @@ -20,9 +20,6 @@ - - - @@ -57,7 +54,6 @@ const form = ref({ name: '', price: '', //商品价格 intro: '',//产品简介 - label: '',//商品标签 goodImg: '', //商品图片url richText: '', appointmentDateAddRequestList: [] //预约时间段,是否可预约,人数范围 @@ -90,7 +86,6 @@ const onSubmit = async () => { goodImg: form.value.goodImg, intro: form.value.intro, richText: form.value.richText, - label: form.value.label, appointmentDateAddRequestList: toRaw(form.value.appointmentDateAddRequestList) }) console.log(res.data); diff --git a/src/views/test.vue b/src/views/test.vue index 4846d06..fd732af 100644 --- a/src/views/test.vue +++ b/src/views/test.vue @@ -1,88 +1,143 @@ - \ No newline at end of file + +.message-item { + margin-bottom: 10px; +} + +.message-user { + background-color: #007aff; + color: white; + padding: 10px; + border-radius: 10px; + text-align: right; +} + +.message-other { + background-color: #e5e5e5; + color: black; + padding: 10px; + border-radius: 10px; +} + +.input-area { + display: flex; + padding: 10px; + background-color: #fff; + align-items: center; +} + +.input-box { + flex: 1; + height: 40px; + padding: 0 10px; + border-radius: 20px; + border: 1px solid #ddd; +} + +.send-btn { + background-color: #007aff; + color: white; + padding: 10px 20px; + border-radius: 20px; + margin-left: 10px; +} +