|
@@ -60,7 +60,7 @@
|
|
|
<script>
|
|
|
import myPagination from "@/components/ledger/lib/myPagination";
|
|
|
import paramDetails from "@/components/dialogs/list/paramDetails"
|
|
|
-import { getBillPropList, getEquipmentFamily, getSpaceFloor, getBussines, upDateTableMain } from "@/api/scan/request"
|
|
|
+import { getBillPropList, getEquipmentFamily, getSpaceFloor, getBussines2, upDateTableMain } from "@/api/scan/request"
|
|
|
import floorCascader from "@/components/ledger/lib/floorCascader";
|
|
|
import {mapGetters, mapActions} from "vuex"
|
|
|
export default {
|
|
@@ -228,56 +228,33 @@ export default {
|
|
|
this.getData()
|
|
|
},
|
|
|
getData() {
|
|
|
- // let param = {
|
|
|
- // data: {
|
|
|
- // "limit": { // 分页查询, 选填.
|
|
|
- // "skip": this.page.size * (this.page.currentPage - 1), // 跳过多少数据
|
|
|
- // "count": this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
|
|
|
- // },
|
|
|
- // filter: {
|
|
|
- // EquipLocalName: this.search
|
|
|
- // },
|
|
|
- // "criteria": {
|
|
|
- // "id": "", // 选填, 默认值是Pj****, 即查询项目下的所有设备
|
|
|
- // "family": ["XXX"] // 必填, 要查询的类型, 只能是设备类型
|
|
|
- // }
|
|
|
+ // let param = {
|
|
|
+ // data: {
|
|
|
+ // filter: {
|
|
|
+ // EquipLocalName: this.search
|
|
|
// },
|
|
|
- // secret: this.secret,
|
|
|
- // ProjId: this.projectId
|
|
|
- // }
|
|
|
- // if (this.mess.buildId == "all") {
|
|
|
- // param.data.criteria.id = this.mess.ProjId
|
|
|
- // } else if (this.mess.buildId == "noKnow") {
|
|
|
- // param.data.criteria.id = this.mess.ProjId
|
|
|
- // param.data.directOnly = true
|
|
|
- // } else if (this.mess.floorId == "noKnow") {
|
|
|
- // param.data.criteria.id = this.mess.buildId
|
|
|
- // param.data.directOnly = true
|
|
|
- // } else if (this.mess.floorId && this.mess.floorId != "all") {
|
|
|
- // param.data.criteria.id = this.mess.floorId
|
|
|
- // } else if (this.mess.floorId == 'all') {
|
|
|
- // param.data.criteria.id = this.mess.buildId
|
|
|
- // } else {
|
|
|
- // param.data.criteria.id = this.projectId
|
|
|
- // }
|
|
|
- // console.log("category", this.category)
|
|
|
- // param.data.criteria.family = [this.getType(this.category.category)]
|
|
|
- // getBillPropList(param, res => {
|
|
|
- // console.log(res)
|
|
|
- // this.tableData = res.Content
|
|
|
- // this.page.total = res.Count
|
|
|
- // })
|
|
|
+ // directOnly: false,
|
|
|
+ // criteria: {
|
|
|
+ // id: "",
|
|
|
+ // graphType: "Pe2Eq",
|
|
|
+ // side: -1,
|
|
|
+ // type: ""
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // secret: this.secret,
|
|
|
+ // ProjId: this.projectId
|
|
|
+ // }
|
|
|
let param = {
|
|
|
data: {
|
|
|
- filter: {
|
|
|
- EquipLocalName: this.search
|
|
|
- },
|
|
|
directOnly: false,
|
|
|
criteria: {
|
|
|
+ EquipLocalName: [this.search],
|
|
|
id: "",
|
|
|
- graphType: "Pe2Eq",
|
|
|
- side: -1,
|
|
|
- type: ""
|
|
|
+ type: [],
|
|
|
+ exclude: [{
|
|
|
+ graphType: "Pe2Eq",
|
|
|
+ side: "fromId",
|
|
|
+ }]
|
|
|
}
|
|
|
},
|
|
|
secret: this.secret,
|
|
@@ -300,7 +277,7 @@ export default {
|
|
|
}
|
|
|
param.data.criteria.type = [this.getType(this.category.category)]
|
|
|
console.log(param)
|
|
|
- getBussines(param).then(res => {
|
|
|
+ getBussines2(param).then(res => {
|
|
|
this.tableData = res.data.Content
|
|
|
console.log(this.tableData, "this.tableData")
|
|
|
this.page.total = res.data.Count
|