修改客户所提基础问题

This commit is contained in:
lizhenhua 2025-07-10 15:54:18 +08:00
parent 7cea923408
commit 3aeb7e823e
1 changed files with 6 additions and 4 deletions

View File

@ -28,7 +28,9 @@
<el-table-column
prop="standard"
:label="`标准(${props.tableData && props.tableData[0] && props.tableData[0].labelVol || ''})`"
:formatter="(row) => row.standard != null ? Math.round(row.standard) : ''"
/>
</el-table-column>
<!-- <el-table-column prop="type" label="装备种类" width="100" /> -->
<el-table-column prop="desc" label="配置说明" width="100" />
@ -99,7 +101,7 @@ function showOwnDetail(row) {
currentDetail.value = row
dialogVisible.value = true
getdeviceInfo({ companyName:row.companyId,devicenewName:row.name}).then((response) => {
getdeviceInfo({ companyName:row.companyId,deviceId:row.typeId}).then((response) => {
if(response.code ==200){
ownDetailList.value =response.data
}