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
d9cbb94e
Commit
d9cbb94e
authored
Oct 11, 2024
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: 优化窗口板块
parent
ae1ef8cb
Changes
8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
355 additions
and
424 deletions
+355
-424
base-manager-ui/admin/src/assets/css/relas.less
base-manager-ui/admin/src/assets/css/relas.less
+12
-12
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs1.vue
.../src/pages/basicset/business/components/businessTabs1.vue
+22
-17
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs2.vue
.../src/pages/basicset/business/components/businessTabs2.vue
+14
-12
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
.../src/pages/basicset/business/components/businessTabs3.vue
+14
-13
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs4.vue
.../src/pages/basicset/business/components/businessTabs4.vue
+7
-4
base-manager-ui/admin/src/pages/basicset/dept/addWindowMatter.vue
...ager-ui/admin/src/pages/basicset/dept/addWindowMatter.vue
+158
-212
base-manager-ui/admin/src/pages/basicset/dept/components/addWindowBusiness.vue
.../src/pages/basicset/dept/components/addWindowBusiness.vue
+1
-1
base-manager-ui/admin/src/pages/basicset/dept/department.vue
base-manager-ui/admin/src/pages/basicset/dept/department.vue
+127
-153
No files found.
base-manager-ui/admin/src/assets/css/relas.less
View file @
d9cbb94e
...
...
@@ -114,19 +114,19 @@
}
// 带按钮搜索框
.search {
input {
font-size: @fz14;
color: #BFBFBF;
}
//
.search {
//
input {
//
font-size: @fz14;
//
color: #BFBFBF;
//
}
.chaxun {
color: @clfff;
border: 1px solid #5ab6ff;
padding: 0 14px;
background: @addbg;
}
}
//
.chaxun {
//
color: @clfff;
//
border: 1px solid #5ab6ff;
//
padding: 0 14px;
//
background: @addbg;
//
}
//
}
// 按钮
.btn {
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs1.vue
View file @
d9cbb94e
...
...
@@ -42,6 +42,17 @@
}"
@changePagination="getSiteBusinessData"
>
<!-- 序号 -->
<template
slot=
"index"
slot-scope=
"
{ record, index }">
<span
v-if=
"record.parentId === 0"
>
{{
(
siteBusinessTable
.
page
-
1
)
*
siteBusinessTable
.
size
+
index
+
1
}}
</span>
</
template
>
<
template
slot=
"action"
slot-scope=
"{ record }"
>
<a-space
size=
"middle"
>
<span
...
...
@@ -99,6 +110,13 @@
}"
@
changePagination=
"getBusinessListData"
>
<!-- 序号 -->
<
template
slot=
"index"
slot-scope=
"{ record, index }"
>
<span
v-if=
"record.parentId === 0"
>
{{
(
businessTable
.
page
-
1
)
*
businessTable
.
size
+
index
+
1
}}
</span>
</
template
>
<
template
slot=
"action"
slot-scope=
"{ record }"
>
<a-space
size=
"middle"
>
<span
class=
"primary pointer"
@
click=
"handleIn(record.id)"
...
...
@@ -153,15 +171,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
if
(
record
.
parentId
===
0
)
{
return
(
(
this
.
siteBusinessTable
.
page
-
1
)
*
this
.
siteBusinessTable
.
size
+
index
+
1
);
}
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
@@ -189,14 +200,8 @@ export default {
title
:
"
序号
"
,
key
:
"
id
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
if
(
record
.
parentId
===
0
)
{
return
(
(
this
.
businessTable
.
page
-
1
)
*
this
.
businessTable
.
size
+
index
+
1
);
}
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs2.vue
View file @
d9cbb94e
...
...
@@ -71,6 +71,11 @@
}"
@changePagination="getMatterSiteData"
>
<!-- 序号 -->
<template
slot=
"index"
slot-scope=
"
{ index }">
{{
(
siteMatterTable
.
page
-
1
)
*
siteMatterTable
.
size
+
index
+
1
}}
</
template
>
<!-- 事项名称 -->
<
template
slot=
"matterName"
slot-scope=
"{ record }"
>
<a-tooltip
placement=
"topLeft"
>
...
...
@@ -188,6 +193,11 @@
}"
@
changePagination=
"getMatterListData"
>
<!-- 序号 -->
<
template
slot=
"index"
slot-scope=
"{ index }"
>
{{
(
baseMatterTable
.
page
-
1
)
*
baseMatterTable
.
size
+
index
+
1
}}
</
template
>
<!-- 事项名称 -->
<
template
slot=
"matterName"
slot-scope=
"{ record }"
>
<a-tooltip
placement=
"topLeft"
>
...
...
@@ -280,12 +290,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
(
(
this
.
siteMatterTable
.
page
-
1
)
*
this
.
siteMatterTable
.
size
+
index
+
1
);
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
@@ -332,12 +338,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
(
(
this
.
baseMatterTable
.
page
-
1
)
*
this
.
baseMatterTable
.
size
+
index
+
1
);
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs3.vue
View file @
d9cbb94e
...
...
@@ -36,6 +36,11 @@
}"
@changePagination="getBusinessMatterData"
>
<!-- 序号 -->
<template
slot=
"index"
slot-scope=
"
{ index }">
{{
(
siteBusinessTable
.
page
-
1
)
*
siteBusinessTable
.
size
+
index
+
1
}}
</
template
>
<
template
slot=
"action"
slot-scope=
"{ record }"
>
<a-space>
<span
...
...
@@ -109,6 +114,11 @@
}"
@
changePagination=
"getMatterSiteData"
>
<!-- 序号 -->
<
template
slot=
"index"
slot-scope=
"{ index }"
>
{{
(
siteMatterTable
.
page
-
1
)
*
siteMatterTable
.
size
+
index
+
1
}}
</
template
>
<!-- 事项名称 -->
<
template
slot=
"matterName"
slot-scope=
"{ record }"
>
<a-tooltip
placement=
"topLeft"
>
...
...
@@ -282,13 +292,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
(
(
this
.
siteBusinessTable
.
page
-
1
)
*
this
.
siteBusinessTable
.
size
+
index
+
1
);
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
@@ -321,12 +326,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
(
(
this
.
siteMatterTable
.
page
-
1
)
*
this
.
siteMatterTable
.
size
+
index
+
1
);
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
base-manager-ui/admin/src/pages/basicset/business/components/businessTabs4.vue
View file @
d9cbb94e
...
...
@@ -77,6 +77,11 @@
}"
@changePagination="getMatterSiteData"
>
<!-- 序号 -->
<template
slot=
"index"
slot-scope=
"
{ index }">
{{
(
searchForm
.
page
-
1
)
*
searchForm
.
size
+
index
+
1
}}
</
template
>
<!-- 事项名称 -->
<
template
slot=
"matterName"
slot-scope=
"{ text }"
>
<a-tooltip
placement=
"topLeft"
>
...
...
@@ -168,10 +173,8 @@ export default {
{
title
:
"
序号
"
,
width
:
"
50px
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
return
(
(
this
.
searchForm
.
page
-
1
)
*
this
.
searchForm
.
size
+
index
+
1
);
scopedSlots
:
{
customRender
:
"
index
"
,
},
},
{
...
...
base-manager-ui/admin/src/pages/basicset/dept/addWindowMatter.vue
View file @
d9cbb94e
This diff is collapsed.
Click to expand it.
base-manager-ui/admin/src/pages/basicset/dept/components/addWindowBusiness.vue
View file @
d9cbb94e
...
...
@@ -134,7 +134,7 @@ export default {
methods
:
{
// 获取窗口信息
async
getWindowInfo
(
info
)
{
await
this
.
s
iteBusinessList
();
await
this
.
getS
iteBusinessList
();
this
.
formData
=
info
;
if
(
info
.
businessIds
.
length
)
{
this
.
rowKeys
=
info
.
businessIds
;
...
...
base-manager-ui/admin/src/pages/basicset/dept/department.vue
View file @
d9cbb94e
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