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
2cacd07f
Commit
2cacd07f
authored
Aug 31, 2023
by
王晓旭
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改门户
parent
aab67219
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
64 additions
and
32 deletions
+64
-32
portal-manager-ui/admin/src/App.vue
portal-manager-ui/admin/src/App.vue
+9
-1
portal-manager-ui/admin/src/views/dataActuary/dataActuary.vue
...al-manager-ui/admin/src/views/dataActuary/dataActuary.vue
+43
-21
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+5
-4
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
.../src/views/dataAdmin/components/queueCall/queueRecord.vue
+5
-4
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
...ws/dataAdmin/components/sampleRecordReport/sampleForm.vue
+2
-2
No files found.
portal-manager-ui/admin/src/App.vue
View file @
2cacd07f
...
...
@@ -57,11 +57,19 @@ export default {
};
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
>
.app {
min-width: 1600px;
}
.export {
background-color: rgba(0, 0, 0, 0.3);
}
.ant-calendar-prev-month-btn::before,
.ant-calendar-prev-year-btn::before,
.ant-calendar-prev-year-btn::after,
.ant-calendar-next-month-btn::before,
.ant-calendar-next-year-btn::before,
.ant-calendar-next-year-btn::after{
border-color: rgba(0, 0, 0, 1) !important;
}
</
style
>
\ No newline at end of file
portal-manager-ui/admin/src/views/dataActuary/dataActuary.vue
View file @
2cacd07f
...
...
@@ -4,9 +4,7 @@
<div
class=
"act_cont"
>
<div
class=
"act_tit"
>
<h1>
智慧政务数据精算
</h1>
<p>
运用以人工智能为代表的新技术,驱动政务服务模式创新,为人民提供更加智慧化、人性化的政务服务,实现互联网与政务服务深度融合,大幅提升政务服务智慧化水平,让政府服务更聪明,让企业和市民办事更方便、更快捷、更有效率。
</p>
<p>
运用以人工智能为代表的新技术,驱动政务服务模式创新,为人民提供更加智慧化、人性化的政务服务,实现互联网与政务服务深度融合,大幅提升政务服务智慧化水平,让政府服务更聪明,让企业和市民办事更方便、更快捷、更有效率。
</p>
</div>
<div
class=
"over_act_mod"
>
<div
class=
"act_mod"
ref=
"mode"
>
...
...
@@ -14,7 +12,6 @@
class=
"act_mod_item"
v-for=
"(item, index) of menuPermission"
:key=
"item.id"
@
click=
"handleJump(item.url)"
@
mouseover=
"hoverItem(index)"
@
mouseleave=
"hoverleave(index)"
:style=
"
{
...
...
@@ -23,12 +20,10 @@
'.png')}) no-repeat`,
}"
>
<div
class=
"actitem_tit"
>
{{
item
.
name
}}
</div>
<div
class=
"actitem_p"
>
{{
item
.
hover
?
item
.
remark
:
"
Business data analysis
"
}}
</div>
<div
class=
"actitem_tit"
>
{{
item
.
name
}}
</div>
<div
class=
"actitem_p"
>
{{
item
.
hover
?
item
.
remark
:
"
Business data analysis
"
}}
</div>
<div
class=
"actitem_btn"
v-show=
"item.hover"
@
click=
"handleJump(item.url)"
>
查看详情
</div>
</div>
</div>
</div>
...
...
@@ -46,15 +41,15 @@ export default {
data
()
{
return
{
api
:
process
.
env
.
VUE_APP_API_IMG_URL
,
menuPermission
:
[]
,
menuPermission
:
[]
};
},
components
:
{
Start
,
Start
},
computed
:
{
...
mapState
(
"
user
"
,
[
"
userData
"
,
"
token
"
])
,
...
mapState
(
"
user
"
,
[
"
userData
"
,
"
token
"
])
},
created
()
{
...
...
@@ -68,14 +63,24 @@ export default {
this
.
menuPermission
[
index
].
hover
=
true
;
this
.
$refs
.
mode
.
style
.
transition
=
"
all 1s ease 0s
"
;
// 如果大于6就要往前移动
let
listlength
=
this
.
menuPermission
.
length
;
if
(
listlength
>
6
)
{
if
(
listlength
%
2
==
1
)
{
this
.
$refs
.
mode
.
style
.
paddingLeft
=
"
190px
"
;
}
else
{
this
.
$refs
.
mode
.
style
.
paddingLeft
=
"
380px
"
;
}
}
if
(
index
>
5
)
{
let
num
=
index
-
5
;
this
.
$refs
.
mode
.
style
.
transform
=
"
translateX(-
"
+
num
*
190
+
"
px)
"
;
this
.
$forceUpdate
();
}
this
.
$forceUpdate
();
},
hoverleave
(
index
)
{
this
.
$refs
.
mode
.
style
.
transform
=
"
translate(0, 0)
"
;
this
.
$refs
.
mode
.
style
.
paddingLeft
=
"
0px
"
;
// this.$refs.mode.style.paddingRight = "0px";
this
.
$refs
.
mode
.
style
.
transition
=
"
all .5s ease 0s
"
;
this
.
menuPermission
[
index
].
hover
=
false
;
this
.
$forceUpdate
();
...
...
@@ -93,10 +98,10 @@ export default {
// 获取子菜单权限
getChildrenPermission
()
{
let
{
menuList
}
=
this
.
userData
;
let
actuary
=
menuList
.
filter
(
(
v
)
=>
v
.
name
===
"
数据精算
"
);
let
actuary
=
menuList
.
filter
(
v
=>
v
.
name
===
"
数据精算
"
);
if
(
actuary
.
length
)
{
let
arr
=
actuary
.
map
(
(
v
)
=>
{
.
map
(
v
=>
{
if
(
v
.
childList
.
length
)
{
return
v
.
childList
;
}
else
{
...
...
@@ -104,13 +109,13 @@ export default {
}
})
.
flat
();
arr
.
forEach
(
(
item
)
=>
{
arr
.
forEach
(
item
=>
{
item
.
hover
=
false
;
});
this
.
menuPermission
=
arr
;
}
}
,
}
,
}
}
};
</
script
>
...
...
@@ -182,7 +187,8 @@ export default {
}
.act_mod {
display: flex;
justify-content: space-between;
// justify-content: space-between;
justify-content: center;
transition: all 1s ease 0s;
.act_mod_item:hover {
...
...
@@ -204,7 +210,7 @@ export default {
font-family: Source Han Sans CN;
font-weight: bold;
color: #ffffff;
line-height: 59px
;
padding: 0
;
margin-bottom: 20px;
}
.actitem_tit::before {
...
...
@@ -217,6 +223,22 @@ export default {
font-weight: 400;
color: #ffffff;
line-height: 28px;
padding: 0;
}
.actitem_btn {
margin-top: 20px;
width: 98px;
height: 36px;
background: #ffffff;
border-radius: 8px;
font-size: 16px;
font-family: Source Han Sans CN;
font-weight: 500;
color: #0857e8;
line-height: 28px;
display: flex;
justify-content: center;
align-items: center;
}
}
.act_mod_item {
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
2cacd07f
...
...
@@ -162,7 +162,7 @@ export default {
const
columns
=
[
{
title
:
"
序号
"
,
width
:
10
0
,
width
:
5
0
,
align
:
"
center
"
,
fixed
:
"
left
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
...
...
@@ -172,7 +172,8 @@ export default {
{
title
:
"
排队编号
"
,
fixed
:
"
left
"
,
width
:
150
,
align
:
"
center
"
,
width
:
100
,
dataIndex
:
"
flownum
"
,
},
{
...
...
@@ -487,8 +488,8 @@ export default {
size
:
size
,
...
this
.
searchForm
,
});
if
(
res
.
data
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
.
data
;
if
(
res
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
;
this
.
excelData
=
this
.
excelData
.
concat
(
data
||
[]);
// app.vue loading
this
.
$app
.
progressFile
.
show
=
true
;
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
View file @
2cacd07f
...
...
@@ -156,7 +156,7 @@ export default {
const
columns
=
[
{
title
:
"
序号
"
,
width
:
10
0
,
width
:
5
0
,
align
:
"
center
"
,
fixed
:
"
left
"
,
customRender
:
(
text
,
record
,
index
)
=>
{
...
...
@@ -166,7 +166,8 @@ export default {
{
title
:
"
排队编号
"
,
fixed
:
"
left
"
,
width
:
150
,
align
:
"
center
"
,
width
:
100
,
dataIndex
:
"
flownum
"
,
},
{
...
...
@@ -481,8 +482,8 @@ export default {
size
:
size
,
...
this
.
searchForm
,
});
if
(
res
.
data
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
.
data
;
if
(
res
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
;
this
.
excelData
=
this
.
excelData
.
concat
(
data
||
[]);
// app.vue loading
this
.
$app
.
progressFile
.
show
=
true
;
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
View file @
2cacd07f
...
...
@@ -214,8 +214,8 @@ export default {
pramse
.
materialName
=
`%
${
this
.
searchForm
.
searchName
}
%`
;
}
let
res
=
await
getBillList
(
pramse
);
if
(
res
.
data
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
.
data
;
if
(
res
.
code
==
1
)
{
let
{
data
,
total
}
=
res
.
data
;
list
=
data
;
listTotal
=
total
;
}
...
...
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