Skip to content

Commit 4a453fc

Browse files
committed
fix(view): 自动删除调整为 2 天
1 parent dd3f7e7 commit 4a453fc

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

admin/src/views/api_excel/add.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<el-input v-model="form.auto_delete"/>
5151
</el-col>
5252
<el-col :span="22">
53-
&nbsp;&nbsp; 任务执行完成后自动删除的时间(单位:天),默认: 5
53+
&nbsp;&nbsp; 任务执行完成后自动删除的时间(单位:天),默认: 2
5454
</el-col>
5555
<el-col :span="13"/>
5656
</el-form-item>
@@ -88,7 +88,7 @@ export default {
8888
concurrent: 5,
8989
uid: '',
9090
description: '',
91-
auto_delete: 5,
91+
auto_delete: 2,
9292
sort: '',
9393
loading: false
9494
},

admin/src/views/api_excel/edit.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@
3737
</el-col>
3838
<el-col :span="13"/>
3939
</el-form-item>
40+
<el-form-item label="自动删除时间" prop="auto_delete">
41+
<el-col :span="2">
42+
<el-input v-model="form.auto_delete"/>
43+
</el-col>
44+
<el-col :span="22">
45+
&nbsp;&nbsp; 任务执行完成后自动删除的时间(单位:天),默认: 2 天
46+
</el-col>
47+
<el-col :span="13"/>
48+
</el-form-item>
4049
<el-form-item label="用户ID(可选)" prop="uid">
4150
<el-col :span="11">
4251
<el-input v-model="form.uid" size="medium" placeholder="请输入内容"/>
@@ -70,6 +79,7 @@ export default {
7079
appkey: '',
7180
uid: '',
7281
description: '',
82+
auto_delete: 2,
7383
sort: '',
7484
loading: false
7585
},

0 commit comments

Comments
 (0)