From 80cf2b83aad30be2f200d6877731a8dcc87a64a3 Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Mon, 3 Jun 2024 16:29:49 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=A1=E3=83=8B=E3=83=A5=E3=83=BC=E5=AF=BE?= =?UTF-8?q?=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SATE_PARK-902 QRサービス券メニュー対応 --- src/layouts/dashbord/navigator.tsx | 14 ++++++++++---- .../login-user/店舗/一覧/TableBox.tsx | 2 +- .../dashboard/login-user/店舗/一覧/index.tsx | 2 +- .../顧客ログインユーザ一覧/index.tsx | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/layouts/dashbord/navigator.tsx b/src/layouts/dashbord/navigator.tsx index 3932586..7d1ce7e 100644 --- a/src/layouts/dashbord/navigator.tsx +++ b/src/layouts/dashbord/navigator.tsx @@ -83,15 +83,15 @@ export default function Navigator(props: DrawerProps) { label: "管理メニュー", children: [ { - label: "店舗管理", + label: "代理店管理", icon: , children: [ { - label: "店舗一覧", + label: "代理店一覧", id: PageID.店舗一覧, }, { - label: "店舗新規登録", + label: "代理店新規登録", id: PageID.店舗新規登録, }, ], @@ -140,6 +140,12 @@ export default function Navigator(props: DrawerProps) { label: "顧客新規登録", id: PageID.ログインユーザ_顧客新規登録, }, + ], + }, + { + label: "店舗管理", + icon: , + children: [ { label: "店舗一覧", id: PageID.ログインユーザ_店舗一覧, @@ -156,7 +162,7 @@ export default function Navigator(props: DrawerProps) { label: "アカウント", children: [ { - label: "成り代わり終了", + label: "スーパーユーザ画面に戻る", icon: , id: PageID.成り代わり終了, whenIsSwitched: true, diff --git a/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx b/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx index 8430510..db71fce 100644 --- a/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx +++ b/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx @@ -25,7 +25,7 @@ type CommonProps = { export default function TableBox({ table }: CommonProps) { const { info, error } = useSnackbarCustom(); const TABLE_HEAD: HeadLabelProps[] = [ - { id: "name", label: "名前", align: "left", needSort: false }, + { id: "name", label: "店舗名", align: "left", needSort: false }, { id: "email", label: "Email", align: "left", needSort: false }, { id: "shop_name", label: "店舗名", align: "left", needSort: false }, { id: "action", label: "", align: "left", needSort: false }, diff --git a/src/pages/dashboard/login-user/店舗/一覧/index.tsx b/src/pages/dashboard/login-user/店舗/一覧/index.tsx index 95548f0..732747c 100644 --- a/src/pages/dashboard/login-user/店舗/一覧/index.tsx +++ b/src/pages/dashboard/login-user/店舗/一覧/index.tsx @@ -15,7 +15,7 @@ export default function Main() { ); useEffect(() => { - setHeaderTitle("ログインユーザ一覧"); + setHeaderTitle("店舗一覧"); setTabs(null); }, []); diff --git a/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx b/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx index fc5fdce..e26e5c0 100644 --- a/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx +++ b/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx @@ -15,7 +15,7 @@ export default function 顧客一覧() { ); useEffect(() => { - setHeaderTitle("ログインユーザ一覧"); + setHeaderTitle("店舗一覧"); setTabs(null); }, []);