-
+
+
+
-
-
-
- 基础信息设置
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+ @blur="handleAddressBlur"
+ >
+
+
+
+ 解析地址
+
+
+
-
-
-
-
-
-
-
-
+
+
+
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存基础信息
+
+ 重置
-
-
+
+
+
-
-
-
- 保存信息
-
-
-
- 重置
-
-
-
-
-
-
-
-
- 营业状况设置
-
-
-
-
-
+
+
+
-
-
- 营业中
-
-
- 暂停营业
-
-
- 停业整顿
-
-
+
+
+
+
-
-
-
-
-
-
-
- 至
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存营业信息
+
+ 重置
-
-
+
+
+
-
-
-
- 保存设置
-
-
-
- 重置
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.branchStatus === 'open' ? '营业中' : '休息中' }}
+
+
+
+
+
+ {{ row.branchStart }} - {{ row.branchEnd }}
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
diff --git a/src/views/merchant/order/OrderManager.vue b/src/views/merchant/order/OrderManager.vue
new file mode 100644
index 0000000..c6ca24e
--- /dev/null
+++ b/src/views/merchant/order/OrderManager.vue
@@ -0,0 +1,579 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+ {{ formatTime(row.orderTime) }}
+
+
+
+
+ {{ formatMoney(row.orderMoney) }}
+
+
+
+
+
+ {{ statusMap[row.orderStatus as keyof typeof statusMap] }}
+
+
+
+
+
+
+
+ 详情
+
+
+ 状态
+
+
+ 取消
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ orderDetail.orderId }}
+
+
+ {{ orderDetail.accountId }}
+
+
+ {{ formatTime(orderDetail.orderTime) }}
+
+
+ {{ formatMoney(orderDetail.orderMoney) }}
+
+
+
+ {{ statusMap[orderDetail.orderStatus as keyof typeof statusMap] }}
+
+
+
+ {{ orderDetail.orderRemarks || '无' }}
+
+
+
+
+
+
订单明细
+
+
+
+
+
+
+ {{ row.price ? formatMoney(row.price) : '-' }}
+
+
+
+
+
+
+
+
+
+
+
订单ID: {{ selectedOrder.orderId }}
+
当前状态:
+
+ {{ statusMap[selectedOrder.orderStatus as keyof typeof statusMap] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/merchant/Orders/index.vue b/src/views/merchant/order/index.vue
similarity index 100%
rename from src/views/merchant/Orders/index.vue
rename to src/views/merchant/order/index.vue