feat(xumu): 新增免疫登记功能

- 添加免疫登记管理页面登记的新增、编辑和删除功能
- 集成耳标和相关组件
- 实现免疫号选择器组件
- 优化称重管理功能,修复相关问题
This commit is contained in:
aixianling
2024-12-27 12:12:02 +08:00
parent ab9ec446c7
commit 19a9486f48
7 changed files with 450 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
<script>
export default {
name: "AiInput",
props: {
value: {default: ""},
edit: {default: true}
},
model: {
prop: 'value',
event: 'input'
}
}
</script>
<template>
<section class="AiInput">
<el-input v-if="edit" :value="value" size="small" placeholder="请输入" v-bind="$attrs"
@input="v=>$emit('input', v)" clearable autofocus/>
<b v-else v-text="value"/>
</section>
</template>
<style scoped lang="scss">
.AiInput {
}
</style>