10/25 bug优化 1.0

20240912_adapter
wangwei 5 months ago
parent d87bb86c4f
commit e54251abf4

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

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

@ -431,7 +431,11 @@ export default {
this.loading = false this.loading = false
if (res.code == 20000){ if (res.code == 20000){
this.list = res.data.list || [] 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 { }else {
this.$message.error(res.message) 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="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="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="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="申购数量"> <el-table-column width="110" label="申购数量">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input size="small" v-model="scope.row.count" <el-input size="small" v-model="scope.row.count"

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

Loading…
Cancel
Save