Skip to content

Commit f5d69cf

Browse files
committed
Merge branch 'dev' of https://github.com/wenjianzhang/go-admin-ui into dev
2 parents dc25121 + 73ba66f commit f5d69cf

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

src/components/Screenfull/index.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ export default {
2222
},
2323
methods: {
2424
click() {
25-
if (!screenfull.enabled) {
26-
this.$message({
27-
message: 'you browser can not work',
28-
type: 'warning'
29-
})
30-
return false
31-
}
25+
// if (!screenfull.enabled) {
26+
// this.$message({
27+
// message: 'you browser can not work',
28+
// type: 'warning'
29+
// })
30+
// return false
31+
// }
3232
screenfull.toggle()
3333
},
3434
change() {

src/views/sysjob/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<BasicLayout>
55
<template #wrapper>
66
<el-card class="box-card">
7-
<el-form ref="queryForm" :model="queryParams" :inline="true" label-width="68px">
7+
<el-form ref="queryForm" :model="queryParams" :inline="true" label-position="left" label-width="68px">
88
<el-form-item label="名称" prop="jobName">
99
<el-input
1010
v-model="queryParams.jobName"
@@ -188,7 +188,7 @@
188188
/>
189189

190190
<!-- 添加或修改对话框 -->
191-
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
191+
<el-dialog v-dialogDrag :title="title" :visible.sync="open" width="700px" append-to-body>
192192
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
193193
<el-row>
194194
<el-col :span="12">

src/views/sysjob/log.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
</el-form-item>
99
</el-form>
1010
<el-row ref="log" :gutter="10" class="mb8">
11-
<ul
12-
style="
11+
<el-scrollbar style="height:500px">
12+
<ul
13+
style="
1314
background-color: black;
1415
color: cornflowerblue;
1516
line-height: 25px;
1617
padding-top: 15px;
17-
margin: 0;
18-
min-height: 500px;
19-
"
20-
>
21-
<li v-for="arr in arrs">
18+
margin: 0;"
19+
>
20+
<li v-for="(item,index) in arrs" :key="index">
2221

23-
{{ arr }}
24-
</li>
25-
</ul>
22+
{{ item }}
23+
</li>
24+
</ul>
25+
</el-scrollbar>
2626
</el-row>
2727
</div>
2828

0 commit comments

Comments
 (0)