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
a820827e
Commit
a820827e
authored
May 29, 2023
by
王启林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
配置平台服务
parent
707cc622
Changes
11
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
6007 additions
and
3081 deletions
+6007
-3081
portal-manager-ui/admin/package-lock.json
portal-manager-ui/admin/package-lock.json
+5859
-3002
portal-manager-ui/admin/src/api/applService.js
portal-manager-ui/admin/src/api/applService.js
+2
-2
portal-manager-ui/admin/src/assets/images/Android.png
portal-manager-ui/admin/src/assets/images/Android.png
+0
-0
portal-manager-ui/admin/src/assets/images/Cjj.jpg
portal-manager-ui/admin/src/assets/images/Cjj.jpg
+0
-0
portal-manager-ui/admin/src/assets/images/Cshape.png
portal-manager-ui/admin/src/assets/images/Cshape.png
+0
-0
portal-manager-ui/admin/src/assets/images/JAVA.png
portal-manager-ui/admin/src/assets/images/JAVA.png
+0
-0
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/windowEvaluation.vue
...in/components/evaluationRecordReport/windowEvaluation.vue
+7
-4
portal-manager-ui/admin/src/views/thePlatformIsSet/components/applService.vue
...min/src/views/thePlatformIsSet/components/applService.vue
+117
-68
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/components/appManage/application.vue
...onents/productManage/components/appManage/application.vue
+18
-3
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/components/appManage/components/Details.vue
...productManage/components/appManage/components/Details.vue
+2
-0
portal-manager-ui/admin/yarn.lock
portal-manager-ui/admin/yarn.lock
+2
-2
No files found.
portal-manager-ui/admin/package-lock.json
View file @
a820827e
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/api/applService.js
View file @
a820827e
...
...
@@ -2,11 +2,11 @@ import http from "../request/http";
let
baseURL
=
process
.
env
.
VUE_APP_API_BASE_URL
// 1.10.1. 查询应用服务列表
export
function
serviceList
(
params
)
{
return
http
.
post
(
`
${
baseURL
}
/zwfw/
system/service
/list`
,
params
);
return
http
.
post
(
`
${
baseURL
}
/zwfw/
product/apps
/list`
,
params
);
}
// 1.10.2. 查看应用服务
export
function
serviceInfo
(
params
)
{
return
http
.
get
(
`
${
baseURL
}
/zwfw/
system/service/info
`
,
params
);
return
http
.
get
(
`
${
baseURL
}
/zwfw/
product/document/list
`
,
params
);
}
// 1.10.3. 保存更新应用服务
export
function
serviceSave
(
params
)
{
...
...
portal-manager-ui/admin/src/assets/images/Android.png
0 → 100644
View file @
a820827e
5.2 KB
portal-manager-ui/admin/src/assets/images/Cjj.jpg
0 → 100644
View file @
a820827e
44 KB
portal-manager-ui/admin/src/assets/images/Cshape.png
0 → 100644
View file @
a820827e
6.29 KB
portal-manager-ui/admin/src/assets/images/JAVA.png
0 → 100644
View file @
a820827e
8.35 KB
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/windowEvaluation.vue
View file @
a820827e
...
...
@@ -45,11 +45,13 @@
:columns="tableHeaders" :dataSource="tableSourceData">
<template
slot=
"评价人照片"
slot-scope=
"text"
>
<a-avatar
v-if=
"!text || !baseurl"
shape=
"square"
:size=
"40"
icon=
"user"
/>
<img
v-else
:src=
"baseurl + '/' + text"
style=
"max-width: 100px; max-height: 100px"
@
click=
"$viewerApi(
{images:[baseurl + '/' + text]})"/>
<img
v-else
:src=
"baseurl + '/' + text"
style=
"max-width: 100px; max-height: 100px"
@
click=
"$viewerApi(
{ images: [baseurl + '/' + text] })" />
</
template
>
<
template
slot=
"操作"
slot-scope=
"text, record"
>
<a-button
type=
"link"
style=
"color: #ff7370"
@
click=
"handleDel(record.id)"
>
删除
</a-button>
<a-button
type=
"link"
@
click=
"openHandlingDetails(record)"
>
详情
</a-button>
<a-button
type=
"link"
@
click=
"openHandlingDetails(record)"
v-if=
"record.queueid == 0 && record.pjxt != 1"
>
详情
</a-button>
</
template
>
</a-table>
<HandlingDetails
ref=
"HandlingDetails"
/>
...
...
@@ -324,6 +326,7 @@ export default {
},
//详情模块
openHandlingDetails
(
record
)
{
console
.
log
(
record
)
// 判断为窗口屏或者其他状况,调用不同接口
if
(
record
.
pjxt
==
1
)
{
this
.
$refs
.
HandlingDetails
.
modalInfo
.
title
=
"
办理明细
"
;
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/applService.vue
View file @
a820827e
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/components/appManage/application.vue
View file @
a820827e
...
...
@@ -25,8 +25,7 @@
<a-table
size=
"small"
bordered
:row-key=
"(record) => record.id"
:scroll=
"
{ y: 590 }" :pagination="tablePagination"
@change="pagTableChange" :loading="tableLoading" :columns="tableHeaders" :dataSource="tableSourceData">
<template
slot=
"operation"
slot-scope=
"text, record, index"
>
<a-button
type=
"link"
v-if=
"record.appFileUrl"
@
click=
"handleDowload(record.appFileUrl)"
>
下载应用
</a-button>
<a-button
type=
"link"
v-if=
"record.appFileUrl"
@
click=
"handleDowload(record.appFileUrl)"
>
下载应用
</a-button>
<a-button
type=
"link"
@
click=
"openDetails(record)"
>
编辑
</a-button>
<a-popconfirm
title=
"确定要删除此应用吗?"
ok-text=
"确定"
cancel-text=
"取消"
@
confirm=
"delRow(record)"
>
<a-button
type=
"link"
style=
"color: #ff4420"
>
删除
</a-button>
...
...
@@ -43,6 +42,9 @@
import
{
getApps
,
deleteApps
}
from
"
@/api/thePlatformIsSet.js
"
;
import
table
from
"
@/mixins/table
"
;
import
Details
from
"
./components/Details.vue
"
;
let
obj
=
{
}
export
default
{
mixins
:
[
table
],
name
:
"
PortalAdminVueAlerting
"
,
...
...
@@ -66,6 +68,7 @@ export default {
title
:
"
开发语言
"
,
align
:
"
center
"
,
dataIndex
:
"
deveLanguage
"
,
customRender
:
(
text
,
record
,
index
)
=>
this
.
dict
.
deveLanguage
[
text
],
},
{
title
:
"
版本
"
,
...
...
@@ -164,11 +167,12 @@ export default {
handleDowload
(
url
)
{
let
arr
=
url
.
split
(
'
/
'
)
const
a
=
document
.
createElement
(
"
a
"
);
a
.
href
=
process
.
env
.
VUE_APP_API_BASE_URL
+
'
/
'
+
url
;
a
.
href
=
process
.
env
.
VUE_APP_API_BASE_URL
+
'
/
'
+
url
;
a
.
download
=
arr
[
arr
.
length
-
1
];
a
.
click
();
},
openDetails
(
item
)
{
if
(
item
)
{
this
.
$refs
.
Details
.
modalInfo
.
title
=
"
编辑应用
"
;
this
.
$refs
.
Details
.
getInfo
(
item
.
id
)
...
...
@@ -176,6 +180,17 @@ export default {
this
.
$refs
.
Details
.
modalInfo
.
title
=
"
新增应用
"
;
}
this
.
$refs
.
Details
.
modalInfo
.
visible
=
true
;
//重置数据
this
.
$refs
.
Details
.
appForm
=
{
appName
:
""
,
deveLanguage
:
undefined
,
versionNumber
:
""
,
versionInfo
:
""
,
appFileUrl
:
""
,
isEnable
:
false
,
}
this
.
$refs
.
Details
.
uploadInfo
.
fileList
=
[]
// this.$refs.Details.appForm.resetFields()
this
.
$refs
.
Details
.
modalInfo
.
width
=
"
30%
"
;
},
...
...
portal-manager-ui/admin/src/views/thePlatformIsSet/components/productManage/components/appManage/components/Details.vue
View file @
a820827e
...
...
@@ -82,11 +82,13 @@ export default {
},
mounted
()
{
},
methods
:
{
getInfo
(
id
)
{
getAppsInfo
({
id
:
id
}).
then
(
res
=>
{
res
.
data
.
isEnable
=
res
.
data
.
isEnable
==
1
res
.
data
.
deveLanguage
=
this
.
deveLanguage
[
res
.
data
.
deveLanguage
]
this
.
appForm
=
res
.
data
if
(
res
.
data
.
appFileUrl
)
{
this
.
uploadInfo
.
fileList
=
[
...
...
portal-manager-ui/admin/yarn.lock
View file @
a820827e
...
...
@@ -1608,7 +1608,7 @@
"@vue/vue-loader-v15@npm:vue-loader@^15.9.7":
version "15.10.1"
resolved "https://registry.npm
mirror.com
/vue-loader/-/vue-loader-15.10.1.tgz"
resolved "https://registry.npm
js.org
/vue-loader/-/vue-loader-15.10.1.tgz"
integrity sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==
dependencies:
"@vue/component-compiler-utils" "^3.1.0"
...
...
@@ -6175,7 +6175,7 @@ vue-highlightjs@^1.3.3:
vue-hot-reload-api@^2.3.0:
version "2.3.4"
resolved "https://registry.npm
mirror.com
/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"
resolved "https://registry.npm
js.org
/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"
integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==
vue-loader@^17.0.0:
...
...
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