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
0a1bb3f4
Commit
0a1bb3f4
authored
Dec 27, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
007e7909
0ece3ba2
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
138 additions
and
2 deletions
+138
-2
base-manager-ui/admin/src/pages/basicset/sms/configurat.vue
base-manager-ui/admin/src/pages/basicset/sms/configurat.vue
+6
-1
base-manager-ui/admin/src/pages/basicset/surface/components/ShowBox.vue
...i/admin/src/pages/basicset/surface/components/ShowBox.vue
+4
-0
base-manager-ui/admin/src/pages/basicset/surface/defaultshow/DefaultShow.vue
...in/src/pages/basicset/surface/defaultshow/DefaultShow.vue
+123
-0
base-manager-ui/admin/src/pages/basicset/surface/modal/AddSurface.vue
...-ui/admin/src/pages/basicset/surface/modal/AddSurface.vue
+4
-0
portal-manager-ui/admin/src/views/thePlatformIsSet/components/permissionsModel/userManagement.vue
...tformIsSet/components/permissionsModel/userManagement.vue
+1
-1
No files found.
base-manager-ui/admin/src/pages/basicset/sms/configurat.vue
View file @
0a1bb3f4
...
@@ -12,7 +12,12 @@
...
@@ -12,7 +12,12 @@
{{
v
}}
{{
v
}}
</div>
</div>
</div>
</div>
<a-tooltip>
<template
slot=
"title"
>
当前状态:
{{
setInfo
.
messageoff
?
"
开启
"
:
"
关闭
"
}}
</
template
>
<YButton
v-model=
"setInfo.messageoff"
@
change=
"changeClose"
></YButton>
<YButton
v-model=
"setInfo.messageoff"
@
change=
"changeClose"
></YButton>
</a-tooltip>
</div>
</div>
</template>
</template>
...
...
base-manager-ui/admin/src/pages/basicset/surface/components/ShowBox.vue
View file @
0a1bb3f4
...
@@ -55,6 +55,7 @@ import SelfService from "../selfservice/SelfService.vue";
...
@@ -55,6 +55,7 @@ import SelfService from "../selfservice/SelfService.vue";
import
DesSelfService
from
"
../desSelfservice/DesSelfService.vue
"
;
import
DesSelfService
from
"
../desSelfservice/DesSelfService.vue
"
;
import
SignDevicekin
from
"
../signdeviceskin/SignDeviceSkin.vue
"
;
import
SignDevicekin
from
"
../signdeviceskin/SignDeviceSkin.vue
"
;
import
InfoDisSkin
from
"
../infoDisSkin/InfoDisSkin.vue
"
;
import
InfoDisSkin
from
"
../infoDisSkin/InfoDisSkin.vue
"
;
import
DefaultShow
from
"
../defaultshow/DefaultShow.vue
"
;
import
{
mapState
,
mapMutations
}
from
"
vuex
"
;
import
{
mapState
,
mapMutations
}
from
"
vuex
"
;
import
{
filterItems
}
from
"
@/utils
"
;
import
{
filterItems
}
from
"
@/utils
"
;
export
default
{
export
default
{
...
@@ -71,6 +72,7 @@ export default {
...
@@ -71,6 +72,7 @@ export default {
DesSelfService
,
DesSelfService
,
SignDevicekin
,
SignDevicekin
,
InfoDisSkin
,
InfoDisSkin
,
DefaultShow
,
},
},
props
:
{},
props
:
{},
data
()
{
data
()
{
...
@@ -121,6 +123,8 @@ export default {
...
@@ -121,6 +123,8 @@ export default {
case
"
xxgk
"
:
case
"
xxgk
"
:
str
=
"
InfoDisSkin
"
;
str
=
"
InfoDisSkin
"
;
break
;
break
;
default
:
str
=
"
DefaultShow
"
;
}
}
return
str
;
return
str
;
},
},
...
...
base-manager-ui/admin/src/pages/basicset/surface/defaultshow/DefaultShow.vue
0 → 100644
View file @
0a1bb3f4
<
template
>
<div
class=
"skin-box"
>
<!-- 1920*1080 -->
<div
:id=
"componentsId"
class=
"across-skin"
v-if=
"imageResolution === '1'"
:style=
"
{
background: filterItem('1', 0),
}"
>
</div>
<!-- 竖版 1080*1920 -->
<div
class=
"vertical-skin"
:id=
"componentsId"
v-else-if=
"imageResolution === '2'"
:style=
"
{
background: filterItem('1', 0),
}"
>
</div>
<!-- 空数据显示 -->
<div
class=
"empty flex aic jcc"
v-else
>
<a-empty
:image=
"require('../../../../assets/img/original.png')"
:image-style=
"
{
height: '80px',
}"
>
<span
slot=
"description"
>
<a
href=
"#API"
>
暂无皮肤模板
</a>
</span>
</a-empty>
</div>
</div>
</
template
>
<
script
>
export
default
{
props
:
{
// imgItem: {
// type: Array,
// required: true,
// default: () => {
// return [];
// },
// },
skinFieldList
:
{
type
:
Array
,
required
:
true
,
default
:
()
=>
{
return
[];
},
},
imageResolution
:
{
required
:
true
,
default
:
"
1
"
,
},
componentsId
:
{
required
:
true
,
type
:
String
,
},
},
data
()
{
return
{
api
:
process
.
env
.
VUE_APP_API_IMG_URL
,
};
},
methods
:
{
// 过滤属性类型
filterItem
(
type
,
index
)
{
let
arr
=
this
.
skinFieldList
.
filter
((
v
)
=>
{
return
v
.
remark
==
type
;
});
if
(
arr
.
length
)
{
return
this
.
filterValueType
(
arr
[
index
]);
}
else
{
return
""
;
}
},
// 过滤属性值类型
filterValueType
(
info
=
{})
{
let
value
=
""
;
if
(
info
.
fieldType
!==
""
&&
info
.
fieldType
===
"
1
"
&&
info
.
fieldValue
)
{
value
=
info
.
fieldValue
;
}
else
if
(
info
.
fieldType
!==
""
&&
info
.
fieldType
===
"
2
"
&&
info
.
fieldValue
)
{
value
=
`url(
${
this
.
api
+
info
.
fieldValue
}
)`
;
}
return
value
;
},
// 过滤导航
filterNav
(
type
)
{
let
arr
=
[];
arr
=
this
.
skinFieldList
.
filter
((
v
)
=>
{
return
v
.
remark
==
type
;
});
return
arr
;
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
.across-skin {
width: 1000px;
height: 562.5px;
color: #fff;
background-image: linear-gradient(#26c5ff, #2c66ff);
background-repeat: no-repeat !important;
background-position: center !important;
background-size: 100% 100% !important;
}
.vertical-skin {
height: 1000px;
width: 562px;
padding: 10px;
background-image: linear-gradient(#26c5ff, #2c66ff);
background-repeat: no-repeat !important;
background-position: center !important;
background-size: 100% 100% !important;
}
</
style
>
base-manager-ui/admin/src/pages/basicset/surface/modal/AddSurface.vue
View file @
0a1bb3f4
...
@@ -196,6 +196,7 @@ import SelfService from "../selfservice/SelfService.vue";
...
@@ -196,6 +196,7 @@ import SelfService from "../selfservice/SelfService.vue";
import
DesSelfService
from
"
../desSelfservice/DesSelfService.vue
"
;
import
DesSelfService
from
"
../desSelfservice/DesSelfService.vue
"
;
import
SignDevicekin
from
"
../signdeviceskin/SignDeviceSkin.vue
"
;
import
SignDevicekin
from
"
../signdeviceskin/SignDeviceSkin.vue
"
;
import
InfoDisSkin
from
"
../infoDisSkin/InfoDisSkin.vue
"
;
import
InfoDisSkin
from
"
../infoDisSkin/InfoDisSkin.vue
"
;
import
DefaultShow
from
"
../defaultshow/DefaultShow.vue
"
;
import
{
uploadFile
,
skinSave
,
getTemplateList
}
from
"
@/services/surface
"
;
import
{
uploadFile
,
skinSave
,
getTemplateList
}
from
"
@/services/surface
"
;
import
html2canvas
from
"
html2canvas
"
;
import
html2canvas
from
"
html2canvas
"
;
import
{
Empty
}
from
"
ant-design-vue
"
;
import
{
Empty
}
from
"
ant-design-vue
"
;
...
@@ -215,6 +216,7 @@ export default {
...
@@ -215,6 +216,7 @@ export default {
DesSelfService
,
DesSelfService
,
SignDevicekin
,
SignDevicekin
,
InfoDisSkin
,
InfoDisSkin
,
DefaultShow
,
},
},
props
:
{
props
:
{
isShow
:
{
isShow
:
{
...
@@ -312,6 +314,8 @@ export default {
...
@@ -312,6 +314,8 @@ export default {
case
"
xxgk
"
:
case
"
xxgk
"
:
str
=
"
InfoDisSkin
"
;
str
=
"
InfoDisSkin
"
;
break
;
break
;
default
:
str
=
"
DefaultShow
"
;
}
}
return
str
;
return
str
;
},
},
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/permissionsModel/userManagement.vue
View file @
0a1bb3f4
...
@@ -182,7 +182,7 @@ export default {
...
@@ -182,7 +182,7 @@ export default {
sourceInfoForm
:
{},
sourceInfoForm
:
{},
userDict
:
{},
// 角色数据
userDict
:
{},
// 角色数据
userform
:
{
userform
:
{
type
:
1
,
type
:
2
,
roleId
:
undefined
,
roleId
:
undefined
,
searchVal
:
undefined
,
searchVal
:
undefined
,
},
},
...
...
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