Browse Source

YT-743STRATEGY04.补料策略

intex_online20241228
zhaoyiran 3 months ago
parent
commit
84c5e1e5c4
  1. 16
      src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue

16
src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue

@ -282,6 +282,16 @@
<el-switch v-model="formData.configuration.emailNotification" /> <el-switch v-model="formData.configuration.emailNotification" />
</el-form-item> </el-form-item>
</el-col> </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> </el-row>
</div> </div>
</el-form> </el-form>
@ -341,7 +351,8 @@ const formData = ref({
// //
autoFeed: false, autoFeed: false,
// //
emailNotification: true emailNotification: true,
emailAddress:''
} }
}) })
@ -606,7 +617,8 @@ const resetForm = () => {
// //
autoFeed: false, autoFeed: false,
// //
emailNotification: true emailNotification: true,
emailAddress:''
} }
} }
} }

Loading…
Cancel
Save