|
|
@ -282,6 +282,16 @@ |
|
|
|
<el-switch v-model="formData.configuration.emailNotification" /> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<!-- 邮箱地址 --> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="邮箱地址" |
|
|
|
prop="configuration.emailAddress" |
|
|
|
:rules="[ |
|
|
|
{ required: true, message: '请输入邮箱地址', trigger: 'change' }, |
|
|
|
]"> |
|
|
|
<el-input v-model="formData.configuration.emailAddress" /> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
</el-form> |
|
|
@ -341,7 +351,8 @@ const formData = ref({ |
|
|
|
// 自动补料 |
|
|
|
autoFeed: false, |
|
|
|
// 邮件提醒 |
|
|
|
emailNotification: true |
|
|
|
emailNotification: true, |
|
|
|
emailAddress:'' |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
@ -606,7 +617,8 @@ const resetForm = () => { |
|
|
|
// 自动补料 |
|
|
|
autoFeed: false, |
|
|
|
// 邮件提醒 |
|
|
|
emailNotification: true |
|
|
|
emailNotification: true, |
|
|
|
emailAddress:'' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|