西门子SMART200程序 PID的控制写法,突破8路,PID直接做成子程序,无密码,直接调用

西门子SMART200程序 PID的控制写法,突破8路,PID直接做成子程序,无密码,直接调用
请添加图片描述
ID:6910655441338032

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,您可以这样封装: ```vue <template> <a-drawer :visible="visible" :mask-closable="false" :closable="false" :width="420" @close="onClose" > <slot></slot> <div class="drawer-footer"> <a-button style="margin-right: 8px;" @click="onClose">取消</a-button> <a-button type="primary" :loading="submitting" @click="onSubmit"> 提交 </a-button> </div> </a-drawer> </template> <script> import { Drawer, Button } from 'ant-design-vue'; export default { name: 'MyDrawer', components: { 'a-drawer': Drawer, 'a-button': Button, }, props: { visible: { type: Boolean, default: false, }, }, data() { return { submitting: false, }; }, methods: { onClose() { this.$emit('update:visible', false); }, onSubmit() { this.submitting = true; // 处理表单提交逻辑 this.$emit('submit', () => { this.submitting = false; this.onClose(); }); }, }, }; </script> <style> .drawer-footer { display: flex; justify-content: flex-end; align-items: center; height: 56px; border-top: 1px solid #e8e8e8; padding: 0 16px; } </style> ``` 然后在父组件中使用: ```vue <template> <div> <a-button type="primary" @click="visible = true"> 打开抽屉 </a-button> <my-drawer :visible.sync="visible" @submit="onSubmit"> <a-form :form="form"> <a-form-item label="姓名" :label-col="{ span: 6 }" :wrapper-col="{ span: 16 }"> <a-input v-model="form.name" /> </a-form-item> <a-form-item label="年龄" :label-col="{ span: 6 }" :wrapper-col="{ span: 16 }"> <a-input-number v-model="form.age" /> </a-form-item> </a-form> </my-drawer> </div> </template> <script> import MyDrawer from './MyDrawer.vue'; import { Form, Input, InputNumber } from 'ant-design-vue'; export default { components: { MyDrawer, 'a-form': Form, 'a-form-item': Form.Item, 'a-input': Input, 'a-input-number': InputNumber, }, data() { return { visible: false, form: { name: '', age: undefined, }, }; }, methods: { onSubmit(callback) { this.$refs.form.validate(async (valid) => { if (!valid) { return; } // 处理表单提交逻辑 await this.$api.submitForm(this.form); callback(); }); }, }, }; </script> ``` 这样,您就可以在父组件中通过控制 `visible` 来控制抽屉的显隐,并且抽屉中的表单数据可以通过 `submit` 事件提交到父组件中进行处理。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值