|
@@ -30,17 +30,17 @@
|
|
|
<template slot-scope="scope">
|
|
|
{{
|
|
|
scope.row.building ? scope.row.building.localName ? scope.row.building.localName : '' : ''
|
|
|
- }}-{{ scope.row.Floor ? scope.row.Floor.FloorLocalName ? scope.row.Floor.FloorLocalName : '' : '' }}
|
|
|
+ }}-{{ scope.row.floor ? scope.row.floor.localName ? scope.row.floor.localName : '' : '' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="设备族">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.EquipFamilyList[0].FamilyName }}
|
|
|
+ {{ scope.row.equipFamilyList[0].familyName }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="安装位置">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.LedgerParam ? scope.row.LedgerParam.Siteinstall ? scope.row.LedgerParam.Siteinstall.InstallLocation : "--" : "--" }}
|
|
|
+ {{ scope.row.infos ? scope.row.infos.InstallLocation ? scope.row.infos.InstallLocation : "--" : "--" }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -106,7 +106,7 @@ export default {
|
|
|
//确认选择
|
|
|
clickTrue() {
|
|
|
if (this.radio) {
|
|
|
- this.$emit('changeProperty', { PropertyId: this.radio, LinkEquipLocalName: this.$refs[this.radio].value });
|
|
|
+ this.$emit('changeProperty', { propertyId: this.radio, linkEquipLocalName: this.$refs[this.radio].value });
|
|
|
this.dialog.changeRea = false;
|
|
|
} else {
|
|
|
this.$message("请先选择资产")
|