Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
DC-TOM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘照晖
DC-TOM
Commits
80be0354
Commit
80be0354
authored
Jun 03, 2025
by
liuyangyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
https://app.bmetech.com/liuzhaohui/dctomproject
into dev
parents
0ceddbd4
58a766d5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
9 deletions
+20
-9
myAgency.vue
src/views/closeManage/myAgency.vue
+13
-6
myDone.vue
src/views/closeManage/myDone.vue
+3
-3
index.vue
src/views/dustOverview/index.vue
+4
-0
No files found.
src/views/closeManage/myAgency.vue
View file @
80be0354
...
...
@@ -46,8 +46,8 @@
/>
</el-form-item>
<el-form-item>
<el-button
class=
"default-btn"
@
click=
"on
Search"
>
查询
</el-button>
<el-button
type=
"primary"
class=
"default-btn"
@
click=
"onReset"
>
重置
</el-button>
<el-button
class=
"default-btn"
@
click=
"on
Reset"
>
重置
</el-button>
<el-button
type=
"primary"
class=
"default-btn"
@
click=
"onSearch"
>
查询
</el-button>
</el-form-item>
</el-form>
<div
class=
"table-box"
>
...
...
@@ -632,7 +632,6 @@ import moment from 'moment';
import
{
getToken
}
from
'@/utils/auth.js'
;
import
{
ElMessage
}
from
'element-plus'
import
{
storeToRefs
}
from
'pinia'
import
{
useUsersStore
}
from
"@/pinia/user.js"
;
import
{
useRoute
,
useRouter
}
from
"vue-router"
;
const
router
=
useRouter
();
...
...
@@ -646,7 +645,16 @@ const formInline = ref({
warnType
:
''
,
productionLineId
:
''
,
deviceType
:
''
,
createTime
:
[
''
,
''
]
createTime
:
route
.
query
.
startTime
?
[
moment
(
new
Date
(
route
.
query
.
startTime
).
getTime
()).
format
(
"YYYY-MM-DD HH:mm:ss"
),
moment
(
new
Date
(
route
.
query
.
endTime
).
getTime
()).
format
(
"YYYY-MM-DD HH:mm:ss"
),
]
:
[
''
,
''
]
});
const
workTicketNo
=
ref
(
''
);
...
...
@@ -881,8 +889,7 @@ const onReset =()=> {
formInline
.
value
.
productionLineId
=
''
;
formInline
.
value
.
deviceType
=
''
;
formInline
.
value
.
createTime
=
[
moment
(
new
Date
().
getTime
()
-
1000
*
60
*
60
*
24
).
format
(
'YYYY-MM-DD HH:mm:ss'
),
moment
(
new
Date
()).
format
(
'YYYY-MM-DD HH:mm:ss'
)
''
,
''
]
searchData
();
}
...
...
src/views/closeManage/myDone.vue
View file @
80be0354
...
...
@@ -46,8 +46,8 @@
/>
</el-form-item>
<el-form-item>
<el-button
class=
"default-btn"
@
click=
"on
Search"
>
查询
</el-button>
<el-button
type=
"primary"
class=
"default-btn"
@
click=
"onReset"
>
重置
</el-button>
<el-button
class=
"default-btn"
@
click=
"on
Reset"
>
重置
</el-button>
<el-button
type=
"primary"
class=
"default-btn"
@
click=
"onSearch"
>
查询
</el-button>
</el-form-item>
</el-form>
<div
class=
"table-box"
>
...
...
@@ -938,7 +938,7 @@ const onReset =()=> {
formInline
.
value
.
productionLineId
=
''
;
formInline
.
value
.
deviceType
=
''
;
formInline
.
value
.
createTime
=
[
moment
(
new
Date
().
getTime
()
-
1000
*
60
*
60
*
24
).
format
(
'YYYY-MM-DD HH:mm:ss'
),
moment
(
new
Date
().
getTime
()
-
1000
*
60
*
60
*
24
*
30
).
format
(
'YYYY-MM-DD HH:mm:ss'
),
moment
(
new
Date
()).
format
(
'YYYY-MM-DD HH:mm:ss'
)
]
searchData
();
...
...
src/views/dustOverview/index.vue
View file @
80be0354
...
...
@@ -379,6 +379,10 @@ const handleDusterLeakNumClick = () => {
const
handleCloseLoopNumClick
=
()
=>
{
router
.
push
({
path
:
"/my-loop/myAgency"
,
query
:
{
startTime
:
moment
().
subtract
(
24
,
'hours'
).
format
(
"YYYY-MM-DD HH:mm:ss"
),
endTime
:
moment
().
format
(
"YYYY-MM-DD HH:mm:ss"
),
},
});
};
...
...
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