no message

This commit is contained in:
kuaifan 2022-07-16 21:53:53 +08:00
parent d565501e04
commit cfd3996af1
9 changed files with 11 additions and 16 deletions

1
electron/build.js vendored
View File

@ -102,6 +102,7 @@ function genericPublish({url, version, output}) {
function startBuild(data, publish, release) {
const systemInfo = {
title: data.name,
debug: "no",
version: config.version,
origin: "./",
homeUrl: utils.formatUrl(data.url),

View File

@ -89,7 +89,7 @@
:item-class-add="itemClassAdd"
:extra-props="{dialogData, operateVisible, operateItem, isMyDialog, msgId}"
:estimate-size="78"
:estimate-size="dialogData.type=='group' ? 105 : 77"
:keeps="50"
:disabled="scrollDisabled"
@scroll="onScroll"

View File

@ -850,7 +850,7 @@ export default {
render: (h, {row}) => {
let type = this.types.find(({value, name}) => value == row.type && name);
if (type) {
return h('AutoTip', type.name);
return h('AutoTip', this.$L(type.name));
} else {
return h('div', (row.ext || row.type).toUpperCase())
}

View File

@ -31,8 +31,8 @@
</RadioGroup>
<div v-if="formData.reg_verify == 'open'" class="form-tip">
{{$L('开启后:')}}<br/>
{{$L('帐号需验证通过才可登录')}}<br/>
{{$L('修改邮箱和删除帐号需要邮箱验证码')}}
{{$L('帐号需验证通过才可登录')}}<br/>
{{$L('修改邮箱和删除帐号需要邮箱验证码')}}
</div>
</FormItem>
<FormItem :label="$L('任务提醒')" prop="notice">

View File

@ -199,6 +199,7 @@ export default {
content += `<br/>${this.$L('服务器版本')}: v${data.version}`
content += `<br/>${this.$L('客户端版本')}: v${this.version}`
$A.modalInfo({
language: false,
title: '版本信息',
content
})

View File

@ -479,7 +479,7 @@
display: block;
margin: 0;
padding: 0;
line-height: 1.5;
line-height: 20px;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-word;
@ -1566,8 +1566,7 @@
}
.content-text {
> pre {
line-height: 1.4;
font-size: 16px;
font-size: 15px;
}
}
}

View File

@ -7,10 +7,10 @@
position: relative;
.dialog-user {
margin-top: 26px;
padding: 0 22px;
.member-head {
display: flex;
align-items: center;
padding: 0 22px;
.member-title {
flex: 1;
font-size: 18px;
@ -42,6 +42,7 @@
display: flex;
align-items: center;
margin-top: 12px;
padding: 0 22px;
overflow: auto;
&::-webkit-scrollbar {

View File

@ -57,13 +57,6 @@
background-color: #F4F5F7;
}
&.version {
cursor: default;
&:hover {
background-color: transparent;
}
}
&.divided {
position: relative;
margin-top: 10px;

View File

@ -19,7 +19,7 @@
<script src="{{ asset_main('js/scroll-into-view.min.js') }}"></script>
<script>
window.csrfToken = { csrfToken : "{{ csrf_token() }}" };
window.systemInfo = { title: "{{config('app.name', 'WebPage')}}", version : "{{ $version }}", origin: window.location.origin + "/", homeUrl: null, apiUrl: null };
window.systemInfo = { title: "{{config('app.name', 'WebPage')}}", debug: "{{config('app.debug') ? 'yes' : 'no'}}", version : "{{ $version }}", origin: window.location.origin + "/", homeUrl: null, apiUrl: null };
</script>
</head>
<body>