
18 changed files with 109 additions and 1222 deletions
File diff suppressed because it is too large
@ -0,0 +1,48 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<!-- 标题按钮部分开始 --> |
||||
|
<div class="tab-header webtop"> |
||||
|
<!-- 标题 --> |
||||
|
<div>环境监控-视频中心</div> |
||||
|
<!-- start 添加修改按钮 --> |
||||
|
<div /> |
||||
|
<!-- end 添加修改按钮 --> |
||||
|
<!-- end 详情按钮 --> |
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: 'MonitorVideos', |
||||
|
data() { |
||||
|
return { |
||||
|
submitdisabled: false, |
||||
|
viewTitle: '视频中心', |
||||
|
tableKey: 0, |
||||
|
index: 0, |
||||
|
totalQuantity: '', // 合计数量 |
||||
|
amountInTotal: '', // 合计金额 |
||||
|
formobj: {}, |
||||
|
rules: {} |
||||
|
} |
||||
|
}, |
||||
|
created() {}, |
||||
|
methods: { |
||||
|
handleReturn() { |
||||
|
this.formobj = {} |
||||
|
this.$refs['form_obj'].resetFields() |
||||
|
this.$emit('doback') |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
.title { |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: space-between; |
||||
|
align-items: center; |
||||
|
} |
||||
|
</style> |
@ -1,19 +1,19 @@ |
|||||
spring: |
spring: |
||||
resources: |
resources: |
||||
static-locations: file:/home/lzh/docker_data/nginx/html/supervise-system-ui |
static-locations: file:D://supervise |
||||
cloud: |
cloud: |
||||
nacos: |
nacos: |
||||
discovery: |
discovery: |
||||
server-addr: 172.18.0.5:8848 |
server-addr: 127.0.0.1:8848 |
||||
redis: |
redis: |
||||
database: 3 # Redis数据库索引(默认为0) |
database: 3 # Redis数据库索引(默认为0) |
||||
host: 172.18.0.7 |
host: 127.0.0.1 |
||||
jedis: |
jedis: |
||||
pool: |
pool: |
||||
max-active: -1 #连接池最大连接数(使用负值表示没有限制) |
max-active: -1 #连接池最大连接数(使用负值表示没有限制) |
||||
max-idle: 8 #连接池中的最大空闲连接 |
max-idle: 8 #连接池中的最大空闲连接 |
||||
max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制) |
max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制) |
||||
min-idle: 0 # 连接池中的最小空闲连接 |
min-idle: 0 # 连接池中的最小空闲连接 |
||||
password: |
password: 123456 |
||||
port: 6379 |
port: 6379 |
||||
timeout: 0 # 连接超时时间(毫秒) |
timeout: 0 # 连接超时时间(毫秒) |
Loading…
Reference in new issue