update
This commit is contained in:
parent
214bc1ae85
commit
55b6265985
@ -29,10 +29,10 @@ export const NAV_ITEM = (admin = false) => [
|
|||||||
text: language?.ui.house,
|
text: language?.ui.house,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/location',
|
path: 'warehouse',
|
||||||
show: true,
|
show: true,
|
||||||
icon: IconBuildingWarehouse,
|
icon: IconBuildingWarehouse,
|
||||||
text: language?.ui.location,
|
text: language?.ui.warehouse,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"house": "Location",
|
"house": "Location",
|
||||||
"action": "Action",
|
"action": "Action",
|
||||||
"createNew": "Create new",
|
"createNew": "Create new",
|
||||||
"location": "Warehouse",
|
"warehouse": "Warehouse",
|
||||||
"displayName": "Display name",
|
"displayName": "Display name",
|
||||||
"newPassword": "New password",
|
"newPassword": "New password",
|
||||||
"confirmNewPassword": "Confirm new password",
|
"confirmNewPassword": "Confirm new password",
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"house": "Địa điểm",
|
"house": "Địa điểm",
|
||||||
"action": "Thao Tác",
|
"action": "Thao Tác",
|
||||||
"createNew": "Tạo mới",
|
"createNew": "Tạo mới",
|
||||||
"location": "Khu vực",
|
"warehouse": "Khu vực",
|
||||||
"displayName": "Tên hiển thị",
|
"displayName": "Tên hiển thị",
|
||||||
"newPassword": "Mật khẩu mới",
|
"newPassword": "Mật khẩu mới",
|
||||||
"confirmNewPassword": "Nhập lại mật khẩu",
|
"confirmNewPassword": "Nhập lại mật khẩu",
|
||||||
|
@ -1 +0,0 @@
|
|||||||
export { default } from './Location'
|
|
@ -1,3 +0,0 @@
|
|||||||
.locations {
|
|
||||||
|
|
||||||
}
|
|
@ -1,10 +1,10 @@
|
|||||||
import { IconPackage } from '@tabler/icons-solidjs'
|
import { IconPackage } from '@tabler/icons-solidjs'
|
||||||
import { For } from 'solid-js'
|
import { For } from 'solid-js'
|
||||||
import { Dynamic } from 'solid-js/web'
|
import { Dynamic } from 'solid-js/web'
|
||||||
import './location.scss'
|
import './warehouse.scss'
|
||||||
|
|
||||||
const data = [
|
const data = [
|
||||||
'A0FAAA2FF4402E32E4BEF7D7A0FAAA2FF4402E32E4BEF7D7A0FAAA2FF4402E32E4BEF7D7A0FAAA2FF4402E32E4BEF7D7A0FAAA2FF4402E32E4BEF7D7'
|
|
||||||
]
|
]
|
||||||
|
|
||||||
function PackageItem(props) {
|
function PackageItem(props) {
|
||||||
@ -41,7 +41,7 @@ function PackageItem(props) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Location() {
|
export default function Warehouse() {
|
||||||
return (
|
return (
|
||||||
<div class="locations">
|
<div class="locations">
|
||||||
<div class="card w-full bg-base-100 shadow-lg border border-gray-200">
|
<div class="card w-full bg-base-100 shadow-lg border border-gray-200">
|
1
frontend/src/pages/WareHouse/index.js
Normal file
1
frontend/src/pages/WareHouse/index.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default } from './Warehouse'
|
3
frontend/src/pages/WareHouse/warehouse.scss
Normal file
3
frontend/src/pages/WareHouse/warehouse.scss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.warehouse {
|
||||||
|
|
||||||
|
}
|
@ -37,8 +37,9 @@ export const ROUTES = [
|
|||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/location',
|
name: 'warehouse',
|
||||||
components: lazy(() => import('@pages/Location')),
|
path: '/warehouse',
|
||||||
|
components: lazy(() => import('@pages/WareHouse')),
|
||||||
filter: {},
|
filter: {},
|
||||||
show: true,
|
show: true,
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user