Browse Source

fix:工艺加液步骤5 警告处理

master
guoapeng 2 months ago
parent
commit
0d1ab33e8c
  1. 2
      src/components/craft/AddCraft/index.vue

2
src/components/craft/AddCraft/index.vue

@ -362,7 +362,7 @@ const addHandle = async () => {
<span>试管{{ liquid.tubeNum }} </span> <span>试管{{ liquid.tubeNum }} </span>
<div v-for="(s, sIndex) in liquid.solutionList" :key="sIndex" class="step-solution-item"> <div v-for="(s, sIndex) in liquid.solutionList" :key="sIndex" class="step-solution-item">
<el-select v-model="s.solutionId" size="small" style="width: 100%" placeholder="溶液"> <el-select v-model="s.solutionId" size="small" style="width: 100%" placeholder="溶液">
<el-option v-for="item in solutionList" :key="item.id" :label="item.name" :value="item.id" />
<el-option v-for="ss in solutionList" :key="ss.id" :label="ss.name" :value="ss.id" />
</el-select> </el-select>
<el-input v-model.number="s.volume" size="small" type="number" style="width: 100%" placeholder="容量"> <el-input v-model.number="s.volume" size="small" type="number" style="width: 100%" placeholder="容量">
<template #append> <template #append>

Loading…
Cancel
Save