|
|
|
@ -31,13 +31,13 @@
|
|
|
|
|
<el-table :data="preDetailList" :row-style="{ height: '50px',fontSize: '16px'}" highlight-current-row="true" border ref="multipleTable">
|
|
|
|
|
<el-table-column label="产品通用名" prop="cpmctymc" width="240"></el-table-column>
|
|
|
|
|
<el-table-column label="制剂规格" prop="prepnSpec" width="280"></el-table-column>
|
|
|
|
|
<el-table-column label="包装规格" prop="ggxh" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="摆放位置" prop="queueCode" ></el-table-column>
|
|
|
|
|
<el-table-column label="包装规格" prop="spec" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="摆放位置" prop="productLocation" ></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="280" fixed="right">
|
|
|
|
|
<el-table-column label="操作" width="140" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="codeHandleClick(scope.row)" :disabled="!scope.row.getConfirm">赋码明细</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-thumb" @click="handleClick(scope.row)" :disabled="scope.row.getConfirm">确认取药</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-document" @click="codeHandleClick(scope.row)" v-if = "scope.row.getConfirm">赋码明细</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-thumb" @click="handleClick(scope.row)" v-if = "!scope.row.getConfirm">确认取药</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|