修改客户所提基础问题
This commit is contained in:
parent
7cea923408
commit
3aeb7e823e
|
|
@ -26,9 +26,11 @@
|
|||
<el-table-column prop="name" label="装备名称" width="120" />
|
||||
<el-table-column label="基本配置标准(台/套)" min-width="120" align="center">
|
||||
<el-table-column
|
||||
prop="standard"
|
||||
:label="`标准(${props.tableData && props.tableData[0] && props.tableData[0].labelVol || ''})`"
|
||||
/>
|
||||
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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue