Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
school-paper-admin-front
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
1
Merge Requests
1
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
school-paper
school-paper-admin-front
Commits
24ab46bd
Commit
24ab46bd
authored
Jul 28, 2023
by
H.wb.wang.peixun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
图标修改
parent
7eb58bd8
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
.env.development
+1
-1
src/assets/logo/1.png
+0
-0
src/assets/logo/logo.jpg
+0
-0
src/layout/components/Sidebar/Logo.vue
+2
-2
src/views/index.vue
+1
-1
src/views/login.vue
+2
-2
src/views/register.vue
+2
-2
src/views/tool/build/index.vue
+1
-1
vue.config.js
+1
-1
No files found.
.env.development
View file @
24ab46bd
# 页面标题
VUE_APP_TITLE =
RuoYi-Vue-Plus后台管理系统
VUE_APP_TITLE =
封中数学
# 开发环境配置
ENV = 'development'
...
...
src/assets/logo/
logo
.png
→
src/assets/logo/
1
.png
View file @
24ab46bd
File moved
src/assets/logo/logo.jpg
0 → 100644
View file @
24ab46bd
5.71 KB
src/layout/components/Sidebar/Logo.vue
View file @
24ab46bd
...
...
@@ -14,7 +14,7 @@
</
template
>
<
script
>
import
logoImg
from
'@/assets/logo/logo.
pn
g'
import
logoImg
from
'@/assets/logo/logo.
jp
g'
import
variables
from
'@/assets/styles/variables.scss'
export
default
{
...
...
@@ -35,7 +35,7 @@ export default {
},
data
()
{
return
{
title
:
'
RuoYi-Vue-Plus
'
,
title
:
'
封中数学
'
,
logo
:
logoImg
}
}
...
...
src/views/index.vue
View file @
24ab46bd
...
...
@@ -2,7 +2,7 @@
<div
class=
"app-container home"
>
<el-row
:gutter=
"20"
>
<el-col
:sm=
"24"
:lg=
"12"
style=
"padding-left: 20px"
>
<h2>
RuoYi-Vue-Plus后台管理框架
</h2>
<h2>
封中数学
</h2>
<p>
RuoYi-Vue-Plus 是基于 RuoYi-Vue 针对 分布式集群 场景升级(不兼容原框架)
<br/>
...
...
src/views/login.vue
View file @
24ab46bd
<
template
>
<div
class=
"login"
>
<el-form
ref=
"loginForm"
:model=
"loginForm"
:rules=
"loginRules"
class=
"login-form"
>
<h3
class=
"title"
>
RuoYi-Vue-Plus后台管理系统
</h3>
<h3
class=
"title"
>
封中数学
</h3>
<el-form-item
prop=
"username"
>
<el-input
v-model=
"loginForm.username"
...
...
@@ -56,7 +56,7 @@
</el-form>
<!-- 底部 -->
<div
class=
"el-login-footer"
>
<
span>
Copyright © 2018-2022 ruoyi.vip All Rights Reserved.
</span
>
<
!--
<span>
Copyright © 2018-2022 ruoyi.vip All Rights Reserved.
</span>
--
>
</div>
</div>
</
template
>
...
...
src/views/register.vue
View file @
24ab46bd
<
template
>
<div
class=
"register"
>
<el-form
ref=
"registerForm"
:model=
"registerForm"
:rules=
"registerRules"
class=
"register-form"
>
<h3
class=
"title"
>
RuoYi-Vue-Plus后台管理系统
</h3>
<h3
class=
"title"
>
封中数学
</h3>
<el-form-item
prop=
"username"
>
<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"
/>
...
...
@@ -61,7 +61,7 @@
</el-form>
<!-- 底部 -->
<div
class=
"el-register-footer"
>
<
span>
Copyright © 2018-2022 ruoyi.vip All Rights Reserved.
</span
>
<
!--
<span>
Copyright © 2018-2022 ruoyi.vip All Rights Reserved.
</span>
--
>
</div>
</div>
</
template
>
...
...
src/views/tool/build/index.vue
View file @
24ab46bd
...
...
@@ -147,7 +147,7 @@ import { makeUpHtml, vueTemplate, vueScript, cssStyle } from '@/utils/generator/
import
{
makeUpJs
}
from
'@/utils/generator/js'
import
{
makeUpCss
}
from
'@/utils/generator/css'
import
drawingDefault
from
'@/utils/generator/drawingDefault'
import
logo
from
'@/assets/logo/logo.
pn
g'
import
logo
from
'@/assets/logo/logo.
jp
g'
import
CodeTypeDialog
from
'./CodeTypeDialog'
import
DraggableItem
from
'./DraggableItem'
...
...
vue.config.js
View file @
24ab46bd
...
...
@@ -7,7 +7,7 @@ function resolve(dir) {
const
CompressionPlugin
=
require
(
'compression-webpack-plugin'
)
const
name
=
process
.
env
.
VUE_APP_TITLE
||
'
RuoYi-Vue-Plus后台管理系统
'
// 网页标题
const
name
=
process
.
env
.
VUE_APP_TITLE
||
'
封中数学
'
// 网页标题
const
port
=
process
.
env
.
port
||
process
.
env
.
npm_config_port
||
80
// 端口
...
...
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