|
|
@ -118,6 +118,7 @@ export default { |
|
|
|
}); |
|
|
|
} |
|
|
|
this.ruleForm = res.data; |
|
|
|
this.ruleForm.files = res.data.files || []; |
|
|
|
this.ruleForm.type = res.data.type.toString(); |
|
|
|
if (res.data.cycleType) { |
|
|
|
this.ruleForm.cycleType = res.data.cycleType.toString(); |
|
|
@ -402,7 +403,10 @@ export default { |
|
|
|
>删除</el-button |
|
|
|
> |
|
|
|
</el-popconfirm> |
|
|
|
<el-button @click="routeSetting(scope.row)" type="text" size="small" |
|
|
|
<el-button |
|
|
|
@click="routeSetting(scope.row)" |
|
|
|
type="text" |
|
|
|
size="small" |
|
|
|
v-hasPermi="['df:run:checking:plan:config']" |
|
|
|
>路线设置</el-button |
|
|
|
> |
|
|
@ -499,7 +503,12 @@ export default { |
|
|
|
> |
|
|
|
</el-switch> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item v-if="ruleForm.isReminder == true" label-width="120px" label="提醒时间" prop="reminderTime"> |
|
|
|
<el-form-item |
|
|
|
v-if="ruleForm.isReminder == true" |
|
|
|
label-width="120px" |
|
|
|
label="提醒时间" |
|
|
|
prop="reminderTime" |
|
|
|
> |
|
|
|
<el-radio-group |
|
|
|
v-if="ruleForm.cycleType == 1 && ruleForm.type == 0" |
|
|
|
v-model="ruleForm.otherConfig.week" |
|
|
|