Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
4c828d2e
Commit
4c828d2e
authored
Feb 02, 2026
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: loading index 修改
parent
cf8a62da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
src/styles/element.scss
+6
-0
src/views/warehouse/stockingApplicationOrder/SubmitWarehousingDialog.vue
+14
-0
No files found.
src/styles/element.scss
View file @
4c828d2e
...
...
@@ -38,3 +38,9 @@
:root
{
--el-menu-icon-width
:
0px
;
}
.el-loading-mask.is-fullscreen
{
z-index
:
10000
!
important
;
}
.el-overlay
{
z-index
:
5000
!
important
;
}
src/views/warehouse/stockingApplicationOrder/SubmitWarehousingDialog.vue
View file @
4c828d2e
...
...
@@ -218,6 +218,11 @@ const formRules: FormRules = {
}
const
loadUserList
=
async
()
=>
{
const
loading
=
ElLoading
.
service
({
lock
:
true
,
text
:
'加载中...'
,
background
:
'rgba(0, 0, 0, 0.7)'
,
})
try
{
const
res
=
await
getUserListApi
()
if
(
res
.
code
===
200
)
{
...
...
@@ -225,6 +230,8 @@ const loadUserList = async () => {
}
}
catch
(
e
)
{
console
.
error
(
e
)
}
finally
{
loading
.
close
()
}
}
...
...
@@ -289,12 +296,19 @@ const loadAllLocationList = async (
warehouseId
:
string
|
number
|
undefined
,
)
=>
{
if
(
!
warehouseId
)
return
const
loading
=
ElLoading
.
service
({
lock
:
true
,
text
:
'加载中...'
,
background
:
'rgba(0, 0, 0, 0.7)'
,
})
try
{
const
res
=
await
LocationInfoGetAll
(
warehouseId
)
if
(
res
.
code
!==
200
)
return
allLocationList
.
value
=
res
.
data
||
[]
}
catch
(
e
)
{
console
.
error
(
e
)
}
finally
{
loading
.
close
()
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment