|
@@ -30,8 +30,6 @@
|
|
|
<el-table-column prop="medicineName" label="药品名"></el-table-column>
|
|
|
<el-table-column prop="factory" label="生产厂家"></el-table-column>
|
|
|
<el-table-column prop="batchNumber" label="生产批号"></el-table-column>
|
|
|
- <el-table-column prop="mdf" label="生产日期"></el-table-column>
|
|
|
- <el-table-column prop="price" label="价格(元)"></el-table-column>
|
|
|
<el-table-column prop="source" label="来源"></el-table-column>
|
|
|
<el-table-column label="数量">
|
|
|
<template v-slot="scope">
|
|
@@ -170,7 +168,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- // 物料入库列表
|
|
|
+ // 基础信息列表
|
|
|
this.getMInStoreList();
|
|
|
},
|
|
|
computed: {},
|
|
@@ -180,7 +178,7 @@ export default {
|
|
|
if (valid) {
|
|
|
reqAddMInStore(this.formData)
|
|
|
.then(res => {
|
|
|
- // 物料入库列表
|
|
|
+ // 基础信息列表
|
|
|
this.getMInStoreList();
|
|
|
// 获取基础药品列表 给后面下拉选择器使用
|
|
|
this.$store.dispatch("getDrugBasicsList");
|
|
@@ -196,7 +194,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- // 物料入库列表
|
|
|
+ // 基础信息列表
|
|
|
getMInStoreList() {
|
|
|
reqMInStoreList({
|
|
|
searchStr: this.search,
|
|
@@ -223,7 +221,7 @@ export default {
|
|
|
del(row) {
|
|
|
reqDelMInStore(row.id)
|
|
|
.then(res => {
|
|
|
- // 物料入库列表
|
|
|
+ // 基础信息列表
|
|
|
this.getMInStoreList();
|
|
|
if (res.code == "success") {
|
|
|
this.$message.success(res.msg);
|
|
@@ -240,7 +238,7 @@ export default {
|
|
|
pageChange(p) {
|
|
|
console.log(p);
|
|
|
this.pageNum = p;
|
|
|
- // 物料入库列表
|
|
|
+ // 基础信息列表
|
|
|
this.getMInStoreList();
|
|
|
},
|
|
|
CPeriodOfValidityUnit(v) {
|