10/25 bug优化 1.0

20240912_adapter
wangwei 5 months ago
parent d87bb86c4f
commit e54251abf4

@ -1717,35 +1717,35 @@
<!-- </el-button>-->
<!-- </div>-->
</el-dialog>
<el-dialog
title="耗材字典-编辑"
:visible.sync="editSingleDiDialogVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="45%"
v-if="editSingleDiDialogVisible"
>
<product-single-edit
:editQuery="editSingleFormat"
></product-single-edit>
<div style="text-align: center; margin-top: 12px">
<el-button
type="primary"
size="small"
icon="search"
@click="onAddSingleSubmit(false)"
>提交
</el-button>
<el-button
type="primary"
size="small"
icon="search"
@click="cancelDialog"
>取消
</el-button>
</div>
</el-dialog>
<!--<el-dialog-->
<!-- title="耗材字典-编辑"-->
<!-- :visible.sync="editSingleDiDialogVisible"-->
<!-- :close-on-click-modal="false"-->
<!-- :close-on-press-escape="false"-->
<!-- width="45%"-->
<!-- v-if="editSingleDiDialogVisible"-->
<!--&gt;-->
<!-- <product-single-edit-->
<!-- :editQuery="editSingleFormat"-->
<!-- ></product-single-edit>-->
<!-- <div style="text-align: center; margin-top: 12px">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- size="small"-->
<!-- icon="search"-->
<!-- @click="onAddSingleSubmit(false)"-->
<!-- >提交-->
<!-- </el-button>-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- size="small"-->
<!-- icon="search"-->
<!-- @click="cancelDialog"-->
<!-- >取消-->
<!-- </el-button>-->
<!-- </div>-->
<!--</el-dialog>-->
<el-dialog
title="耗材字典-关联添加器械信息"
:visible.sync="selectUdiDialogVisible"

@ -1317,12 +1317,12 @@ export default {
this.editQuery.distributeLevelUnit = matchingItem.packUnit;
this.editQuery.distributeLevel = matchingItem.packLevel
}
calculateDistCount(matchingItem).then((res) => {
this.editQuery = {
...this.editQuery,
distributeLevelCount: res.data.distributeLevelCount,
}
})
// calculateDistCount(matchingItem).then((res) => {
// this.editQuery = {
// ...this.editQuery,
// distributeLevelCount: res.data.distributeLevelCount,
// }
// })
},
useLevelDiChange(val) {
const matchingItem = this.detailList.find(item => item.nameCode == val);
@ -1330,12 +1330,12 @@ export default {
this.editQuery.useLevelUnit = matchingItem.packUnit;
this.editQuery.useLevel = matchingItem.packLevel;
}
calculateUseCount(matchingItem).then((res) => {
this.editQuery = {
...this.editQuery,
useLeverCount: res.data.useLeverCount,
}
})
// calculateUseCount(matchingItem).then((res) => {
// this.editQuery = {
// ...this.editQuery,
// useLeverCount: res.data.useLeverCount,
// }
// })
},
classifyChange() {
this.classifyChange(this.editQuery.flbm)

@ -431,7 +431,11 @@ export default {
this.loading = false
if (res.code == 20000){
this.list = res.data.list || []
this.total = res.data.total || 0
if (res.data.list.length === 0){
this.total = 0
}else
this.total = res.data.total
}else {
this.$message.error(res.message)
}

@ -116,7 +116,7 @@
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true" width="140"></el-table-column>
<el-table-column label="商品名称" prop="spmc" show-overflow-tooltip="true" width="110"></el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true" width="140"></el-table-column>
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="80"></el-table-column>
<el-table-column label="计量单位" prop="packUnit" show-overflow-tooltip="true" width="80"></el-table-column>
<el-table-column width="110" label="申购数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"

@ -696,6 +696,7 @@ export default {
this.orderEditor = false;
}
this.findSubInvs();
this.findMethod("")
this.codeArray = [];
},
};

Loading…
Cancel
Save