Browse Source

fix: 修复bug

sy-water-data-board-ui
panyuyi 1 year ago
parent
commit
0752fce886
  1. 9
      src/views/dike/runManage/pestAnimalControl/governanceRecords/index.vue

9
src/views/dike/runManage/pestAnimalControl/governanceRecords/index.vue

@ -872,6 +872,7 @@ export default {
<template slot-scope="scope">
<el-input
v-model="scope.row.drugName"
maxLength="100"
placeholder="请输入药物名称"
/>
</template>
@ -880,13 +881,18 @@ export default {
<template slot-scope="scope">
<el-input
v-model="scope.row.concentration"
maxLength="100"
placeholder="请输入浓度"
/>
</template>
</el-table-column>
<el-table-column prop="dose" align="center" label="剂量" width="80">
<template slot-scope="scope">
<el-input v-model="scope.row.dose" placeholder="请输入剂量" />
<el-input
v-model="scope.row.dose"
maxLength="100"
placeholder="请输入剂量"
/>
</template>
</el-table-column>
<el-table-column align="center" label="操作" width="100">
@ -896,6 +902,7 @@ export default {
type="text"
size="small"
@click="addWorkItem"
:disabled="recordForm.drugs.length >= 10"
>添加</el-button
>
<el-popconfirm

Loading…
Cancel
Save