mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-24 04:54:58 +08:00
Merge branch 'one' of https://gitee.com/xiongmao1988/rax-medical into one
This commit is contained in:
commit
a7c372acd6
|
@ -92,14 +92,14 @@
|
|||
<!-- table1 -->
|
||||
<div class="table-box">
|
||||
<el-table :data="varTableData" height="100%" style="width: 100%">
|
||||
<el-table-column prop="num" label="票号" width="40" align="center" />
|
||||
<el-table-column prop="name" label="药物名称" align="center" />
|
||||
<el-table-column type="index" label="票号" width="40" align="center"/>
|
||||
<el-table-column prop="name" label="药物名称" align="center"/>
|
||||
<el-table-column prop="speed" label="速度(ml/h)" width="120">
|
||||
<template #header>
|
||||
<!-- <template #header>
|
||||
<el-dropdown @command="table1SpeedCommand">
|
||||
<span style="color: white;font-size: 14px;line-height: 20px;">
|
||||
{{ table1SpeedVal || '请选择速度' }}
|
||||
</span>
|
||||
<span style="color: white;font-size: 14px;line-height: 20px;">
|
||||
{{ table1SpeedVal || '请选择速度' }}
|
||||
</span>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item command="速度(ug/kg/min)">速度(ug/kg/min)</el-dropdown-item>
|
||||
|
@ -107,70 +107,68 @@
|
|||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</template>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
<el-table-column prop="total" label="累计药量(ml)" width="100">
|
||||
<template #default="scope">—</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="state" label="工作状态" width="70" align="center" />
|
||||
<el-table-column label="特殊情况人为干预" align="center">
|
||||
<el-table-column prop="state" label="工作状态" width="70" align="center"/>
|
||||
<!-- <el-table-column label="特殊情况人为干预" align="center">
|
||||
<template #default="scope">
|
||||
<div class="table-btn-box">
|
||||
<el-button size="small" color="#006080" @click="tableItemPlus(scope)">
|
||||
<el-icon>
|
||||
<Plus />
|
||||
<Plus/>
|
||||
</el-icon>
|
||||
</el-button>
|
||||
<el-button size="small" color="#006080" :disabled="scope.row.speed <= 0"
|
||||
@click="tableItemMinus(scope)">
|
||||
@click="tableItemMinus(scope)">
|
||||
<el-icon>
|
||||
<Minus />
|
||||
<Minus/>
|
||||
</el-icon>
|
||||
</el-button>
|
||||
<!-- <el-button size="small" color="#006080" @click="tableItemConfirm(scope)"
|
||||
: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 size="small" color="#006080" @click="tableItemCancel(scope)">取消
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- table2 -->
|
||||
<div class="table-box">
|
||||
<el-table :data="fixedTableData" height="100%" style="width: 100%">
|
||||
<el-table-column prop="num" label="票号" width="40" align="center" />
|
||||
<el-table-column prop="name" label="药物名称" align="center" />
|
||||
<el-table-column prop="speed" label="速度(ml/h)" width="100" />
|
||||
<el-table-column type="index" label="票号" width="40" align="center"/>
|
||||
<el-table-column prop="name" label="药物名称" align="center"/>
|
||||
<el-table-column prop="speed" label="速度(ml/h)" width="100"/>
|
||||
<el-table-column prop="total" label="累计药量(ml)" width="100">
|
||||
<template #default="scope">—</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="state" label="工作状态" width="70" align="center" />
|
||||
<el-table-column label="特殊情况人为干预" align="center">
|
||||
<el-table-column prop="state" label="工作状态" width="70" align="center"/>
|
||||
<!-- <el-table-column label="特殊情况人为干预" align="center">
|
||||
<template #default="scope">
|
||||
<div class="table-btn-box">
|
||||
<el-button size="small" color="#006080" @click="tableItemPlus(scope)">
|
||||
<el-icon>
|
||||
<Plus />
|
||||
<Plus/>
|
||||
</el-icon>
|
||||
</el-button>
|
||||
<el-button size="small" color="#006080" :disabled="scope.row.speed <= 0"
|
||||
@click="tableItemMinus(scope)">
|
||||
@click="tableItemMinus(scope)">
|
||||
<el-icon>
|
||||
<Minus />
|
||||
<Minus/>
|
||||
</el-icon>
|
||||
</el-button>
|
||||
<el-button size="small" color="#006080"
|
||||
@click="tableItemConfirm(scope, fixedTableData)">确定
|
||||
<el-button size="small" color="#006080" @click="tableItemConfirm(scope, fixedTableData)">确定
|
||||
</el-button>
|
||||
<el-button size="small" color="#006080" @click="tableItemCancel(scope)">取消
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user