Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
5fe0b31b
Commit
5fe0b31b
authored
Oct 09, 2024
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: 优化业务事项关联
parent
2190e71d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
170 additions
and
218 deletions
+170
-218
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs1.vue
.../src/pages/basicset/business/components/businessTabs1.vue
+2
-3
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs2.vue
.../src/pages/basicset/business/components/businessTabs2.vue
+3
-10
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
.../src/pages/basicset/business/components/businessTabs3.vue
+165
-205
No files found.
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs1.vue
View file @
5fe0b31b
...
@@ -252,14 +252,13 @@ export default {
...
@@ -252,14 +252,13 @@ export default {
});
});
},
},
// 获取站点业务列表
// 获取站点业务列表
async
getSiteBusinessData
(
search
=
{}
)
{
async
getSiteBusinessData
()
{
this
.
siteBusinessTable
.
loading
=
true
;
this
.
siteBusinessTable
.
loading
=
true
;
let
res
=
await
siteBusinessList
({
let
res
=
await
siteBusinessList
({
page
:
this
.
siteBusinessTable
.
current
,
page
:
this
.
siteBusinessTable
.
current
,
size
:
this
.
siteBusinessTable
.
size
,
size
:
this
.
siteBusinessTable
.
size
,
siteId
:
this
.
siteId
,
siteId
:
this
.
siteId
,
businessName
:
`%
${
this
.
serchSiteBusiness
}
%`
,
businessName
:
`%
${
this
.
serchSiteBusiness
}
%`
,
...
search
,
});
});
let
{
code
,
data
}
=
res
.
data
;
let
{
code
,
data
}
=
res
.
data
;
if
(
code
===
1
)
{
if
(
code
===
1
)
{
...
@@ -279,7 +278,7 @@ export default {
...
@@ -279,7 +278,7 @@ export default {
page
:
this
.
businessTable
.
current
,
page
:
this
.
businessTable
.
current
,
size
:
this
.
businessTable
.
size
,
size
:
this
.
businessTable
.
size
,
name
:
`%
${
this
.
serchData
}
%`
,
name
:
`%
${
this
.
serchData
}
%`
,
businessType
:
0
,
//
businessType
:
0
,
//
一体化业务
});
});
let
{
code
,
data
}
=
res
.
data
;
let
{
code
,
data
}
=
res
.
data
;
if
(
code
===
1
)
{
if
(
code
===
1
)
{
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs2.vue
View file @
5fe0b31b
...
@@ -59,7 +59,6 @@
...
@@ -59,7 +59,6 @@
<!-- 表格 -->
<!-- 表格 -->
<y-table
<y-table
:columns=
"siteMatterTable.columns"
:columns=
"siteMatterTable.columns"
:expandIconColumnIndex=
"2"
:data=
"siteMatterTable.data"
:data=
"siteMatterTable.data"
:pageSize.sync=
"siteMatterTable.size"
:pageSize.sync=
"siteMatterTable.size"
:current.sync=
"siteMatterTable.current"
:current.sync=
"siteMatterTable.current"
...
@@ -176,7 +175,6 @@
...
@@ -176,7 +175,6 @@
<!-- 表格 -->
<!-- 表格 -->
<y-table
<y-table
:columns=
"baseMatterTable.columns"
:columns=
"baseMatterTable.columns"
:expandIconColumnIndex=
"2"
:data=
"baseMatterTable.data"
:data=
"baseMatterTable.data"
:pageSize.sync=
"baseMatterTable.size"
:pageSize.sync=
"baseMatterTable.size"
:current.sync=
"baseMatterTable.current"
:current.sync=
"baseMatterTable.current"
...
@@ -384,22 +382,19 @@ export default {
...
@@ -384,22 +382,19 @@ export default {
methods
:
{
methods
:
{
...
mapMutations
(
"
site
"
,
[
"
SET_matterDict
"
]),
...
mapMutations
(
"
site
"
,
[
"
SET_matterDict
"
]),
// 获取部门列表
// 获取部门列表
async
getDeptListData
(
obj
=
{})
{
async
getDeptListData
()
{
this
.
deptLoading
=
true
;
let
res
=
await
getDeptList
({
let
res
=
await
getDeptList
({
siteId
:
this
.
siteId
,
siteId
:
this
.
siteId
,
page
:
1
,
page
:
1
,
size
:
-
1
,
size
:
-
1
,
...
obj
,
});
});
this
.
deptLoading
=
false
;
let
{
code
,
data
}
=
res
.
data
;
let
{
code
,
data
}
=
res
.
data
;
if
(
code
===
1
)
{
if
(
code
===
1
)
{
this
.
deptList
=
data
.
data
;
this
.
deptList
=
data
.
data
;
}
}
},
},
// 获取站点事项
// 获取站点事项
async
getMatterSiteData
(
search
=
{}
)
{
async
getMatterSiteData
()
{
this
.
siteMatterTable
.
loading
=
true
;
this
.
siteMatterTable
.
loading
=
true
;
let
res
=
await
getSiteMatterList
({
let
res
=
await
getSiteMatterList
({
page
:
this
.
siteMatterTable
.
current
,
page
:
this
.
siteMatterTable
.
current
,
...
@@ -408,7 +403,6 @@ export default {
...
@@ -408,7 +403,6 @@ export default {
source
:
this
.
siteMatterTable
.
search
.
source
,
source
:
this
.
siteMatterTable
.
search
.
source
,
matterName
:
`%
${
this
.
siteMatterTable
.
search
.
matterName
}
%`
,
matterName
:
`%
${
this
.
siteMatterTable
.
search
.
matterName
}
%`
,
deptCode
:
this
.
siteMatterTable
.
search
.
deptCode
,
deptCode
:
this
.
siteMatterTable
.
search
.
deptCode
,
...
search
,
});
});
if
(
res
.
data
.
code
==
1
)
{
if
(
res
.
data
.
code
==
1
)
{
let
{
pageInfo
,
data
}
=
res
.
data
.
data
;
let
{
pageInfo
,
data
}
=
res
.
data
.
data
;
...
@@ -422,7 +416,7 @@ export default {
...
@@ -422,7 +416,7 @@ export default {
this
.
siteMatterTable
.
loading
=
false
;
this
.
siteMatterTable
.
loading
=
false
;
},
},
// 获取一体化事项列表
// 获取一体化事项列表
async
getMatterListData
(
search
=
{}
)
{
async
getMatterListData
()
{
this
.
baseMatterTable
.
loading
=
true
;
this
.
baseMatterTable
.
loading
=
true
;
let
res
=
await
getMatterListSubList
({
let
res
=
await
getMatterListSubList
({
siteId
:
this
.
siteId
,
siteId
:
this
.
siteId
,
...
@@ -431,7 +425,6 @@ export default {
...
@@ -431,7 +425,6 @@ export default {
matterName
:
`%
${
this
.
baseMatterTable
.
search
.
matterName
}
%`
,
matterName
:
`%
${
this
.
baseMatterTable
.
search
.
matterName
}
%`
,
source
:
this
.
baseMatterTable
.
search
.
source
,
source
:
this
.
baseMatterTable
.
search
.
source
,
deptCode
:
this
.
baseMatterTable
.
search
.
deptCode
,
deptCode
:
this
.
baseMatterTable
.
search
.
deptCode
,
...
search
,
});
});
if
(
res
.
data
.
code
===
1
)
{
if
(
res
.
data
.
code
===
1
)
{
let
{
pageInfo
,
data
,
dict
}
=
res
.
data
.
data
;
let
{
pageInfo
,
data
,
dict
}
=
res
.
data
.
data
;
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
View file @
5fe0b31b
This diff is collapsed.
Click to expand it.
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