| | |
| | | <wd-form :model="model"> |
| | | <wd-cell-group :border="true"> |
| | | <wd-input |
| | | v-model="model.no" |
| | | v-model="model.monofilamentNumber" |
| | | label="单丝编号" |
| | | label-width="100px" |
| | | prop="no" |
| | |
| | | placeholder="请输入单丝编号" |
| | | /> |
| | | <wd-input |
| | | v-model="model.length" |
| | | v-model="model.oneLength" |
| | | label="长度" |
| | | label-width="100px" |
| | | prop="length" |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import useFormData from "@/hooks/useFormData"; |
| | | |
| | | const { form: model } = useFormData({ |
| | | no: undefined, |
| | | length: undefined, |
| | | }); |
| | | const model: any = defineModel("value"); |
| | | </script> |
| | | |
| | | <style lang="scss" scoped></style> |