diff --git a/src/views/user/rent-facility/line.vue b/src/views/user/rent-facility/line.vue
index a95412f..2b17902 100644
--- a/src/views/user/rent-facility/line.vue
+++ b/src/views/user/rent-facility/line.vue
@@ -26,9 +26,11 @@
+ prop="standard"
+ :label="`标准(${props.tableData && props.tableData[0] && props.tableData[0].labelVol || ''})`"
+ :formatter="(row) => row.standard != null ? Math.round(row.standard) : ''"
+ />
+
@@ -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
}