|
@@ -933,18 +933,18 @@ export default {
|
|
|
if (!!this.myHotArr[this.tabChecked]) {
|
|
|
let fileName = ''
|
|
|
this.buildList.map(item => {
|
|
|
- if (item.BuildId == this.buildId) {
|
|
|
+ if (item.BuildID == this.buildId) {
|
|
|
fileName += item.BuildLocalName
|
|
|
}
|
|
|
})
|
|
|
this.floorList.map(item => {
|
|
|
- if (item.FloorId == this.floorId) {
|
|
|
+ if (item.FloorID == this.floorId) {
|
|
|
fileName += '-' + item.FloorLocalName
|
|
|
}
|
|
|
})
|
|
|
this.facilityList.map((item, index) => {
|
|
|
if (index == this.tabChecked) {
|
|
|
- fileName += '-' + item.Name + item.Total
|
|
|
+ fileName += '-' + item.FamilyName + item.Count
|
|
|
}
|
|
|
})
|
|
|
this.myHotArr[this.tabChecked].getPlugin('exportFile').downloadFile("csv", {
|