Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
JINRUN-PERPOSITION
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
JINRUN-PERPOSITION
Commits
716588d1
Commit
716588d1
authored
Nov 28, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add:访客页面
parent
b800848e
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
56 additions
and
256 deletions
+56
-256
.env.development
.env.development
+1
-1
.env.production
.env.production
+1
-1
.env.staging
.env.staging
+1
-1
fangke.js
src/api/jinrun/fangke.js
+13
-9
fangke.vue
src/views/person/fangke.vue
+40
-244
No files found.
.env.development
View file @
716588d1
# 页面标题
VUE_APP_TITLE =
高区应急管理平台
VUE_APP_TITLE =
人员定位系统
# 开发环境配置
ENV = 'development'
...
...
.env.production
View file @
716588d1
# 页面标题
VUE_APP_TITLE =
高区应急管理平台
VUE_APP_TITLE =
人员定位系统
# 生产环境配置
ENV = 'production'
...
...
.env.staging
View file @
716588d1
# 页面标题
VUE_APP_TITLE =
高区应急管理平台
VUE_APP_TITLE =
人员定位系统
BABEL_ENV = production
...
...
src/api/jinrun/fangke.js
View file @
716588d1
...
...
@@ -3,26 +3,24 @@ import request from '@/utils/request'
// 查询人员信息列表
export
function
listInfo
(
query
)
{
return
request
({
url
:
'
/person/info/get
RemoteVisitorInfo
List
'
,
url
:
'
/person/info/get
Person
List
'
,
method
:
'
get
'
,
params
:
query
})
}
// 解绑卡
export
function
unbindCard
(
data
)
{
return
request
({
url
:
'
/person/info/
giveback
'
,
url
:
'
/person/info/
unbindCard
'
,
method
:
'
put
'
,
data
:
data
})
}
// 新增人员信息
export
function
addInfo
(
data
)
{
return
request
({
url
:
'
/person/info/add
RemoteVisitorInfo
'
,
url
:
'
/person/info/add
Person
'
,
method
:
'
post
'
,
data
:
data
})
...
...
@@ -31,17 +29,23 @@ export function addInfo(data) {
// 修改人员信息
export
function
updateInfo
(
data
)
{
return
request
({
url
:
'
/person/info/update
RemoteVisitorInfo
'
,
url
:
'
/person/info/update
Person
'
,
method
:
'
put
'
,
data
:
data
})
}
export
function
getInfo
(
id
)
{
return
request
({
url
:
'
/person/info/getPersonById/
'
+
id
,
method
:
'
get
'
})
}
// 删除人员信息
export
function
delInfo
(
data
)
{
export
function
delInfo
(
id
)
{
return
request
({
url
:
'
/person/info/delete
RemoteVisitorInfo
'
,
url
:
'
/person/info/delete
Person/
'
+
id
,
method
:
'
delete
'
,
data
:
data
})
}
src/views/person/fangke.vue
View file @
716588d1
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