Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
video-monitoring
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
video-monitoring
Commits
2bbad0a6
Commit
2bbad0a6
authored
Jul 30, 2024
by
拾柒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
将若依修改成悦优享视频监控管理系统
parent
5a1b6f34
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
11 deletions
+13
-11
.env.development
.env.development
+2
-2
.env.staging
.env.staging
+2
-2
package.json
package.json
+2
-2
index.html
public/index.html
+2
-1
Logo.vue
src/layout/components/Sidebar/Logo.vue
+1
-1
index.js
src/router/index.js
+1
-1
register.vue
src/views/register.vue
+1
-1
index.vue
src/views/video/index.vue
+2
-1
No files found.
.env.development
View file @
2bbad0a6
# 页面标题
# 页面标题
VUE_APP_TITLE =
若依
管理系统
VUE_APP_TITLE =
悦优享视频监控
管理系统
# 开发环境配置
# 开发环境配置
ENV = 'development'
ENV = 'development'
#
若依
管理系统/开发环境
#
悦优享视频监控
管理系统/开发环境
VUE_APP_BASE_API = '/dev-api'
VUE_APP_BASE_API = '/dev-api'
# 路由懒加载
# 路由懒加载
...
...
.env.staging
View file @
2bbad0a6
# 页面标题
# 页面标题
VUE_APP_TITLE =
若依
管理系统
VUE_APP_TITLE =
悦优享视频监控
管理系统
NODE_ENV = production
NODE_ENV = production
# 测试环境配置
# 测试环境配置
ENV = 'staging'
ENV = 'staging'
#
若依
管理系统/测试环境
#
悦优享视频监控
管理系统/测试环境
VUE_APP_BASE_API = '/stage-api'
VUE_APP_BASE_API = '/stage-api'
package.json
View file @
2bbad0a6
{
{
"name"
:
"ruoyi"
,
"name"
:
"ruoyi"
,
"version"
:
"3.8.8"
,
"version"
:
"3.8.8"
,
"description"
:
"
若依
管理系统"
,
"description"
:
"
悦优享视频监控
管理系统"
,
"author"
:
"
若依
"
,
"author"
:
"
悦优享
"
,
"license"
:
"
MIT
"
,
"license"
:
"
MIT
"
,
"scripts"
:
{
"scripts"
:
{
"dev"
:
"vue-cli-service serve"
,
"dev"
:
"vue-cli-service serve"
,
...
...
public/index.html
View file @
2bbad0a6
...
@@ -6,7 +6,8 @@
...
@@ -6,7 +6,8 @@
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"renderer"
content=
"webkit"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
>
<link
rel=
"icon"
href=
"<%= BASE_URL %>favicon.ico"
>
<link
rel=
"icon"
href=
"<%= BASE_URL %>favicon.ico"
>
<title><
%=
webpackConfig
.
name
%
></title>
<title>
悦优享视频监控管理系统
</title>
<!-- <title><%= webpackConfig.name %></title>-->
<!-- 在index.html或相应的HTML文件中引入JS文件 -->
<!-- 在index.html或相应的HTML文件中引入JS文件 -->
<script
src=
"/js/jsencrypt.min.js"
></script>
<script
src=
"/js/jsencrypt.min.js"
></script>
<script
src=
"/js/web-control_1.2.5.min.js"
></script>
<script
src=
"/js/web-control_1.2.5.min.js"
></script>
...
...
src/layout/components/Sidebar/Logo.vue
View file @
2bbad0a6
...
@@ -35,7 +35,7 @@ export default {
...
@@ -35,7 +35,7 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
title
:
process
.
env
.
VUE_APP_TITLE
,
title
:
'悦优享视频监控管理系统'
,
logo
:
logoImg
logo
:
logoImg
}
}
}
}
...
...
src/router/index.js
View file @
2bbad0a6
...
@@ -140,7 +140,7 @@ export const constantRoutes = [
...
@@ -140,7 +140,7 @@ export const constantRoutes = [
path
:
'employee'
,
path
:
'employee'
,
component
:
()
=>
import
(
'@/views/employee/index'
),
component
:
()
=>
import
(
'@/views/employee/index'
),
name
:
'employee'
,
name
:
'employee'
,
meta
:
{
title
:
'
历史记录
'
,
icon
:
'user'
}
meta
:
{
title
:
'
员工信息
'
,
icon
:
'user'
}
}
}
]
]
}
}
...
...
src/views/register.vue
View file @
2bbad0a6
<
template
>
<
template
>
<div
class=
"register"
>
<div
class=
"register"
>
<el-form
ref=
"registerForm"
:model=
"registerForm"
:rules=
"registerRules"
class=
"register-form"
>
<el-form
ref=
"registerForm"
:model=
"registerForm"
:rules=
"registerRules"
class=
"register-form"
>
<h3
class=
"title"
>
若依后台
管理系统
</h3>
<h3
class=
"title"
>
悦优享视频监控
管理系统
</h3>
<el-form-item
prop=
"username"
>
<el-form-item
prop=
"username"
>
<el-input
v-model=
"registerForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"账号"
>
<el-input
v-model=
"registerForm.username"
type=
"text"
auto-complete=
"off"
placeholder=
"账号"
>
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
<svg-icon
slot=
"prefix"
icon-class=
"user"
class=
"el-input__icon input-icon"
/>
...
...
src/views/video/index.vue
View file @
2bbad0a6
...
@@ -209,8 +209,9 @@ export default {
...
@@ -209,8 +209,9 @@ export default {
<
style
scoped
>
<
style
scoped
>
.video-watch
{
.video-watch
{
margin-top
:
20px
;
margin-top
:
20px
;
margin-bottom
:
20px
;
min-height
:
calc
(
80vh
-
84px
);
min-height
:
calc
(
80vh
-
84px
);
width
:
9
0
%
;
width
:
9
5
%
;
}
}
.video-now
{
.video-now
{
...
...
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