切换导航条
此项目
正在载入...
登录
雷海东
/
factory-web
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
差异文件
浏览文件
作者
张晓杰
2024-06-04 09:07:47 +0800
提交
3fe4292aa576d5ea85e7747be701ae71a1ba7ab5
2 个父辈
63d7793d
cda532b8
Merge branch 'dev' of
http://39.105.222.208:1024/leihd/factory-web
into dev
隐藏空白字符变更
内嵌
并排对比
正在显示
8 个修改的文件
包含
9 行增加
和
7 行删除
.env
public/index.html
src/components/layouts/TabLayout.vue
src/components/layouts/UserLayout.vue
src/components/page/GlobalFooter.vue
src/components/page/GlobalHeader.vue
src/components/tools/Logo.vue
src/views/payroll/modules/TblSalaryCalculationFormTime.vue
.env
查看文件 @
3fe4292
NODE_ENV=production
VUE_APP_PLATFORM_NAME=
仓库
管理系统
VUE_APP_PLATFORM_NAME=
企业资源
管理系统
# 开启单点登录
VUE_APP_SSO=false
# 开启微应用模式
...
...
public/index.html
查看文件 @
3fe4292
...
...
@@ -5,7 +5,7 @@
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1.0"
>
<title>
仓库
管理系统
</title>
<title>
企业资源
管理系统
</title>
<link
rel=
"icon"
href=
"<%= BASE_URL %>logo.png"
>
<script
src=
"<%= BASE_URL %>cdn/babel-polyfill/polyfill_7_2_5.js"
></script>
<style>
...
...
src/components/layouts/TabLayout.vue
查看文件 @
3fe4292
...
...
@@ -177,7 +177,7 @@
// update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题
changeTitle(title) {
let projectTitle = "
仓库
管理系统"
let projectTitle = "
企业资源
管理系统"
// 首页特殊处理
if (this.$route.path === indexKey) {
document.title = projectTitle
...
...
src/components/layouts/UserLayout.vue
查看文件 @
3fe4292
...
...
@@ -5,7 +5,7 @@
<div class="header">
<a href="/">
<!-- <img src="~@/assets/logo.svg" class="logo" alt="logo"> -->
<span class="title">
仓库
管理系统</span>
<span class="title">
企业资源
管理系统</span>
</a>
</div>
</div>
...
...
src/components/page/GlobalFooter.vue
查看文件 @
3fe4292
<template>
<div class="footer">
<div class="copyright">
<span>
仓库
管理系统</span>
<span>
企业资源
管理系统</span>
</div>
</div>
</template>
...
...
src/components/page/GlobalHeader.vue
查看文件 @
3fe4292
...
...
@@ -17,7 +17,7 @@
:type="collapsed ? 'menu-unfold' : 'menu-fold'"
@click="toggle"/>
<span v-if="device === 'desktop'">欢迎进入
仓库
管理系统</span>
<span v-if="device === 'desktop'">欢迎进入
企业资源
管理系统</span>
<span v-else>Jeecg-Boot</span>
<user-menu :theme="theme"/>
...
...
src/components/tools/Logo.vue
查看文件 @
3fe4292
...
...
@@ -21,7 +21,7 @@
props: {
title: {
type: String,
default: '
仓库
管理系统',
default: '
企业资源
管理系统',
required: false
},
showTitle: {
...
...
src/views/payroll/modules/TblSalaryCalculationFormTime.vue
查看文件 @
3fe4292
...
...
@@ -79,6 +79,8 @@ export default {
} else {
if (res.message === '操作失败,null') {
that.$message.warning('计算错误')
} else if (this.model.salaryMonth === '') {
that.$message.error('请选择计算月份')
} else {
that.$message.warning(res.message)
}
...
...
请
注册
或
登录
后发表评论