diff --git a/frontend/.env.development b/frontend/.env.development
index 28b0bba..e7ecb88 100644
--- a/frontend/.env.development
+++ b/frontend/.env.development
@@ -1,2 +1,2 @@
-# 开发环境 API 基础地址
-VITE_API_BASE_URL=http://localhost:8080/api/v1
+# 开发环境 API 基础地址(使用相对路径,由 Vite proxy 转发到后端)
+VITE_API_BASE_URL=/api/v1
diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index 3957868..eb9bb6d 100644
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -1,8 +1,11 @@
-
+
+
+
diff --git a/frontend/src/views/legal/contact.vue b/frontend/src/views/legal/contact.vue
new file mode 100644
index 0000000..6dda1f3
--- /dev/null
+++ b/frontend/src/views/legal/contact.vue
@@ -0,0 +1,189 @@
+
+
+
+
+ 联系我们
+ 我们期待您的反馈与建议
+
+
+
+
+
+
+
+ 其他联系方式
+
+
+
+
客服电话:400-888-0000(工作日 9:00-21:00)
+
+
+
+ 官方微信:OpenClawSkills
+
+
+
+ 公司地址:杭州市余杭区文一西路
+
+
+
+ 工作时间:周一至周五 9:00 - 18:00
+
+
+
+ 在线反馈
+ 您也可以通过平台内的 意见反馈 功能直接提交问题(需登录),我们将在 1-3 个工作日内回复。
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/views/order/detail.vue b/frontend/src/views/order/detail.vue
index caa8e0b..8748dd1 100644
--- a/frontend/src/views/order/detail.vue
+++ b/frontend/src/views/order/detail.vue
@@ -13,7 +13,7 @@
订单号
- {{ order.id }}
+ {{ order.orderNo || order.id }}
创建时间
@@ -68,7 +68,7 @@
去支付
取消订单
-
+
申请退款
返回订单列表
@@ -110,8 +110,10 @@ const refundSubmitting = ref(false)
const refundReason = ref('')
onMounted(async () => {
+ loading.value = true
const orderId = route.params.id
order.value = await orderStore.getOrderById(orderId)
+ loading.value = false
})
const getStatusColor = (status) => {
diff --git a/frontend/src/views/skill/detail.vue b/frontend/src/views/skill/detail.vue
index e59fa49..5ee3bc8 100644
--- a/frontend/src/views/skill/detail.vue
+++ b/frontend/src/views/skill/detail.vue
@@ -295,7 +295,7 @@
diff --git a/frontend/src/views/user/invoices.vue b/frontend/src/views/user/invoices.vue
index 0b082be..2ee2065 100644
--- a/frontend/src/views/user/invoices.vue
+++ b/frontend/src/views/user/invoices.vue
@@ -2,10 +2,21 @@
-
+
+
+
+
+
暂无发票记录
+
完成订单支付后,可在此申请电子发票
+
您有 {{ invoicableOrders.length }} 笔订单可申请发票
+
+
+
+ 去逛逛
+
+
+ 立即申请
+
+
+