|
@@ -501,70 +501,57 @@ export default {
|
|
|
},
|
|
|
// 查看数据是否填写完整
|
|
|
addDataCheckCompleteFun() {
|
|
|
- let params = {
|
|
|
+ let postParams = {
|
|
|
projectId: this.plazaId,
|
|
|
systemCode: this.smsxt,
|
|
|
floor: this.floorInfo.gname,
|
|
|
}
|
|
|
- addDataCheckComplete({params}).then(res=>{
|
|
|
- // let res = {
|
|
|
- // "result": "success", //状态信息 success:调用成功 fail:调用失败
|
|
|
- // "data": {
|
|
|
- // "isComplate": false, //是否完整, true: 完整 false :不完整
|
|
|
- // "desc": "数据填写不完整,请检查并完善" // 描述信息
|
|
|
- // }
|
|
|
- // }
|
|
|
- if (res.result == 'success') {
|
|
|
- if (!res.data.isComplate) {
|
|
|
+ addDataCheckComplete({postParams}).then(res=>{
|
|
|
+ if (res.data.result == 'success') {
|
|
|
+ if (res.data.data.isComplate) {
|
|
|
this.visibleTooltip = false;
|
|
|
} else {
|
|
|
this.visibleTooltip = true;
|
|
|
}
|
|
|
- }else{
|
|
|
- this.$message({
|
|
|
- message: res.message,
|
|
|
- type: 'error'
|
|
|
- })
|
|
|
}
|
|
|
- console.log(res);
|
|
|
})
|
|
|
},
|
|
|
// 消防系统数据预览/数据回显
|
|
|
addDataPreviewFireControlFun(){
|
|
|
- let params = {
|
|
|
+ let postParams = {
|
|
|
projectId: this.plazaId,
|
|
|
systemCode: this.smsxt,
|
|
|
floor: this.floorInfo.gname,
|
|
|
getTotal:'0'
|
|
|
}
|
|
|
- // addDataPreviewFireControl({params}).then(res=>{
|
|
|
- let res = {
|
|
|
- "result": "success", //状态信息 success:调用成功 fail:调用失败
|
|
|
- "data":{
|
|
|
- "infoList":[{
|
|
|
- "fireZone":"C1-C1-C1-C1-9", //防火分区
|
|
|
- "isFm": "1", //是否属于工程物业管理范围,0:否,1:是
|
|
|
- "hostNum":"2", //主机编号
|
|
|
- //烟感数量
|
|
|
- "warmCount":"999999", //温感数量
|
|
|
- "handNewCount":"13", //手报数量
|
|
|
-
|
|
|
- "moduleCount":"999999" //模块数量
|
|
|
- },{
|
|
|
- "fireZone":"C1-10", //防火分区
|
|
|
- "isFm": "0", //是否属于工程物业管理范围,0:否,1:是
|
|
|
- "manageScope":"合作方管理范围" //管理范围
|
|
|
- } ],
|
|
|
- "totalCount":{ //总数量,当传入的参数getTotal的值为1时有该数据
|
|
|
- "smokeTotalCount":"20", //烟感总数量
|
|
|
- "warmTotalCount":"12", //温感总数量
|
|
|
- "handNewTotalCount":"13", //手报总数量
|
|
|
- "fireHydrantTotalCount":"15", //消火栓总数量
|
|
|
- "moduleTotalCount":"33" //模块总数量
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- if(res.result=='success'){
|
|
|
+ addDataPreviewFireControl({postParams}).then(res=>{
|
|
|
+ // let res = {
|
|
|
+ // "result": "success", //状态信息 success:调用成功 fail:调用失败
|
|
|
+ // "data":{
|
|
|
+ // "infoList":[{
|
|
|
+ // "fireZone":"C1-C1-C1-C1-9", //防火分区
|
|
|
+ // "isFm": "1", //是否属于工程物业管理范围,0:否,1:是
|
|
|
+ // "hostNum":"2", //主机编号
|
|
|
+ // //烟感数量
|
|
|
+ // "warmCount":"999999", //温感数量
|
|
|
+ // "handNewCount":"13", //手报数量
|
|
|
+ //
|
|
|
+ // "moduleCount":"999999" //模块数量
|
|
|
+ // },{
|
|
|
+ // "fireZone":"C1-10", //防火分区
|
|
|
+ // "isFm": "0", //是否属于工程物业管理范围,0:否,1:是
|
|
|
+ // "manageScope":"合作方管理范围" //管理范围
|
|
|
+ // } ],
|
|
|
+ // "totalCount":{ //总数量,当传入的参数getTotal的值为1时有该数据
|
|
|
+ // "smokeTotalCount":"20", //烟感总数量
|
|
|
+ // "warmTotalCount":"12", //温感总数量
|
|
|
+ // "handNewTotalCount":"13", //手报总数量
|
|
|
+ // "fireHydrantTotalCount":"15", //消火栓总数量
|
|
|
+ // "moduleTotalCount":"33" //模块总数量
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+ if(res.data.result=='success'){
|
|
|
this.tableData = res.data.infoList;
|
|
|
}else{
|
|
|
this.$message({
|
|
@@ -573,43 +560,43 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- // })
|
|
|
+ })
|
|
|
},
|
|
|
//弱电系统数据预览/回显
|
|
|
addDataPreviewWeakCurrentFun(){
|
|
|
- let params = {
|
|
|
+ let postParams = {
|
|
|
projectId: this.plazaId,
|
|
|
systemCode: this.smsxt,
|
|
|
floor: this.floorInfo.gname,
|
|
|
getTotal:'1'
|
|
|
}
|
|
|
- // addDataPreviewWeakCurrent({params}).then(res=>{
|
|
|
- let res = {
|
|
|
- "result": "success", //状态信息 success:调用成功 fail:调用失败
|
|
|
- "data":{
|
|
|
- "infoList":[{
|
|
|
- "fireZone":"C区", //分区
|
|
|
- "monitorCount":"2", //监控系统数量
|
|
|
- "baCount":"3", //BA系统数量
|
|
|
- "ddcCount":"4", //DDC数量
|
|
|
- "accessCount":"20" //门禁系统数量
|
|
|
- },{
|
|
|
- "fireZone":"C区", //分区
|
|
|
- "monitorCount":"2", //监控系统数量
|
|
|
- "baCount":"5", //BA系统数量
|
|
|
- "ddcCount":"4", //DDC数量
|
|
|
- "accessCount":"20" //门禁系统数量
|
|
|
- } ],
|
|
|
- "totalCount":{ //总数量,当传入的参数getTotal的值为1时有该数据
|
|
|
- "monitorTotalCount":"2", //监控系统总数量
|
|
|
- "baTotalCount":"3", //BA系统总数量
|
|
|
- "ddcTotalCount":"4", //DDC总数量
|
|
|
- "accessTotalCount":"20" //门禁系统总数量
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ addDataPreviewWeakCurrent({postParams}).then(res=>{
|
|
|
+ // let res = {
|
|
|
+ // "result": "success", //状态信息 success:调用成功 fail:调用失败
|
|
|
+ // "data":{
|
|
|
+ // "infoList":[{
|
|
|
+ // "fireZone":"C区", //分区
|
|
|
+ // "monitorCount":"2", //监控系统数量
|
|
|
+ // "baCount":"3", //BA系统数量
|
|
|
+ // "ddcCount":"4", //DDC数量
|
|
|
+ // "accessCount":"20" //门禁系统数量
|
|
|
+ // },{
|
|
|
+ // "fireZone":"C区", //分区
|
|
|
+ // "monitorCount":"2", //监控系统数量
|
|
|
+ // "baCount":"5", //BA系统数量
|
|
|
+ // "ddcCount":"4", //DDC数量
|
|
|
+ // "accessCount":"20" //门禁系统数量
|
|
|
+ // } ],
|
|
|
+ // "totalCount":{ //总数量,当传入的参数getTotal的值为1时有该数据
|
|
|
+ // "monitorTotalCount":"2", //监控系统总数量
|
|
|
+ // "baTotalCount":"3", //BA系统总数量
|
|
|
+ // "ddcTotalCount":"4", //DDC总数量
|
|
|
+ // "accessTotalCount":"20" //门禁系统总数量
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
this.tableData =[];
|
|
|
- if(res.result=='success'){
|
|
|
+ if(res.data.result=='success'){
|
|
|
|
|
|
res.data.infoList.length && res.data.infoList.map(item=>{
|
|
|
let arr = [
|
|
@@ -651,7 +638,7 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- // })
|
|
|
+ })
|
|
|
},
|
|
|
},
|
|
|
created() {
|