mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-04 16:37:06 +00:00
no message
This commit is contained in:
parent
d565501e04
commit
cfd3996af1
1
electron/build.js
vendored
1
electron/build.js
vendored
@ -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),
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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())
|
||||
}
|
||||
|
||||
@ -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">
|
||||
|
||||
@ -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
|
||||
})
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -57,13 +57,6 @@
|
||||
background-color: #F4F5F7;
|
||||
}
|
||||
|
||||
&.version {
|
||||
cursor: default;
|
||||
&:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
&.divided {
|
||||
position: relative;
|
||||
margin-top: 10px;
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user