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
301c1db6
Commit
301c1db6
authored
Jul 17, 2025
by
liuzhaoh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理闭环模块
parent
115d798e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
myAgency.vue
src/views/closeManage/myAgency.vue
+6
-2
myDone.vue
src/views/closeManage/myDone.vue
+5
-2
No files found.
src/views/closeManage/myAgency.vue
View file @
301c1db6
...
@@ -63,6 +63,7 @@
...
@@ -63,6 +63,7 @@
</el-form>
</el-form>
<div
class=
"table-box"
>
<div
class=
"table-box"
>
<common-table
<common-table
ref=
"pageRef"
:data=
"tableData"
:data=
"tableData"
:columns=
"tableColumns"
:columns=
"tableColumns"
:default-page-size=
"20"
:default-page-size=
"20"
...
@@ -923,11 +924,12 @@ const warnValueFilter = computed(() => {
...
@@ -923,11 +924,12 @@ const warnValueFilter = computed(() => {
}
}
};
};
});
});
const
pageRef
=
ref
(
null
);
const
onSearch
=
()
=>
{
const
onSearch
=
()
=>
{
currentPage
.
value
=
1
;
pageRef
.
value
.
setCurrentPage
(
currentPage
.
value
);
searchData
();
searchData
();
};
};
const
onReset
=
()
=>
{
const
onReset
=
()
=>
{
currentPage
.
value
=
1
;
currentPage
.
value
=
1
;
pageSize
.
value
=
20
;
pageSize
.
value
=
20
;
...
@@ -936,6 +938,7 @@ const onReset = () => {
...
@@ -936,6 +938,7 @@ const onReset = () => {
formInline
.
value
.
productionLineId
=
""
;
formInline
.
value
.
productionLineId
=
""
;
formInline
.
value
.
deviceType
=
""
;
formInline
.
value
.
deviceType
=
""
;
formInline
.
value
.
createTime
=
[
""
,
""
];
formInline
.
value
.
createTime
=
[
""
,
""
];
pageRef
.
value
.
setCurrentPage
(
currentPage
.
value
);
searchData
();
searchData
();
};
};
...
@@ -1287,6 +1290,7 @@ const pageSize = ref(20);
...
@@ -1287,6 +1290,7 @@ const pageSize = ref(20);
const
handlePaginationChange
=
(
pagination
)
=>
{
const
handlePaginationChange
=
(
pagination
)
=>
{
currentPage
.
value
=
pagination
.
currentPage
;
currentPage
.
value
=
pagination
.
currentPage
;
pageSize
.
value
=
pagination
.
pageSize
;
pageSize
.
value
=
pagination
.
pageSize
;
getTableData
()
};
};
</
script
>
</
script
>
...
...
src/views/closeManage/myDone.vue
View file @
301c1db6
...
@@ -63,6 +63,7 @@
...
@@ -63,6 +63,7 @@
</el-form>
</el-form>
<div
class=
"table-box"
>
<div
class=
"table-box"
>
<common-table
<common-table
ref=
"pageRef"
:data=
"tableData"
:data=
"tableData"
:columns=
"tableColumns"
:columns=
"tableColumns"
:default-page-size=
"20"
:default-page-size=
"20"
...
@@ -961,6 +962,8 @@ const getColor = computed(() => {
...
@@ -961,6 +962,8 @@ const getColor = computed(() => {
});
});
const
onSearch
=
()
=>
{
const
onSearch
=
()
=>
{
currentPage
.
value
=
1
;
pageRef
.
value
.
setCurrentPage
(
currentPage
.
value
);
searchData
();
searchData
();
};
};
...
@@ -977,6 +980,7 @@ const onReset = () => {
...
@@ -977,6 +980,7 @@ const onReset = () => {
),
),
moment
(
new
Date
()).
format
(
"YYYY-MM-DD HH:mm:ss"
),
moment
(
new
Date
()).
format
(
"YYYY-MM-DD HH:mm:ss"
),
];
];
pageRef
.
value
.
setCurrentPage
(
currentPage
.
value
);
searchData
();
searchData
();
};
};
const
personTag
=
ref
([]);
const
personTag
=
ref
([]);
...
@@ -1257,10 +1261,9 @@ onMounted(() => {
...
@@ -1257,10 +1261,9 @@ onMounted(() => {
getDeviceType
();
getDeviceType
();
searchData
();
searchData
();
});
});
const
pageRef
=
ref
(
null
);
const
currentPage
=
ref
(
1
);
const
currentPage
=
ref
(
1
);
const
pageSize
=
ref
(
20
);
const
pageSize
=
ref
(
20
);
const
handlePaginationChange
=
(
pagination
)
=>
{
const
handlePaginationChange
=
(
pagination
)
=>
{
currentPage
.
value
=
pagination
.
currentPage
;
currentPage
.
value
=
pagination
.
currentPage
;
pageSize
.
value
=
pagination
.
pageSize
;
pageSize
.
value
=
pagination
.
pageSize
;
...
...
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