From 520fc2bc4920d50cdf017b8fea845f7087182909 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com>
Date: Wed, 11 Feb 2026 13:54:02 +0800
Subject: [PATCH] =?UTF-8?q?fix(shop):=20=E4=BF=AE=E5=A4=8D=E5=BA=97?=
=?UTF-8?q?=E9=93=BA=E9=AA=91=E6=89=8B=E7=8A=B6=E6=80=81=E6=98=BE=E7=A4=BA?=
=?UTF-8?q?=E5=92=8C=E5=AD=97=E6=AE=B5=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 修正了骑手编辑页面状态选项值与标签对应关系
- 更新了骑手列表页面工作状态和启用状态的显示逻辑
- 重新调整了表格列配置中状态字段的顺序
- 启用了被注释掉的状态字段显示功能
- 修改了开发环境API地址配置为启用状态
---
.env.development | 2 +-
.../components/shopStoreRiderEdit.vue | 4 ++--
src/views/shop/shopStoreRider/index.vue | 21 ++++++++++++-------
3 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/.env.development b/.env.development
index b8ccd8b..fbcc74b 100644
--- a/.env.development
+++ b/.env.development
@@ -1,5 +1,5 @@
VITE_APP_NAME=后台管理(开发环境)
-#VITE_API_URL=http://127.0.0.1:9200/api
+VITE_API_URL=http://127.0.0.1:9200/api
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api
diff --git a/src/views/shop/shopStoreRider/components/shopStoreRiderEdit.vue b/src/views/shop/shopStoreRider/components/shopStoreRiderEdit.vue
index ea55102..e6b50b1 100644
--- a/src/views/shop/shopStoreRider/components/shopStoreRiderEdit.vue
+++ b/src/views/shop/shopStoreRider/components/shopStoreRiderEdit.vue
@@ -155,8 +155,8 @@
- 正常
- 禁用
+ 启用
+ 禁用
diff --git a/src/views/shop/shopStoreRider/index.vue b/src/views/shop/shopStoreRider/index.vue
index cee200d..bf14cb0 100644
--- a/src/views/shop/shopStoreRider/index.vue
+++ b/src/views/shop/shopStoreRider/index.vue
@@ -26,9 +26,14 @@
{{ record.storeName }}
+
+ 忙碌
+ 在线
+ 休息
+
- 显示
- 隐藏
+ 启用
+ 禁用
@@ -133,12 +138,6 @@
dataIndex: 'idCardNo',
key: 'idCardNo'
},
- // {
- // title: '状态',
- // dataIndex: 'status',
- // key: 'status',
- // align: 'center'
- // },
{
title: '接单状态',
dataIndex: 'workStatus',
@@ -197,6 +196,12 @@
// key: 'sortNumber',
// width: 120
// },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ align: 'center'
+ },
{
title: '创建时间',
dataIndex: 'createTime',