|
|
@ -335,6 +335,7 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { getClients } from '@/views/reagent/mixin/getClients'
|
|
|
|
import { getClients } from '@/views/reagent/mixin/getClients'
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
|
|
|
|
del,
|
|
|
|
drug_list,
|
|
|
|
drug_list,
|
|
|
|
get_durg_record,
|
|
|
|
get_durg_record,
|
|
|
|
update,
|
|
|
|
update,
|
|
|
@ -501,7 +502,17 @@ export default {
|
|
|
|
this.history_total = 0
|
|
|
|
this.history_total = 0
|
|
|
|
},
|
|
|
|
},
|
|
|
|
handleDel() {
|
|
|
|
handleDel() {
|
|
|
|
|
|
|
|
if (this.multipleSelection.length !== 1) {
|
|
|
|
|
|
|
|
this.$message.warning('请选择一个试剂!')
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
|
|
|
|
medicament_id: this.multipleSelection[0].medicament_id
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
del(stringify(data)).then(res => {
|
|
|
|
|
|
|
|
this.$message.success(res.msg)
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 刷新按钮
|
|
|
|
// 刷新按钮
|
|
|
|
handleRefresh() {
|
|
|
|
handleRefresh() {
|
|
|
|