Skip to content

Commit 1a4e3a2

Browse files
committed
job
1 parent 57e2cba commit 1a4e3a2

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

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)