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
bf07f95f
Commit
bf07f95f
authored
Dec 11, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add:bug修改
parent
ceb46584
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
7 deletions
+12
-7
card.vue
src/views/device/card.vue
+5
-1
fangke.vue
src/views/person/fangke.vue
+1
-0
yuangong.vue
src/views/person/yuangong.vue
+3
-3
baojing.vue
src/views/tongji/baojing.vue
+2
-2
renyuan.vue
src/views/tongji/renyuan.vue
+1
-1
No files found.
src/views/device/card.vue
View file @
bf07f95f
...
@@ -177,7 +177,11 @@ export default {
...
@@ -177,7 +177,11 @@ export default {
// 表单参数
// 表单参数
form
:
{},
form
:
{},
// 表单校验
// 表单校验
rules
:
{},
rules
:
{
cardId
:
[
{
required
:
true
,
message
:
"
请输入定位卡号
"
,
trigger
:
"
blur
"
},
],
},
};
};
},
},
created
()
{
created
()
{
...
...
src/views/person/fangke.vue
View file @
bf07f95f
...
@@ -121,6 +121,7 @@
...
@@ -121,6 +121,7 @@
>
历史轨迹
</el-button
>
历史轨迹
</el-button
>
>
<el-button
<el-button
v-if=
"scope.row.visitorStatus == 1"
size=
"small"
size=
"small"
type=
"primary"
type=
"primary"
icon=
"el-icon-edit"
icon=
"el-icon-edit"
...
...
src/views/person/yuangong.vue
View file @
bf07f95f
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
<el-table-column
label=
"姓名"
align=
"center"
prop=
"realName"
/>
<el-table-column
label=
"姓名"
align=
"center"
prop=
"realName"
/>
<el-table-column
label=
"性别"
align=
"center"
prop=
"sex"
/>
<el-table-column
label=
"性别"
align=
"center"
prop=
"sex"
/>
<el-table-column
label=
"联系方式"
align=
"center"
prop=
"phone"
/>
<el-table-column
label=
"联系方式"
align=
"center"
prop=
"phone"
/>
<el-table-column
label=
"身份证号"
align=
"center"
prop=
"id
Card
"
/>
<el-table-column
label=
"身份证号"
align=
"center"
prop=
"id
Number
"
/>
<el-table-column
label=
"所在部门"
align=
"center"
prop=
"deptName"
/>
<el-table-column
label=
"所在部门"
align=
"center"
prop=
"deptName"
/>
<el-table-column
label=
"岗位名称"
align=
"center"
prop=
"positionName"
/>
<el-table-column
label=
"岗位名称"
align=
"center"
prop=
"positionName"
/>
<el-table-column
label=
"定位卡号"
align=
"center"
prop=
"cardId"
/>
<el-table-column
label=
"定位卡号"
align=
"center"
prop=
"cardId"
/>
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
>
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<el-button
<el-button
type=
"
primary
"
type=
"
success
"
size=
"small"
size=
"small"
icon=
"el-icon-link"
icon=
"el-icon-link"
v-if=
"!scope.row.cardId"
v-if=
"!scope.row.cardId"
...
@@ -81,7 +81,7 @@
...
@@ -81,7 +81,7 @@
>
定位卡绑定
</el-button
>
定位卡绑定
</el-button
>
>
<el-button
<el-button
type=
"
primary
"
type=
"
warning
"
size=
"small"
size=
"small"
icon=
"el-icon-unlock"
icon=
"el-icon-unlock"
v-if=
"scope.row.cardId"
v-if=
"scope.row.cardId"
...
...
src/views/tongji/baojing.vue
View file @
bf07f95f
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
</div>
</div>
<div
<div
class=
"stat-value"
class=
"stat-value"
style=
"font-size: 18px; font-weight: 400; color: #
2196f3
"
style=
"font-size: 18px; font-weight: 400; color: #
ff0000
"
>
>
{{
sumObj
.
today_count
}}
次
{{
sumObj
.
today_count
}}
次
</div>
</div>
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
</div>
</div>
<div
<div
class=
"stat-value"
class=
"stat-value"
style=
"font-size: 18px; font-weight: 400; color: #
2196f3
"
style=
"font-size: 18px; font-weight: 400; color: #
ff0000
"
>
>
{{
sumObj
.
month_count
}}
次
{{
sumObj
.
month_count
}}
次
</div>
</div>
...
...
src/views/tongji/renyuan.vue
View file @
bf07f95f
...
@@ -168,7 +168,7 @@
...
@@ -168,7 +168,7 @@
<el-table-column
label=
"部门名称"
align=
"center"
prop=
"deptName"
/>
<el-table-column
label=
"部门名称"
align=
"center"
prop=
"deptName"
/>
<el-table-column
label=
"岗位名称"
align=
"center"
prop=
"positionName"
/>
<el-table-column
label=
"岗位名称"
align=
"center"
prop=
"positionName"
/>
<el-table-column
label=
"定位卡号"
align=
"center"
prop=
"cardId"
/>
<el-table-column
label=
"定位卡号"
align=
"center"
prop=
"cardId"
/>
<el-table-column
label=
"日期"
align=
"center"
prop=
"
cardId
"
/>
<el-table-column
label=
"日期"
align=
"center"
prop=
"
trackTime
"
/>
</el-table>
</el-table>
<pagination
<pagination
...
...
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