Răsfoiți Sursa

refactor(order): 移除订单页面操作列

- 删除充电订单信息页面的操作列
- 删除用户订单信息页面的操作列
- 简化表格结构,去除编辑和删除按钮

refactor(charging): 更新充电站同步逻辑

- 修改充电站信息同步任务为每5分钟执行一次
- 注释掉原定时执行注解,暂时改为手动触发
- 规范任务执行日志输出内容
SheepHy 1 zi în urmă
părinte
comite
b339b01cc5

+ 1 - 7
src/views/orderManage/charge-order-info/index.vue

@@ -308,13 +308,7 @@ const contentConfig: IContentConfig<ChargeOrderInfoPageQuery> = reactive({
     { label: "优惠券金额", prop: "couponPrice" },
     { label: "备注", prop: "remark" },
     { label: "创建时间", prop: "createTime" },
-    {
-      label: "操作",
-      prop: "operation",
-      width: 220,
-      templet: "tool",
-      operat: ["edit", "delete"],
-    },
+
   ],
 });
 

+ 1 - 7
src/views/orderManage/user-order-info/index.vue

@@ -159,13 +159,7 @@ const contentConfig: IContentConfig<UserOrderInfoPageQuery> = reactive({
     { label: "退款时间", prop: "refundTime" },
     { label: "备注", prop: "remark" },
     { label: "创建时间", prop: "createTime" },
-    {
-      label: "操作",
-      prop: "operation",
-      width: 220,
-      templet: "tool",
-      operat: ["edit", "delete"],
-    },
+
   ],
 });