This commit is contained in:
yy 2024-05-28 22:17:08 +08:00
parent a7c372acd6
commit 2881c819b6

View File

@ -127,9 +127,9 @@
<Minus/> <Minus/>
</el-icon> </el-icon>
</el-button> </el-button>
<!-- <el-button size="small" color="#006080" @click="tableItemConfirm(scope)" <!--<el-button size="small" color="#006080" @click="tableItemConfirm(scope)"
:disabled="tableDataStore[scope.$index].speed === scope.row.speed">确定--> :disabled="tableDataStore[scope.$index].speed === scope.row.speed">确定-->
<el-button size="small" color="#006080" @click="tableItemConfirm(scope, varTableData)">确定 <!--<el-button size="small" color="#006080" @click="tableItemConfirm(scope, varTableData)">确定
</el-button> </el-button>
<el-button size="small" color="#006080" @click="tableItemCancel(scope)">取消 <el-button size="small" color="#006080" @click="tableItemCancel(scope)">取消
</el-button> </el-button>
@ -350,7 +350,7 @@ function updateMedicineTable(aiMedicine: any, doctorMedicine: any) {
} }
if (remoteWsStore.varMedicine.includes(key)) { if (remoteWsStore.varMedicine.includes(key)) {
varTable.push(medicine); varTable.push(medicine);
} else { } else if (remoteWsStore.fixedMedicine.includes(key)) {
fixedTable.push(medicine); fixedTable.push(medicine);
} }
}) })