mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-04 02:13:42 +08:00
【v3.0.1】1、【新增】tomcat访问日志accessslog 最大保存天数;2、【新增】获取登录结果信息接口返回 Token;3、【新增】员工列表、表单 新增超级管理员标识;4、【优化】移除dev环境swagger用户名和密码;5、【优化】成功返回消息内容改为"操作成功";6、【优化】代码下载zip文件名改为 下划线,eg:t_apply_code.zip;7、【优化】Service代码生成自动Import;8、【优化】AdminInterpter 拦截器中对超级管理员放行;9、【优化】优化重复提交RepeatSubmitAspect;10、【优化】修改其他bug
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
NODE_ENV=production
|
||||
VITE_APP_TITLE='SmartH5 预发布环境(Pre)'
|
||||
VITE_APP_API_URL='https://preview.smartadmin.vip/smart-admin-api'
|
||||
VITE_APP_API_URL='https://app.smartadmin.vip/smart-app-api'
|
||||
22463
smart-app/package-lock.json
generated
22463
smart-app/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -15,4 +15,8 @@
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/uni_modules/uni-scss/index.scss';
|
||||
/* 设置基准字体大小为16px */
|
||||
body {
|
||||
font-size: 16px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -74,6 +74,9 @@
|
||||
:deep(.uni-card__header) {
|
||||
border: none;
|
||||
}
|
||||
:deep(.uni-card .uni-card__header .uni-card__header-content .uni-card__header-content-title) {
|
||||
font-size: 32rpx;
|
||||
}
|
||||
:deep(.uni-list-item__container) {
|
||||
padding: 16rpx 20rpx;
|
||||
}
|
||||
@@ -81,10 +84,13 @@
|
||||
background: linear-gradient(180deg, #e8f4ff, #f8fcff);
|
||||
}
|
||||
:deep(.uni-card__header-extra) {
|
||||
font-size: 24rpx;
|
||||
font-size: 30rpx;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
color: #1a9aff;
|
||||
}
|
||||
:deep(.uni-list-item__content-title) {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -93,10 +93,15 @@
|
||||
overflow: hidden;
|
||||
box-shadow: 0 3px 4px 0 rgba(24, 144, 255, 0.06);
|
||||
padding: 0 10rpx;
|
||||
|
||||
:deep(.uni-list-item__content-title) {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
:deep(.uni-list-item__extra-text) {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.icon {
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
width: 56rpx;
|
||||
height: 56rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,23 +54,23 @@
|
||||
border-radius: 6px;
|
||||
box-shadow: 0px 3px 4px 0px rgba(24, 144, 255, 0.06);
|
||||
backdrop-filter: blur(5.98px);
|
||||
padding: 20px 15px;
|
||||
padding: 40rpx 30rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
.user-icon {
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 29px;
|
||||
border-radius: 60rpx;
|
||||
background-color: white;
|
||||
.user-image {
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
border-radius: 27px;
|
||||
width: 108rpx;
|
||||
height: 108rpx;
|
||||
border-radius: 54rpx;
|
||||
}
|
||||
}
|
||||
.user-info {
|
||||
@@ -78,30 +78,30 @@
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
flex-shrink: 0;
|
||||
margin: 5px auto 0 12px;
|
||||
margin: 10rpx auto 0 24rpx;
|
||||
align-self: flex-start;
|
||||
.user-name {
|
||||
height: 25px;
|
||||
font-size: 18px;
|
||||
height: 50rpx;
|
||||
font-size: 40rpx;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: #323333;
|
||||
}
|
||||
.user-phone {
|
||||
margin-top: 4px;
|
||||
height: 20px;
|
||||
font-size: 14px;
|
||||
margin-top: 8rpx;
|
||||
height: 40rpx;
|
||||
font-size: 30rpx;
|
||||
font-weight: 400;
|
||||
text-align: left;
|
||||
color: #777777;
|
||||
line-height: 20px;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
}
|
||||
.vip-flag {
|
||||
align-self: flex-start;
|
||||
width: 83px;
|
||||
height: 29px;
|
||||
margin: 3px 0 0 auto;
|
||||
width: 170rpx;
|
||||
height: 60rpx;
|
||||
margin: 6rpx 0 0 auto;
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
@@ -63,23 +63,21 @@
|
||||
<style scoped lang="scss">
|
||||
.user-info-box {
|
||||
z-index: 10;
|
||||
padding: 32px 12px 15px;
|
||||
padding: 60rpx 24rpx 30rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
.user-icon {
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 29px;
|
||||
border-radius: 60rpx;
|
||||
background-color: white;
|
||||
.user-image {
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
border-radius: 27px;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
border-radius: 54rpx;
|
||||
}
|
||||
}
|
||||
.user-info {
|
||||
@@ -87,23 +85,23 @@
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
flex-shrink: 0;
|
||||
margin: 5px auto 0 12px;
|
||||
margin: 10rpx auto 0 24rpx;
|
||||
align-self: flex-start;
|
||||
.user-name {
|
||||
height: 25px;
|
||||
font-size: 18px;
|
||||
height: 50rpx;
|
||||
font-size: 40rpx;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: #323333;
|
||||
}
|
||||
.user-phone {
|
||||
margin-top: 4px;
|
||||
height: 20px;
|
||||
font-size: 14px;
|
||||
margin-top: 8rpx;
|
||||
height: 40rpx;
|
||||
font-size: 30rpx;
|
||||
font-weight: 400;
|
||||
text-align: left;
|
||||
color: #777777;
|
||||
line-height: 20px;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -163,8 +161,8 @@
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 14px;
|
||||
margin-top: 5px;
|
||||
font-size: 30rpx;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.grid-item-box {
|
||||
flex: 1;
|
||||
@@ -172,6 +170,6 @@
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 15px 0;
|
||||
padding: 30rpx 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -112,8 +112,6 @@ $collapse-bg-color: #F3F6FB; // 折叠面板二级背景颜色
|
||||
// 颜色 ------------------- end -------------
|
||||
|
||||
|
||||
|
||||
|
||||
// 样式 ------------------- begin -------------
|
||||
// 这里导出的样式在APP端无效,APP端不要再引用了
|
||||
:export {
|
||||
|
||||
Reference in New Issue
Block a user