Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
property-management
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
property-management
Commits
e22a8a60
Commit
e22a8a60
authored
Jun 10, 2022
by
416409548@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug优化
parent
e5799bfa
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
46 additions
and
9 deletions
+46
-9
ant-design-vue-jeecg/src/components/tools/UserMenu.vue
+5
-5
ant-design-vue-jeecg/src/views/pm/access-control-device/modules/PmAccessControlDeviceForm.vue
+2
-1
ant-design-vue-jeecg/src/views/pm/advertising_screen_setting/modules/AdvertisingScreenSettingForm.vue
+34
-0
jeecg-boot-parent/jeecg-boot-module-hikvision/src/main/java/org/jeecg/pm/hikvision/sdk/client/HikvisionBaseClient.java
+2
-2
jeecg-boot-parent/jeecg-boot-module-property/src/main/java/org/jeecg/pm/entity/PmAccessControlDevice.java
+2
-1
jeecg-boot-parent/jeecg-boot-module-property/src/main/java/org/jeecg/pm/entity/PmMonitoringDevice.java
+1
-0
No files found.
ant-design-vue-jeecg/src/components/tools/UserMenu.vue
View file @
e22a8a60
...
...
@@ -38,7 +38,7 @@
<span
v-if=
"isDesktop()"
>
欢迎您,
{{
nickname
()
}}
</span>
</span>
<a-menu
slot=
"overlay"
class=
"user-dropdown-menu-wrapper"
>
<a-menu-item
key=
"0"
>
<
!--
<
a-menu-item
key=
"0"
>
<router-link
:to=
"
{ name: 'account-center' }">
<a-icon
type=
"user"
/>
<span>
个人中心
</span>
...
...
@@ -52,16 +52,16 @@
</a-menu-item>
<a-menu-item
key=
"3"
@
click=
"systemSetting"
>
<a-icon
type=
"tool"
/>
<span>
系统设置
</span>
<
/a-menu-item
>
<span>
系统设置
</span>
-->
<
!--
</a-menu-item>
--
>
<a-menu-item
key=
"4"
@
click=
"updatePassword"
>
<a-icon
type=
"setting"
/>
<span>
密码修改
</span>
</a-menu-item>
<a-menu-item
key=
"5"
@
click=
"updateCurrentDepart"
>
<
!--
<
a-menu-item
key=
"5"
@
click=
"updateCurrentDepart"
>
<a-icon
type=
"cluster"
/>
<span>
切换部门
</span>
</a-menu-item>
</a-menu-item>
-->
<a-menu-item
key=
"6"
@
click=
"clearCache"
>
<a-icon
type=
"sync"
/>
<span>
清理缓存
</span>
...
...
ant-design-vue-jeecg/src/views/pm/access-control-device/modules/PmAccessControlDeviceForm.vue
View file @
e22a8a60
...
...
@@ -196,7 +196,8 @@ export default {
required
:
true
,
message
:
'请输入设备位置'
,
trigger
:
'blur'
}
},
{
min
:
0
,
max
:
50
,
message
:
'长度不超过50个字符'
,
trigger
:
'blur'
}
],
dateOfProduction
:
[
{
...
...
ant-design-vue-jeecg/src/views/pm/advertising_screen_setting/modules/AdvertisingScreenSettingForm.vue
View file @
e22a8a60
...
...
@@ -37,6 +37,7 @@
export
default
{
name
:
'AdvertisingScreenSettingForm'
,
components
:
{
},
props
:
{
//表单禁用
...
...
@@ -60,6 +61,39 @@
},
confirmLoading
:
false
,
validatorRules
:
{
code
:
[
{
required
:
true
,
message
:
'请输入设备编码'
,
trigger
:
'blur'
},
{
min
:
0
,
max
:
50
,
message
:
'长度不超过50个字符'
,
trigger
:
'blur'
}
],
name
:
[
{
required
:
true
,
message
:
'请输入设备名称'
,
trigger
:
'blur'
},
{
min
:
0
,
max
:
50
,
message
:
'长度不超过50个字符'
,
trigger
:
'blur'
}
],
ip
:
[
{
required
:
true
,
message
:
'请输入设备ip'
,
trigger
:
'blur'
},
{
min
:
0
,
max
:
50
,
message
:
'长度不超过50个字符'
,
trigger
:
'blur'
}
],
districtName
:
[
{
required
:
true
,
message
:
'请输入区域名称'
,
trigger
:
'blur'
},
{
min
:
0
,
max
:
50
,
message
:
'长度不超过50个字符'
,
trigger
:
'blur'
}
],
},
url
:
{
add
:
"/pm/advertisingScreenSetting/add"
,
...
...
jeecg-boot-parent/jeecg-boot-module-hikvision/src/main/java/org/jeecg/pm/hikvision/sdk/client/HikvisionBaseClient.java
View file @
e22a8a60
...
...
@@ -52,8 +52,8 @@ public class HikvisionBaseClient extends HikvisionAbstractClient {
if
(
response
.
isSuccess
)
{
opUserUuid
=
response
.
getResult
().
getData
();
}
else
{
//
opUserUuid = "5b2eb534696b11e89c2e438f92627767";
throw
new
JeecgBootException
(
"初始化海康威视SDK异常:无法获取opUserUuid"
);
opUserUuid
=
"5b2eb534696b11e89c2e438f92627767"
;
//
throw new JeecgBootException("初始化海康威视SDK异常:无法获取opUserUuid");
}
}
...
...
jeecg-boot-parent/jeecg-boot-module-property/src/main/java/org/jeecg/pm/entity/PmAccessControlDevice.java
View file @
e22a8a60
...
...
@@ -79,6 +79,7 @@ public class PmAccessControlDevice implements Serializable {
* xy值
*/
@ApiModelProperty
(
value
=
"xy值"
)
@Excel
(
name
=
"xy值"
,
width
=
15
)
@TableField
(
typeHandler
=
Coordinate
.
TypeHandler
.
class
)
private
Coordinate
coordinate
;
/**
...
...
@@ -135,7 +136,7 @@ public class PmAccessControlDevice implements Serializable {
/**
* 创建时间
*/
@Excel
(
name
=
"
修改
时间"
,
width
=
15
,
format
=
"yyyy-MM-dd hh:mm:ss"
)
@Excel
(
name
=
"
创建
时间"
,
width
=
15
,
format
=
"yyyy-MM-dd hh:mm:ss"
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd hh:mm:ss"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@ApiModelProperty
(
value
=
"创建时间"
)
...
...
jeecg-boot-parent/jeecg-boot-module-property/src/main/java/org/jeecg/pm/entity/PmMonitoringDevice.java
View file @
e22a8a60
...
...
@@ -65,6 +65,7 @@ public class PmMonitoringDevice implements Serializable {
* xy值
*/
@ApiModelProperty
(
value
=
"xy值"
)
@Excel
(
name
=
"xy值"
,
width
=
15
)
@TableField
(
typeHandler
=
Coordinate
.
TypeHandler
.
class
)
private
Coordinate
coordinate
;
...
...
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