From 69def06b56f9ab466fda99d309af81e0d70c637d Mon Sep 17 00:00:00 2001 From: 13404089107 <puwei@sinata.cn> Date: 星期一, 02 六月 2025 18:50:25 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- culture/src/views/pedigree-chart/components/AddSublevelPlan.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/culture/src/views/pedigree-chart/components/AddSublevelPlan.vue b/culture/src/views/pedigree-chart/components/AddSublevelPlan.vue index 3a2d43d..b95a85d 100644 --- a/culture/src/views/pedigree-chart/components/AddSublevelPlan.vue +++ b/culture/src/views/pedigree-chart/components/AddSublevelPlan.vue @@ -1,6 +1,6 @@ <template> <!-- 设置传代计划数弹窗 --> - <el-dialog :title="planForm.status === 'detail' ? '传代计划数详情' : '设置菌种传代计划数'" :visible.sync="planDialogVisible" + <el-dialog :title="planForm.formStatus === 'detail' ? '传代计划数详情' : '设置菌种传代计划数'" :visible.sync="planDialogVisible" width="40%" :close-on-click-modal="false"> <el-form :model="planForm" :rules="planRules" ref="planForm" label-position="top"> <el-row :gutter="20"> @@ -45,13 +45,13 @@ <el-row :gutter="20"> <el-col :span="10"> <el-form-item label="传代计划数" prop="generationCount"> - <el-input-number :disabled="planForm.status === 'detail'" v-model="planForm.generationCount" + <el-input-number :disabled="planForm.formStatus === 'detail'" v-model="planForm.generationCount" :controls="false" :min="1" placeholder="请输入" /> </el-form-item> </el-col> </el-row> </el-form> - <div v-if="planForm.status !== 'detail'" class="dialog-footer"> + <div v-if="planForm.formStatus !== 'detail'" class="dialog-footer"> <el-button type="primary" @click="handleSubmit">提交签字</el-button> </div> </el-dialog> -- Gitblit v1.7.1