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
3d6a38fa
Commit
3d6a38fa
authored
Jan 13, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pref:修改应用服务
parent
93fcc6df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
portal-manager-ui/admin/src/request/request.js
portal-manager-ui/admin/src/request/request.js
+1
-1
portal-manager-ui/admin/src/views/thePlatformIsSet/components/applService.vue
...min/src/views/thePlatformIsSet/components/applService.vue
+11
-6
No files found.
portal-manager-ui/admin/src/request/request.js
View file @
3d6a38fa
...
@@ -20,8 +20,8 @@ service.interceptors.request.use(
...
@@ -20,8 +20,8 @@ service.interceptors.request.use(
const
Authorization
=
JSON
.
parse
(
localStorage
.
getItem
(
"
Authorization
"
));
const
Authorization
=
JSON
.
parse
(
localStorage
.
getItem
(
"
Authorization
"
));
if
(
Authorization
)
{
if
(
Authorization
)
{
config
.
headers
.
Authorization
=
Authorization
;
config
.
headers
.
Authorization
=
Authorization
;
config
.
headers
.
Authtoken
=
Authorization
;
}
}
console
.
log
(
"
>>>>>
"
,
config
);
return
config
;
return
config
;
},
},
(
error
)
=>
{
(
error
)
=>
{
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/applService.vue
View file @
3d6a38fa
<
template
>
<
template
>
<div
class=
"application"
>
<div
class=
"application"
>
<div
class=
"appl_search"
ref=
"search_box"
>
<div
class=
"appl_search"
>
<div
class=
"search"
>
<div
class=
"search"
>
<h1>
应用服务
</h1>
<h1>
应用服务
</h1>
<div
class=
"search-box"
>
<div
class=
"search-box"
>
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
</div>
</div>
</div>
</div>
<div
class=
"stepbox"
>
<div
class=
"stepbox"
:style=
"
{ height: contentHigh + 'px' }"
>
<div
class=
"_left"
>
<div
class=
"_left"
>
<a-steps
progress-dot
direction=
"vertical"
>
<a-steps
progress-dot
direction=
"vertical"
>
<a-step
<a-step
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
</a-step>
</a-step>
</a-steps>
</a-steps>
</div>
</div>
<div
class=
"_right"
ref=
"scroll"
>
<div
class=
"_right"
>
<div
class=
"list_box step_sign"
>
<div
class=
"list_box step_sign"
>
<div
class=
"title-box"
>
<div
class=
"title-box"
>
<span
class=
"list_title"
>
{{
curInfo
.
serviceName
}}
</span>
<span
class=
"list_title"
>
{{
curInfo
.
serviceName
}}
</span>
...
@@ -42,9 +42,9 @@
...
@@ -42,9 +42,9 @@
:key=
"itm.id"
:key=
"itm.id"
>
>
<div
class=
"app-name"
>
{{
itm
.
packageName
}}
</div>
<div
class=
"app-name"
>
{{
itm
.
packageName
}}
</div>
<
!--
<img
src=
"../../../assets/images/php.png"
alt
/>
--
>
<
img
src=
"../../../assets/images/php.png"
alt
/
>
<div>
{{
itm
.
packageVersion
}}
</div>
<div>
{{
itm
.
packageVersion
}}
</div>
<
!--
<div
class=
""
>
{{
itm
.
packageRemark
}}
</div>
--
>
<
div
class=
""
>
{{
itm
.
packageRemark
}}
</div
>
<div
v-if=
"itm.lapseTime"
>
<div
v-if=
"itm.lapseTime"
>
失效时间:
{{
$moment
(
itm
.
lapseTime
).
format
(
"
YYYY-MM-DD
"
)
}}
失效时间:
{{
$moment
(
itm
.
lapseTime
).
format
(
"
YYYY-MM-DD
"
)
}}
</div>
</div>
...
@@ -63,8 +63,10 @@
...
@@ -63,8 +63,10 @@
<
script
>
<
script
>
import
{
serviceList
}
from
"
@/api/applService.js
"
;
import
{
serviceList
}
from
"
@/api/applService.js
"
;
import
common
from
"
@/mixins/common
"
;
export
default
{
export
default
{
name
:
"
PortalAdminVueApplService
"
,
name
:
"
PortalAdminVueApplService
"
,
mixins
:
[
common
],
data
()
{
data
()
{
return
{
return
{
api
:
process
.
env
.
VUE_APP_API_BASE_URL
+
"
/
"
,
api
:
process
.
env
.
VUE_APP_API_BASE_URL
+
"
/
"
,
...
@@ -78,6 +80,9 @@ export default {
...
@@ -78,6 +80,9 @@ export default {
created
()
{
created
()
{
this
.
getServiceList
();
this
.
getServiceList
();
},
},
mounted
()
{
this
.
setContentHigh
();
},
methods
:
{
methods
:
{
getServiceList
()
{
getServiceList
()
{
...
@@ -255,9 +260,9 @@ export default {
...
@@ -255,9 +260,9 @@ export default {
}
}
.stepbox {
.stepbox {
flex: 1;
width: 90%;
width: 90%;
margin-left: 5%;
margin-left: 5%;
flex: 1;
display: flex;
display: flex;
/deep/.ant-steps-item-content {
/deep/.ant-steps-item-content {
cursor: pointer;
cursor: pointer;
...
...
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