Commit c4820283 authored by yaqizhang's avatar yaqizhang

合并冲突

parents b73df032 8d39f925
...@@ -38,7 +38,7 @@ public class PipeInterfaceController { ...@@ -38,7 +38,7 @@ public class PipeInterfaceController {
//判断如果名称一样就一组 //判断如果名称一样就一组
if (pipeDatesGroup.get(i).getPowerCompany().equals(pipeDates.get(n).getPowerCompany())){ if (pipeDatesGroup.get(i).getPowerCompany().equals(pipeDates.get(n).getPowerCompany())){
// //设置分组类型 // //设置分组类型
pipeDates.get(n).setCompanyType(Integer.parseInt(pipeDates.get(n).getPipeId())); // pipeDates.get(n).setCompanyType(Integer.parseInt(pipeDates.get(n).getPipeId()));
pipeDates.get(n).setIconType(1); pipeDates.get(n).setIconType(1);
} }
} }
...@@ -108,13 +108,15 @@ public class PipeInterfaceController { ...@@ -108,13 +108,15 @@ public class PipeInterfaceController {
*/ */
@RequestBody @RequestBody
@RequestMapping("/selectTdetectorUser") @RequestMapping("/selectTdetectorUser")
public List<TdetectorUserData> selectTdetectorUser(){ public TenterpriseInfoDataList selectTdetectorUser(){
TenterpriseInfoDataList tenterpriseInfoDataList=new TenterpriseInfoDataList();
//燃气用户信息查询方法 //燃气用户信息查询方法
List<TdetectorUserData> tdetectorUserData = iPipeInterfaceService.selectTdetectorUser(); List<TdetectorUserData> tdetectorUserData = iPipeInterfaceService.selectTdetectorUser();
for (int i=0;i<tdetectorUserData.size();i++){ for (int i=0;i<tdetectorUserData.size();i++){
tdetectorUserData.get(i).setIconType(6); tdetectorUserData.get(i).setIconType(6);
} }
return tdetectorUserData; tenterpriseInfoDataList.setData(tdetectorUserData);
return tenterpriseInfoDataList;
} }
/** /**
...@@ -133,13 +135,20 @@ public class PipeInterfaceController { ...@@ -133,13 +135,20 @@ public class PipeInterfaceController {
*/ */
@RequestBody @RequestBody
@RequestMapping("/selectvalveData") @RequestMapping("/selectvalveData")
public List<PipeDate> selectvalveData(){ public DeviceDataList selectvalveData(){
DeviceDataList deviceDataList=new DeviceDataList();
//查询阀门井数据 //查询阀门井数据
List<PipeDate> pipeDates = iPipeInterfaceService.selectvalveData(); List<DeviceData> pipeDates = iPipeInterfaceService.selectvalveData();
for (int i=0;i<pipeDates.size();i++){ for (int i=0;i<pipeDates.size();i++){
//查询下级设备数据
List<PressureFlow> pressureFlows = iPipeInterfaceService.selectPressureFlow(pipeDates.get(i).getDeviceId());
pipeDates.get(i).setIconType(3); pipeDates.get(i).setIconType(3);
pipeDates.get(i).setPressureFlows(pressureFlows);
} }
return pipeDates; deviceDataList.setData(pipeDates);
return deviceDataList;
} }
} }
...@@ -45,6 +45,16 @@ public class TDetectorUserController extends BaseController ...@@ -45,6 +45,16 @@ public class TDetectorUserController extends BaseController
return getDataTable(list); return getDataTable(list);
} }
/**
* 获取探测器用户列表
* @param tDetectorUser
* @return
*/
@GetMapping("/detectorUserList")
public AjaxResult detectorUserList(TDetectorUser tDetectorUser){
return AjaxResult.success(tDetectorUserService.detectorUserList(tDetectorUser));
}
/** /**
* 导出燃气用户列表 * 导出燃气用户列表
*/ */
......
...@@ -97,7 +97,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter ...@@ -97,7 +97,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
// 过滤请求 // 过滤请求
.authorizeRequests() .authorizeRequests()
// 对于登录login 验证码captchaImage 允许匿名访问 // 对于登录login 验证码captchaImage 允许匿名访问
.antMatchers("/login", "/captchaImage").anonymous() .antMatchers("/login", "/captchaImage", "/detector/detectorReport/**").anonymous()
.antMatchers( .antMatchers(
HttpMethod.GET, HttpMethod.GET,
"/*.html", "/*.html",
......
package com.zehong.system.domain;
import java.util.List;
public class DeviceDataList {
private List<DeviceData> data;
public List<DeviceData> getData() {
return data;
}
public void setData(List<DeviceData> data) {
this.data = data;
}
@Override
public String toString() {
return "DeviceDataList{" +
"data=" + data +
'}';
}
}
...@@ -43,6 +43,8 @@ public class PipeDate extends BaseEntity { ...@@ -43,6 +43,8 @@ public class PipeDate extends BaseEntity {
private int iconType; private int iconType;
public String getPipeId() { public String getPipeId() {
return pipeId; return pipeId;
} }
......
...@@ -25,11 +25,11 @@ public class TPipeInfo extends BaseEntity ...@@ -25,11 +25,11 @@ public class TPipeInfo extends BaseEntity
/** 管径 */ /** 管径 */
@Excel(name = "管径") @Excel(name = "管径")
private BigDecimal pipeDiameter; private String pipeDiameter;
/** 压力 */ /** 压力 */
@Excel(name = "压力") @Excel(name = "压力")
private BigDecimal pipePressure; private String pipePressure;
/** 材质 */ /** 材质 */
@Excel(name = "材质") @Excel(name = "材质")
...@@ -41,7 +41,7 @@ public class TPipeInfo extends BaseEntity ...@@ -41,7 +41,7 @@ public class TPipeInfo extends BaseEntity
/** 埋深 */ /** 埋深 */
@Excel(name = "埋深") @Excel(name = "埋深")
private BigDecimal buriedDepth; private String buriedDepth;
/** 走向 */ /** 走向 */
@Excel(name = "走向") @Excel(name = "走向")
...@@ -103,55 +103,50 @@ public class TPipeInfo extends BaseEntity ...@@ -103,55 +103,50 @@ public class TPipeInfo extends BaseEntity
this.pipeLength = pipeLength; this.pipeLength = pipeLength;
} }
public BigDecimal getPipeLength() public BigDecimal getPipeLength() {
{
return pipeLength; return pipeLength;
} }
public void setPipeDiameter(BigDecimal pipeDiameter)
{
this.pipeDiameter = pipeDiameter;
}
public BigDecimal getPipeDiameter() public String getPipeDiameter() {
{
return pipeDiameter; return pipeDiameter;
} }
public void setPipePressure(BigDecimal pipePressure)
{ public void setPipeDiameter(String pipeDiameter) {
this.pipePressure = pipePressure; this.pipeDiameter = pipeDiameter;
} }
public BigDecimal getPipePressure() public String getPipePressure() {
{
return pipePressure; return pipePressure;
} }
public void setPipeMaterial(String pipeMaterial)
{ public void setPipePressure(String pipePressure) {
this.pipeMaterial = pipeMaterial; this.pipePressure = pipePressure;
} }
public String getPipeMaterial() public String getPipeMaterial() {
{
return pipeMaterial; return pipeMaterial;
} }
public void setPipeAddr(String pipeAddr)
{ public void setPipeMaterial(String pipeMaterial) {
this.pipeAddr = pipeAddr; this.pipeMaterial = pipeMaterial;
} }
public String getPipeAddr() public String getPipeAddr() {
{
return pipeAddr; return pipeAddr;
} }
public void setBuriedDepth(BigDecimal buriedDepth)
{ public void setPipeAddr(String pipeAddr) {
this.buriedDepth = buriedDepth; this.pipeAddr = pipeAddr;
} }
public BigDecimal getBuriedDepth() public String getBuriedDepth() {
{
return buriedDepth; return buriedDepth;
} }
public void setBuriedDepth(String buriedDepth) {
this.buriedDepth = buriedDepth;
}
public void setPipeTrend(String pipeTrend) public void setPipeTrend(String pipeTrend)
{ {
this.pipeTrend = pipeTrend; this.pipeTrend = pipeTrend;
......
...@@ -28,6 +28,16 @@ public class TSiteStationInfoData { ...@@ -28,6 +28,16 @@ public class TSiteStationInfoData {
private int iconType; private int iconType;
private String companyType;
public String getCompanyType() {
return companyType;
}
public void setCompanyType(String companyType) {
this.companyType = companyType;
}
public int getIconType() { public int getIconType() {
return iconType; return iconType;
} }
...@@ -139,6 +149,7 @@ public class TSiteStationInfoData { ...@@ -139,6 +149,7 @@ public class TSiteStationInfoData {
", powerCompany='" + powerCompany + '\'' + ", powerCompany='" + powerCompany + '\'' +
", pressureFlows=" + pressureFlows + ", pressureFlows=" + pressureFlows +
", iconType=" + iconType + ", iconType=" + iconType +
", companyType='" + companyType + '\'' +
'}'; '}';
} }
} }
package com.zehong.system.domain;
import java.util.List;
public class TenterpriseInfoDataList {
private List<TdetectorUserData> data;
public List<TdetectorUserData> getData() {
return data;
}
public void setData(List<TdetectorUserData> data) {
this.data = data;
}
@Override
public String toString() {
return "TenterpriseInfoDataList{" +
"data=" + data +
'}';
}
}
...@@ -71,5 +71,5 @@ public interface PipeInterfaceMapper { ...@@ -71,5 +71,5 @@ public interface PipeInterfaceMapper {
* 查询阀门井数据 * 查询阀门井数据
* @return * @return
*/ */
List<PipeDate> selectvalveData(); List<DeviceData> selectvalveData();
} }
...@@ -68,5 +68,5 @@ public interface IPipeInterfaceService { ...@@ -68,5 +68,5 @@ public interface IPipeInterfaceService {
* 查询阀门井数据 * 查询阀门井数据
* @return * @return
*/ */
List<PipeDate> selectvalveData(); List<DeviceData> selectvalveData();
} }
...@@ -112,8 +112,8 @@ public class PipeInterfaceServiceImpl implements IPipeInterfaceService { ...@@ -112,8 +112,8 @@ public class PipeInterfaceServiceImpl implements IPipeInterfaceService {
* @return * @return
*/ */
@Override @Override
public List<PipeDate> selectvalveData() { public List<DeviceData> selectvalveData() {
List<PipeDate> pipeDates = pipeInterfaceMapper.selectvalveData(); List<DeviceData> pipeDates = pipeInterfaceMapper.selectvalveData();
return pipeDates; return pipeDates;
} }
} }
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
<result property="path" column="coordinates" /> <result property="path" column="coordinates" />
<result property="buildCompany" column="build_unit" /> <result property="buildCompany" column="build_unit" />
<result property="powerCompany" column="beyond_enterprise_name" /> <result property="powerCompany" column="beyond_enterprise_name" />
<result property="companyType" column="beyond_enterprise_id" />
</resultMap> </resultMap>
<!--调压箱--> <!--调压箱-->
...@@ -28,6 +29,7 @@ ...@@ -28,6 +29,7 @@
<result property="latitude" column="latitude" /> <result property="latitude" column="latitude" />
<result property="companyType" column="device_id" /> <result property="companyType" column="device_id" />
<result property="beyondEnterpriseName" column="beyond_enterprise_name" /> <result property="beyondEnterpriseName" column="beyond_enterprise_name" />
<result property="companyType" column="beyond_enterprise_id" />
</resultMap> </resultMap>
<!--下级设备数据--> <!--下级设备数据-->
...@@ -48,6 +50,7 @@ ...@@ -48,6 +50,7 @@
<result property="buildyear" column="create_time" /> <result property="buildyear" column="create_time" />
<result property="buildCompany" column="build_unit" /> <result property="buildCompany" column="build_unit" />
<result property="powerCompany" column="beyond_enterprise_name" /> <result property="powerCompany" column="beyond_enterprise_name" />
<result property="companyType" column="beyond_enterprise_id" />
</resultMap> </resultMap>
<!--监控数据--> <!--监控数据-->
...@@ -60,6 +63,7 @@ ...@@ -60,6 +63,7 @@
<result property="latitude" column="latitude" /> <result property="latitude" column="latitude" />
<result property="videoAddress" column="video_address" /> <result property="videoAddress" column="video_address" />
<result property="type" column="type" /> <result property="type" column="type" />
<result property="companyType" column="beyond_enterprise_id" />
</resultMap> </resultMap>
<!--燃气用户数据--> <!--燃气用户数据-->
...@@ -70,7 +74,6 @@ ...@@ -70,7 +74,6 @@
<result property="latitude" column="latitude" /> <result property="latitude" column="latitude" />
<result property="phone" column="phone" /> <result property="phone" column="phone" />
<result property="address" column="address" /> <result property="address" column="address" />
<result property="companyType" column="user_id" />
</resultMap> </resultMap>
<!--查询企业名称id--> <!--查询企业名称id-->
...@@ -81,20 +84,20 @@ ...@@ -81,20 +84,20 @@
<!--查询管道数据列表--> <!--查询管道数据列表-->
<select id="selectPipeData" parameterType="PipeDate" resultMap="PipeDateResult"> <select id="selectPipeData" parameterType="PipeDate" resultMap="PipeDateResult">
select pipe_id,pipe_diameter,pipe_material,buried_depth,pipe_trend,build_date,pipe_addr,coordinates,remarks,build_unit,beyond_enterprise_name from t_pipe_info select beyond_enterprise_id,pipe_id,pipe_diameter,pipe_material,buried_depth,pipe_trend,build_date,pipe_addr,coordinates,remarks,build_unit,beyond_enterprise_name from t_pipe_info
where is_del='0' where is_del='0'
</select> </select>
<!--获取分组数据--> <!--获取分组数据-->
<select id="selectGroupPipeData" parameterType="PipeDate" resultMap="PipeDateResult"> <select id="selectGroupPipeData" parameterType="PipeDate" resultMap="PipeDateResult">
select pipe_id,pipe_diameter,pipe_material,buried_depth,pipe_trend,build_date,pipe_addr,coordinates,remarks,build_unit,beyond_enterprise_name from t_pipe_info select beyond_enterprise_id,pipe_id,pipe_diameter,pipe_material,buried_depth,pipe_trend,build_date,pipe_addr,coordinates,remarks,build_unit,beyond_enterprise_name from t_pipe_info
where is_del='0' where is_del='0'
group by beyond_enterprise_name group by beyond_enterprise_name
</select> </select>
<!--调压箱数据查询方法--> <!--调压箱数据查询方法-->
<select id="selectDeviceData" resultMap="DeviceDateResult"> <select id="selectDeviceData" resultMap="DeviceDateResult">
select device_id,device_type,device_name,device_code,device_addr,longitude,latitude,beyond_enterprise_name from t_device_info select beyond_enterprise_id,device_id,device_type,device_name,device_code,device_addr,longitude,latitude,beyond_enterprise_name from t_device_info
where device_type='2' and is_del='0' where device_type='2' and is_del='0'
</select> </select>
...@@ -106,7 +109,7 @@ ...@@ -106,7 +109,7 @@
<!--场站信息查询方法--> <!--场站信息查询方法-->
<select id="selectTSiteStationInfoData" resultMap="TSiteStationInfoDataResult"> <select id="selectTSiteStationInfoData" resultMap="TSiteStationInfoDataResult">
select site_station_id,site_station_name,site_station_type,longitude,latitude,create_time,build_unit,beyond_enterprise_name select beyond_enterprise_id,site_station_id,site_station_name,site_station_type,longitude,latitude,create_time,build_unit,beyond_enterprise_name
from t_site_station_info where is_del='0' from t_site_station_info where is_del='0'
</select> </select>
...@@ -118,13 +121,13 @@ ...@@ -118,13 +121,13 @@
<!--监控信息查询--> <!--监控信息查询-->
<select id="selectTvideoManagerData" resultMap="TvideoManagerDataResult"> <select id="selectTvideoManagerData" resultMap="TvideoManagerDataResult">
select video_manager_id,video_name,resource_id,longitude,latitude,video_address,type from t_video_manager select beyond_enterprise_id,video_manager_id,video_name,resource_id,longitude,latitude,video_address,type from t_video_manager
where is_del='0' where is_del='0'
</select> </select>
<!--燃气用户信息查询接口--> <!--燃气用户信息查询接口-->
<select id="selectTdetectorUser" resultMap="TdetectorUserDataResult"> <select id="selectTdetectorUser" resultMap="TdetectorUserDataResult">
select nick_name,user_type,longitude,latitude,phone,address,user_id from t_detector_user select nick_name,user_type,longitude,latitude,phone,address from t_detector_user
where is_del='0' where is_del='0'
</select> </select>
...@@ -135,7 +138,7 @@ ...@@ -135,7 +138,7 @@
<!--查询阀门井数据--> <!--查询阀门井数据-->
<select id="selectvalveData" resultMap="DeviceDateResult"> <select id="selectvalveData" resultMap="DeviceDateResult">
select device_id,device_type,device_name,device_code,device_addr,longitude,latitude,beyond_enterprise_name from t_device_info select beyond_enterprise_id,device_id,device_type,device_name,device_code,device_addr,longitude,latitude,beyond_enterprise_name from t_device_info
where device_type='1' and is_del='0' where device_type='1' and is_del='0'
</select> </select>
......
/*
* @Author: your name
* @Date: 2022-02-23 15:28:07
* @LastEditTime: 2022-02-25 18:43:58
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/api/bigWindow/getdevice.js
*/
import request from '@/utils/request'
// 查询管道
export function getPipe(query) {
return request({
url: '/pipe/pipe/selectPipeData',
method: 'get',
params: query
})
}
// 调压箱
export function getTyx(query) {
return request({
url: '/pipe/pipe/selectDeviceData',
method: 'get',
params: query
})
}
// 是阀门
export function getFm(query) {
return request({
url: '/pipe/pipe/selectvalveData',
method: 'get',
params: query
})
}
// 厂站
export function getCz(query) {
return request({
url: '/pipe/pipe/selectTSiteStationInfoData',
method: 'get',
params: query
})
}
// 监控
export function getVideo(query) {
return request({
url: '/pipe/pipe/selectTvideoManagerData',
method: 'get',
params: query
})
}
// 燃气用户接口
export function getUser(query) {
return request({
url: '/pipe/pipe/selectTdetectorUser',
method: 'get',
params: query
})
}
// 获取公司名称以及id
export function getCompany(query) {
return request({
url: '/pipe/pipe/selectTenterpriseInfoData',
method: 'get',
params: query
})
}
\ No newline at end of file
...@@ -3,7 +3,7 @@ import request from '@/utils/request' ...@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询探测器用户列表 // 查询探测器用户列表
export function listDetectorUser(query) { export function listDetectorUser(query) {
return request({ return request({
url: '/detector/detectorUser/list', url: '/supervise/user/list',
method: 'get', method: 'get',
params: query params: query
}) })
...@@ -12,7 +12,7 @@ export function listDetectorUser(query) { ...@@ -12,7 +12,7 @@ export function listDetectorUser(query) {
// 探测器用户列表 // 探测器用户列表
export function detectorUserList(query) { export function detectorUserList(query) {
return request({ return request({
url: '/detector/detectorUser/detectorUserList', url: '/supervise/user/detectorUserList',
method: 'get', method: 'get',
params: query params: query
}) })
...@@ -21,7 +21,7 @@ export function detectorUserList(query) { ...@@ -21,7 +21,7 @@ export function detectorUserList(query) {
// 查询探测器用户详细 // 查询探测器用户详细
export function getDetectorUser(userId) { export function getDetectorUser(userId) {
return request({ return request({
url: '/detector/detectorUser/' + userId, url: '/supervise/user/' + userId,
method: 'get' method: 'get'
}) })
} }
...@@ -29,7 +29,7 @@ export function getDetectorUser(userId) { ...@@ -29,7 +29,7 @@ export function getDetectorUser(userId) {
// 新增探测器用户 // 新增探测器用户
export function addDetectorUser(data) { export function addDetectorUser(data) {
return request({ return request({
url: '/detector/detectorUser', url: '/supervise/user',
method: 'post', method: 'post',
data: data data: data
}) })
...@@ -38,7 +38,7 @@ export function addDetectorUser(data) { ...@@ -38,7 +38,7 @@ export function addDetectorUser(data) {
// 修改探测器用户 // 修改探测器用户
export function updateDetectorUser(data) { export function updateDetectorUser(data) {
return request({ return request({
url: '/detector/detectorUser', url: '/supervise/user',
method: 'put', method: 'put',
data: data data: data
}) })
...@@ -47,7 +47,7 @@ export function updateDetectorUser(data) { ...@@ -47,7 +47,7 @@ export function updateDetectorUser(data) {
// 删除探测器用户 // 删除探测器用户
export function delDetectorUser(userId) { export function delDetectorUser(userId) {
return request({ return request({
url: '/detector/detectorUser/' + userId, url: '/supervise/user/' + userId,
method: 'delete' method: 'delete'
}) })
} }
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2022-01-26 20:07:52 * @Date: 2022-01-26 20:07:52
* @LastEditTime: 2022-02-17 10:13:02 * @LastEditTime: 2022-02-25 18:34:00
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
...@@ -62,22 +62,22 @@ ...@@ -62,22 +62,22 @@
</div> </div>
<div class="tbody flex"> <div class="tbody flex">
<div class="first zzz">{{ "流量计与压力表" }}</div> <div class="first zzz">{{ "流量计与压力表" }}</div>
<div class="">{{ deviceData.pressureFlow.length }}</div> <div class="">{{ deviceData.pressureFlows.length }}</div>
<div class=""> <div class="">
{{ (Math.random() * deviceData.pressureFlow.length) >> 1 }} {{ (Math.random() * deviceData.pressureFlows.length) >> 1 }}
</div> </div>
<div class=""> <div class="">
{{ (Math.random() * deviceData.pressureFlow.length) >> 1 }} {{ (Math.random() * deviceData.pressureFlows.length) >> 1 }}
</div> </div>
<div class=""> <div class="">
{{ (Math.random() * deviceData.pressureFlow.length) >> 1 }} {{ (Math.random() * deviceData.pressureFlows.length) >> 1 }}
</div> </div>
<div class=""> <div class="">
{{ (Math.random() * deviceData.pressureFlow.length) >> 1 }} {{ (Math.random() * deviceData.pressureFlows.length) >> 1 }}
</div> </div>
<div class="last zzz"> <div class="last zzz">
{{ {{
deviceData.pressureFlow.filter((item) => { deviceData.pressureFlows.filter((item) => {
return item.deviceState == 2; return item.deviceState == 2;
}).length }).length
}} }}
...@@ -102,12 +102,29 @@ export default { ...@@ -102,12 +102,29 @@ export default {
"公司位于长江三角洲经济快速增长、风景秀丽的太湖之畔——无锡。 公司自1984年成立至今,已经过了3次跨越式的发展。2004年至今公司投入5000多万元资金建设新的生产基地,目前已竣工并投入生产,占地面积达40000m2,厂房面积近15000m2。公司2004年的年产值达4350多万元,并且每年以平均30%的速度快速增长。", "公司位于长江三角洲经济快速增长、风景秀丽的太湖之畔——无锡。 公司自1984年成立至今,已经过了3次跨越式的发展。2004年至今公司投入5000多万元资金建设新的生产基地,目前已竣工并投入生产,占地面积达40000m2,厂房面积近15000m2。公司2004年的年产值达4350多万元,并且每年以平均30%的速度快速增长。",
}; };
}, },
computed: {
prodTest() {
return this.vueRoot.$store.state.user.systemSetting.prod_test;
},
company() {
return this.vueRoot.$store.state.bigWindowCompany.company;
},
},
mounted() {
// 如果不是测试,而是真数据,就要用帧数据的东西
if (this.prodTest != "test") {
this.companyType = {};
this.company.forEach((item) => {
this.companyType[item.conpanyId] = item.companyName;
});
}
},
methods: { methods: {
close() { close() {
this.mapClass.infowindowClose(); this.mapClass.infowindowClose();
}, },
btnClick() { btnClick() {
this.vueRoot.centerDataFunc(this.deviceData.pressureFlow); this.vueRoot.centerDataFunc(this.deviceData.pressureFlows);
}, },
}, },
}; };
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2022-01-27 14:25:45 * @Date: 2022-01-27 14:25:45
* @LastEditTime: 2022-02-17 10:11:42 * @LastEditTime: 2022-02-25 17:53:43
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /hello-world/src/views/components/User.vue * @FilePath: /hello-world/src/views/components/User.vue
...@@ -26,8 +26,8 @@ ...@@ -26,8 +26,8 @@
<div class="group flex"> <div class="group flex">
<div class="left first">管道压力:</div> <div class="left first">管道压力:</div>
<div :title="deviceData.address" class="right zzz"> <div :title="deviceData.pipePressure" class="right zzz">
{{ pipePressure[deviceData.pipePressure] }} {{ pipePressure[deviceData.pipePressure + 1] }}
</div> </div>
<div class="left">所属公司:</div> <div class="left">所属公司:</div>
<div class="right last">{{ companyType[deviceData.companyType] }}</div> <div class="right last">{{ companyType[deviceData.companyType] }}</div>
...@@ -44,7 +44,9 @@ ...@@ -44,7 +44,9 @@
<div class="left first">管道走向:</div> <div class="left first">管道走向:</div>
<div class="right">{{ deviceData.pipeTrend }}</div> <div class="right">{{ deviceData.pipeTrend }}</div>
<div class="left">权属单位:</div> <div class="left">权属单位:</div>
<div :title="deviceData.powerCompany" class="right last zzz">{{ deviceData.powerCompany }}</div> <div :title="deviceData.powerCompany" class="right last zzz">
{{ deviceData.powerCompany }}
</div>
</div> </div>
<div class="group flex"> <div class="group flex">
<div class="first left">建设年代:</div> <div class="first left">建设年代:</div>
...@@ -53,10 +55,13 @@ ...@@ -53,10 +55,13 @@
<div class="last right">{{ deviceData.buildCompany }}</div> <div class="last right">{{ deviceData.buildCompany }}</div>
</div> </div>
<div class="group flex"> <div class="group flex">
<div class="first once left">管道位置:</div> <div class="first once left">管道位置:</div>
<div :title="deviceData.pipeAddr" class=" last pipeAddr right zzz"> <div
v-unValue
:title="deviceData.pipeAddr"
class="last pipeAddr right zzz"
>
{{ deviceData.pipeAddr }} {{ deviceData.pipeAddr }}
</div> </div>
</div> </div>
...@@ -65,7 +70,6 @@ ...@@ -65,7 +70,6 @@
<script> <script>
import { companyType, pipePressure } from "@/utils/mapClass/config.js"; import { companyType, pipePressure } from "@/utils/mapClass/config.js";
export default { export default {
data() { data() {
return { return {
...@@ -73,6 +77,24 @@ export default { ...@@ -73,6 +77,24 @@ export default {
pipePressure, pipePressure,
}; };
}, },
computed:{
prodTest(){
return this.vueRoot.$store.state.user.systemSetting.prod_test
},
company(){
return this.vueRoot.$store.state.bigWindowCompany.company;
}
},
mounted(){
// 如果不是测试,而是真数据,就要用帧数据的东西
if(this.prodTest !="test"){
this.companyType={};
this.company.forEach(item=>{
this.companyType[item.conpanyId] = item.companyName;
})
}
},
methods: { methods: {
close() { close() {
this.mapClass.infowindowClose(); this.mapClass.infowindowClose();
...@@ -125,12 +147,12 @@ export default { ...@@ -125,12 +147,12 @@ export default {
.last { .last {
border: none; border: none;
} }
.once{ .once {
flex:1; flex: 1;
} }
.pipeAddr{ .pipeAddr {
flex:3; flex: 3;
padding:0 3em 0 1em; padding: 0 3em 0 1em;
} }
} }
.flex { .flex {
......
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
<div class="group flex first"> <div class="group flex first">
<div class="left">用户姓名:</div> <div class="left">用户姓名:</div>
<div :title="deviceData.usrName" class="right zzz">{{ deviceData.usrName }}</div> <div :title="deviceData.usrName" class="right zzz">
{{ deviceData.usrName }}
</div>
</div> </div>
<div class="group flex"> <div class="group flex">
...@@ -39,6 +41,7 @@ ...@@ -39,6 +41,7 @@
<script> <script>
import { companyType } from "@/utils/mapClass/config.js"; import { companyType } from "@/utils/mapClass/config.js";
import { mapGetters } from "vuex";
export default { export default {
data() { data() {
...@@ -46,6 +49,23 @@ export default { ...@@ -46,6 +49,23 @@ export default {
companyType, companyType,
}; };
}, },
computed: {
prodTest() {
return this.vueRoot.$store.state.user.systemSetting.prod_test;
},
company() {
return this.vueRoot.$store.state.bigWindowCompany.company;
},
},
mounted() {
// 如果不是测试,而是真数据,就要用帧数据的东西
if (this.prodTest != "test") {
this.companyType = {};
this.company.forEach((item) => {
this.companyType[item.conpanyId] = item.companyName;
});
}
},
methods: { methods: {
close() { close() {
this.mapClass.infowindowClose(); this.mapClass.infowindowClose();
...@@ -73,18 +93,17 @@ export default { ...@@ -73,18 +93,17 @@ export default {
} }
.group { .group {
border: 1px solid #cccccc; border: 1px solid #cccccc;
border-top:none; border-top: none;
height: 28px; height: 28px;
font-size: 14px; font-size: 14px;
line-height: 28px; line-height: 28px;
color: #ffffff; color: #ffffff;
&.first { &.first {
border-top:1px solid #cccccc; border-top: 1px solid #cccccc;
margin-top: 10px; margin-top: 10px;
} }
div { div {
flex: 1; flex: 1;
} }
.left { .left {
border-right: 1px solid #cccccc; border-right: 1px solid #cccccc;
...@@ -94,7 +113,7 @@ export default { ...@@ -94,7 +113,7 @@ export default {
.right { .right {
box-sizing: border-box; box-sizing: border-box;
text-align: left; text-align: left;
padding:0 1em; padding: 0 1em;
} }
} }
.flex { .flex {
......
/*
* @Author: your name
* @Date: 2022-01-07 11:29:13
* @LastEditTime: 2022-02-25 17:17:17
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/directive/permission/index.js
*/
import hasRole from './hasRole' import hasRole from './hasRole'
import hasPermi from './hasPermi' import hasPermi from './hasPermi'
import unValue from './unValue'
const install = function(Vue) { const install = function(Vue) {
Vue.directive('hasRole', hasRole) Vue.directive('hasRole', hasRole)
Vue.directive('hasPermi', hasPermi) Vue.directive('hasPermi', hasPermi)
Vue.directive('unValue', unValue)
} }
if (window.Vue) { if (window.Vue) {
......
/*
* @Author: your name
* @Date: 2022-02-25 17:07:40
* @LastEditTime: 2022-02-25 17:15:54
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/directive/permission/hasValue.js
*/
/**
* 无内容显示-
* Copyright (c) 2021 gassafety
*/
export default {
inserted(el, binding, vnode) {
console.log("el",el)
el.innerHTML = el.innerHTML.replace(/\s+/g, "") ? el.innerHTML : "-";
}
};
/*
* @Author: your name
* @Date: 2022-01-07 11:29:13
* @LastEditTime: 2022-02-25 15:36:12
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/store/getters.js
*/
const getters = { const getters = {
sidebar: state => state.app.sidebar, sidebar: state => state.app.sidebar,
size: state => state.app.size, size: state => state.app.size,
...@@ -10,9 +18,11 @@ const getters = { ...@@ -10,9 +18,11 @@ const getters = {
introduction: state => state.user.introduction, introduction: state => state.user.introduction,
roles: state => state.user.roles, roles: state => state.user.roles,
permissions: state => state.user.permissions, permissions: state => state.user.permissions,
systemSetting: state => state.user.systemSetting,
permission_routes: state => state.permission.routes, permission_routes: state => state.permission.routes,
topbarRouters:state => state.permission.topbarRouters, topbarRouters:state => state.permission.topbarRouters,
defaultRoutes:state => state.permission.defaultRoutes, defaultRoutes:state => state.permission.defaultRoutes,
sidebarRouters:state => state.permission.sidebarRouters, sidebarRouters:state => state.permission.sidebarRouters,
company:state=>state.bigWindowCompany.company,
} }
export default getters export default getters
/*
* @Author: your name
* @Date: 2022-01-07 11:29:13
* @LastEditTime: 2022-02-25 15:36:22
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/store/index.js
*/
import Vue from 'vue' import Vue from 'vue'
import Vuex from 'vuex' import Vuex from 'vuex'
import app from './modules/app' import app from './modules/app'
import user from './modules/user' import user from './modules/user'
import bigWindowCompany from './modules/bigWindowCompany'
import tagsView from './modules/tagsView' import tagsView from './modules/tagsView'
import permission from './modules/permission' import permission from './modules/permission'
import settings from './modules/settings' import settings from './modules/settings'
...@@ -15,7 +25,8 @@ const store = new Vuex.Store({ ...@@ -15,7 +25,8 @@ const store = new Vuex.Store({
user, user,
tagsView, tagsView,
permission, permission,
settings settings,
bigWindowCompany
}, },
getters getters
}) })
......
/*
* @Author: your name
* @Date: 2022-02-25 13:53:11
* @LastEditTime: 2022-02-25 15:01:59
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /newDev/gassafety-progress/gassafetyprogress-web/src/store/modules/bigWindowDevice.js
*/
import { getCompany } from "@/api/bigWindow/getDevice";
const state = {
// 公司名称
company: {},
};
const mutations = {
SET_COMPANY: (state, company) => {
state.company = company.map((item) => ({
conpanyId: item.enterpriseId,
companyName: item.enterpriseName,
}));
console.log(state.company);
},
};
const actions = {
// 登录
GetCompany({ commit }) {
getCompany().then((res) => {
commit("SET_COMPANY", res);
});
},
};
export default {
namespaced: true,
state,
mutations,
actions,
};
...@@ -57,9 +57,8 @@ const user = { ...@@ -57,9 +57,8 @@ const user = {
}) })
}) })
}, },
// 获取用户信息 // 获取用户信息
GetInfo({ commit, state }) { GetInfo({ commit, state,dispatch}) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
getInfo().then(res => { getInfo().then(res => {
const user = res.user const user = res.user
...@@ -77,6 +76,12 @@ const user = { ...@@ -77,6 +76,12 @@ const user = {
commit('SET_SYSTEMSETTING', res.systemSetting) commit('SET_SYSTEMSETTING', res.systemSetting)
commit('SET_POSTS',res.posts) commit('SET_POSTS',res.posts)
commit('SET_ENTERPRISEID',user.deptId) commit('SET_ENTERPRISEID',user.deptId)
// 大屏公司获取
// 第一个参数是其他模块的 actions 路径,
// 第二个是传给 actions 的数据, 如果不需要传数据, 也必须预留,
// 第三个参数是配置选项, 申明这个 acitons 不是当前模块的
dispatch("bigWindowCompany/GetCompany",{},{root:true})
console.log(res.systemSetting) console.log(res.systemSetting)
resolve(res) resolve(res)
}).catch(error => { }).catch(error => {
......
/* /*
* @Author: your name * @Author: your name
* @Date: 2022-01-11 13:45:12 * @Date: 2022-01-11 13:45:12
* @LastEditTime: 2022-02-17 10:12:27 * @LastEditTime: 2022-02-26 09:55:44
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /test/hello-world/src/utils/mapClass.js * @FilePath: /test/hello-world/src/utils/mapClass.js
...@@ -31,7 +31,7 @@ export class EditorMap { ...@@ -31,7 +31,7 @@ export class EditorMap {
mouseToolPolineOptions = null; mouseToolPolineOptions = null;
// 存放所有的设备的数组集合,这是一个对象,对象里面是各种设备的数组 // 存放所有的设备的数组集合,这是一个对象,对象里面是各种设备的数组
allDevic = {}; allDevice = {};
// 存放所有的管道 // 存放所有的管道
pipeArr = {}; pipeArr = {};
// 当前的infowindow的组件 // 当前的infowindow的组件
...@@ -247,8 +247,8 @@ export class EditorMap { ...@@ -247,8 +247,8 @@ export class EditorMap {
* @return {*} * @return {*}
*/ */
addDevice(deviceData, compontent) { addDevice(deviceData, compontent) {
const { longitude: lng, latitude: lat, type, companyType } = deviceData; const { longitude: lng, latitude: lat, iconType } = deviceData;
const icon = svgUrl[type]; const icon = svgUrl[iconType];
let device = this.createMarker({ let device = this.createMarker({
map: this.map, map: this.map,
anchor: "bottom-center", anchor: "bottom-center",
...@@ -258,10 +258,10 @@ export class EditorMap { ...@@ -258,10 +258,10 @@ export class EditorMap {
}); });
// device.hide(); // device.hide();
// 如果没有有这个公司的数组,就创建,有就直接push // 如果没有有这个公司的数组,就创建,有就直接push
if (!Array.isArray(this.allDevic[companyType])) { if (!Array.isArray(this.allDevice[iconType])) {
this.allDevic[companyType] = []; this.allDevice[iconType] = [];
} }
this.allDevic[companyType].push(device); this.allDevice[iconType].push(device);
// 设备的事件函数 // 设备的事件函数
this.deviceEvent(device, compontent); this.deviceEvent(device, compontent);
...@@ -287,7 +287,9 @@ export class EditorMap { ...@@ -287,7 +287,9 @@ export class EditorMap {
*/ */
markerClick(target, compontent) { markerClick(target, compontent) {
const deviceExtData = target.getExtData(); const deviceExtData = target.getExtData();
const { longitude: lng, latitude: lat } = deviceExtData; const { longitude: lng, latitude: lat } = deviceExtData;
// 创建一个可以控制的组件,将其dom插入infowindow // 创建一个可以控制的组件,将其dom插入infowindow
this.infowindowComponent = this.createInfowindowDom( this.infowindowComponent = this.createInfowindowDom(
this.vue, this.vue,
...@@ -295,6 +297,7 @@ export class EditorMap { ...@@ -295,6 +297,7 @@ export class EditorMap {
deviceExtData, deviceExtData,
compontent compontent
); );
// 没恩么用,控制台测试的时候用着玩的 // 没恩么用,控制台测试的时候用着玩的
window.func = () => { window.func = () => {
const { longitude: lng, latitude: lat } = target.getExtData(); const { longitude: lng, latitude: lat } = target.getExtData();
...@@ -316,6 +319,7 @@ export class EditorMap { ...@@ -316,6 +319,7 @@ export class EditorMap {
anchor: "middle-left", anchor: "middle-left",
offset: [20, -10], offset: [20, -10],
}); });
this.infowindow.open(this.map); this.infowindow.open(this.map);
} }
// 创建要加入到infowindow里的 // 创建要加入到infowindow里的
...@@ -344,22 +348,25 @@ export class EditorMap { ...@@ -344,22 +348,25 @@ export class EditorMap {
} }
// 地图上add管道 // 地图上add管道
addPipeLine(objData, component) { addPipeLine(objData, component) {
const { path, pipePressure, companyType } = objData; const { path, pipePressure, iconType } = objData;
console.log(path);
// 根据压力获取颜色 // 根据压力获取颜色
const color = pipeColor[pipePressure]; const color = pipeColor[pipePressure + 1];
const pipe = this.createPipeLine({ const pipe = this.createPipeLine({
path, path: eval(path),
strokeWeight: 4, strokeWeight: 4,
strokeColor: color, strokeColor: color,
extData: objData, extData: objData,
cursor: "pointer", cursor: "pointer",
}); });
this.map.add(pipe); this.map.add(pipe);
console.log(pipe.getExtData());
// pipe.hide(); // pipe.hide();
if (!Array.isArray(this.pipeArr[companyType])) { if (!Array.isArray(this.pipeArr[iconType])) {
this.pipeArr[companyType] = []; this.pipeArr[iconType] = [];
} }
this.pipeArr[companyType].push(pipe); this.pipeArr[iconType].push(pipe);
// console.log(this.pipeArr); // console.log(this.pipeArr);
// this.map.panTo([path[0][0], path[0][1]]); // this.map.panTo([path[0][0], path[0][1]]);
this.pipeEvent(pipe, component); this.pipeEvent(pipe, component);
...@@ -380,7 +387,7 @@ export class EditorMap { ...@@ -380,7 +387,7 @@ export class EditorMap {
const target = e.target; const target = e.target;
// 根据管道压力获取颜色 // 根据管道压力获取颜色
const { pipePressure } = target.getExtData(); const { pipePressure } = target.getExtData();
const color = pipeColor[pipePressure]; const color = pipeColor[pipePressure + 1];
// 获取当前颜色 // 获取当前颜色
const options = target.getOptions(); const options = target.getOptions();
options.strokeColor = color; options.strokeColor = color;
...@@ -434,33 +441,56 @@ export class EditorMap { ...@@ -434,33 +441,56 @@ export class EditorMap {
this.infowindow.open(this.map); this.infowindow.open(this.map);
} }
infowindowClose() { infowindowClose() {
if(!this.infowindow) return; if (!this.infowindow) return;
this.infowindow.close(); this.infowindow.close();
} }
// 根据公司过滤是否显示 公司由一个数组传过来 // 根据公司过滤是否显示 公司由一个数组传过来
companyFilter(companyArr) { companyFilter(companyArr) {
for (let pipeItem in this.pipeArr) { for (let pipeItem in this.pipeArr) {
// 如果item属于数组说明要显示,凑则就是隐藏 // 如果item属于数组说明要显示,凑则就是隐藏
if (companyArr.indexOf(+pipeItem) >= 0) { // if (companyArr.indexOf(+pipeItem+'') >= 0) {
// this.pipeArr[pipeItem].forEach((pipe) => {
// pipe.show();
// });
// } else {
// this.pipeArr[pipeItem].forEach((pipe) => {
// pipe.hide();
// });
// }
this.pipeArr[pipeItem].forEach((pipe) => { this.pipeArr[pipeItem].forEach((pipe) => {
const data = pipe.getExtData();
if (companyArr.indexOf(data.companyType + "") >= 0) {
pipe.show(); pipe.show();
});
} else { } else {
this.pipeArr[pipeItem].forEach((pipe) => {
pipe.hide(); pipe.hide();
});
} }
});
} }
for (let deviceItem in this.allDevic) { for (let deviceItem in this.allDevice) {
if (companyArr.indexOf(+deviceItem) >= 0) { // if (companyArr.indexOf(+deviceItem+'') >= 0) {
this.allDevic[deviceItem].forEach((device) => { // this.allDevice[deviceItem].forEach((device) => {
// device.show();
// });
// } else {
// this.allDevice[deviceItem].forEach((device) => {
// device.hide();
// });
// }
console.log(this.allDevice);
this.allDevice[deviceItem].forEach((device) => {
const data = device.getExtData();
// 燃气没有公司,所以没有device.companyType不收到公司的控制
if (
companyArr.indexOf(data.companyType + "") >= 0 ||
!data.companyType
) {
device.show(); device.show();
});
} else { } else {
this.allDevic[deviceItem].forEach((device) => {
device.hide(); device.hide();
});
} }
});
} }
} }
// 卫星图切换 // 卫星图切换
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2022-01-11 13:44:17 * @Date: 2022-01-11 13:44:17
* @LastEditTime: 2022-02-22 15:09:22 * @LastEditTime: 2022-02-26 10:08:49
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /test/hello-world/src/views/Home.vue * @FilePath: /test/hello-world/src/views/Home.vue
...@@ -14,15 +14,11 @@ ...@@ -14,15 +14,11 @@
<PipeColor /> <PipeColor />
<!-- 底部按钮 --> <!-- 底部按钮 -->
<div class="home-div"> <div class="home-div">
<img <img src="@/assets/mapinages/bottombanner.png" alt="" style="" />
src="@/assets/mapinages/bottombanner.png"
alt=""
style="width: 100%; height: 100%; z-index: 999"
/>
<div class="listingsSty fangy"> <div class="listingsSty fangy">
<div <div
@click="allCompany" @click="allCompany"
:class="selarr.length == 3 ? 'active' : ''" :class="selarr.length == companyLength ? 'active' : ''"
class="firsty" class="firsty"
> >
全部 全部
...@@ -121,6 +117,7 @@ ...@@ -121,6 +117,7 @@
<script> <script>
// @ is an alias to /src // @ is an alias to /src
import { EditorMap } from "@/utils/mapClass/map"; import { EditorMap } from "@/utils/mapClass/map";
import { mapGetters, mapActions } from "vuex";
import { import {
pipeData, pipeData,
tiaoyaxiang, tiaoyaxiang,
...@@ -129,6 +126,14 @@ import { ...@@ -129,6 +126,14 @@ import {
jiankong, jiankong,
user, user,
} from "@/utils/mapClass/config.js"; } from "@/utils/mapClass/config.js";
import {
getPipe,
getTyx,
getFm,
getCz,
getVideo,
getUser,
} from "@/api/bigWindow/getDevice";
import Line from "@/components/bigWindow/Line.vue"; import Line from "@/components/bigWindow/Line.vue";
import VideoView from "@/components/bigWindow/VideoView.vue"; import VideoView from "@/components/bigWindow/VideoView.vue";
import DeviceA from "@/components/bigWindow/DeviceA.vue"; import DeviceA from "@/components/bigWindow/DeviceA.vue";
...@@ -204,41 +209,81 @@ export default { ...@@ -204,41 +209,81 @@ export default {
selarr1:[], selarr1:[],
}; };
}, },
computed: {
...mapGetters(["company", "systemSetting"]),
companyLength() {
return this.typeList.length;
},
},
watch: { watch: {
selarr(newValue) { selarr(newValue) {
if (newValue.length == 3) { if (newValue.length == this.companyLength) {
this.$refs.mychild.choice(0); this.$refs.mychild.choice(0);
this.$refs.mychild2.choice(0); this.$refs.mychild2.choice(0);
} }
}, },
}, },
mounted() { mounted() {
const path = eval(this.$store.state.user.systemSetting.map_center); // console.log(99999999999999)
// getPipe().then(res=>{
// console.log("成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功成功",res)
// }).catch(res=>{
// console.log(123)
// })
// return;
const path = eval(this.systemSetting.map_center);
this.map = new EditorMap( this.map = new EditorMap(
"map", "map",
{ {
center:path, center: path,
mapStyle: "amap://styles/f71d3a3d73e14f5b2bf5508bf1411758", mapStyle: "amap://styles/f71d3a3d73e14f5b2bf5508bf1411758",
zoom: 14.5, zoom: 14.5,
}, },
this this
); );
this.addPipeLine(); // 这是测试,用本地数据
if (this.systemSetting.prod_test === "test") {
this.addPipeLine(pipeData, Line);
this.addDevice(tiaoyaxiang, DeviceA); this.addDevice(tiaoyaxiang, DeviceA);
this.addDevice(famen, DeviceA); this.addDevice(famen, DeviceA);
this.addDevice(changzhan, DeviceA); this.addDevice(changzhan, DeviceA);
this.addDevice(user, User); this.addDevice(user, User);
this.addDevice(jiankong, VideoView); this.addDevice(jiankong, VideoView);
} else {
// 调用状态管理器方法获取公司信息每次都要调取,因为每次进来都是更新的
this.GetCompany();
this.typeList = this.company.map((item) => ({
val: item.conpanyId,
name: item.companyName,
}));
this.selarr = this.company.map((item) => item.conpanyId);
// getPipe() getTyx() getFm() getCz() getVideo() getUser()
this.goMap(getPipe, this.addPipeLine, Line);
this.goMap(getTyx, this.addDevice, DeviceA);
this.goMap(getFm, this.addDevice, DeviceA);
this.goMap(getCz, this.addDevice, DeviceA);
this.goMap(getVideo, this.addDevice, VideoView);
this.goMap(getUser, this.addDevice, User);
// getVideo().then((res) => {
// console.log("getVideo", res);
// });
}
this.currentTime(); this.currentTime();
this.$refs.mychild.choice(0); this.$refs.mychild.choice(0);
this.$refs.mychild2.choice(0); this.$refs.mychild2.choice(0);
}, },
methods: { methods: {
addPipeLine() { ...mapActions({
for (let comp in pipeData) { GetCompany: "bigWindowCompany/GetCompany",
pipeData[comp].forEach((pipe) => { }),
this.map.addPipeLine(pipe, Line); // 管道上图
addPipeLine(data, component) {
for (let comp in data) {
data[comp].forEach((pipe) => {
this.map.addPipeLine(pipe, component);
}); });
} }
}, },
...@@ -250,6 +295,20 @@ export default { ...@@ -250,6 +295,20 @@ export default {
}); });
} }
}, },
goMap(httpFunc, addFunc, component) {
httpFunc().then((res) => {
console.log("resresres", res);
// 根据数据格式不同,赋值不同,如果是个数组,就用res,如果不是就用res.data
let config = {};
if (Array.isArray(res)) {
config = { data: res };
} else {
config = { data: res.data };
}
addFunc(config, component);
});
},
centerShow(boolean) { centerShow(boolean) {
this.show = boolean; this.show = boolean;
}, },
...@@ -260,10 +319,10 @@ export default { ...@@ -260,10 +319,10 @@ export default {
}, },
allCompany() { allCompany() {
if (this.selarr.length == 3) { if (this.selarr.length == this.companyLength) {
this.selarr = []; this.selarr = [];
} else { } else {
this.selarr = [1, 2, 3]; this.selarr = this.company.map((item) => item.conpanyId);
} }
this.map.companyFilter(this.selarr); this.map.companyFilter(this.selarr);
...@@ -409,28 +468,36 @@ export default { ...@@ -409,28 +468,36 @@ export default {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
margin-left: 25%; margin-left: 25%;
z-index: 1000; // z-index: 1000;
img {
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
}
} }
.listingsSty { .listingsSty {
/* height: 25px; */ /* height: 25px; */
position: fixed; // position: fixed;
/* border: 1px solid #fff; */ /* border: 1px solid #fff; */
bottom: 0; margin-left: 25%;
margin-bottom: 10px; width: 50%;
width: 30%; display: flex;
margin-left: 10%; justify-content: space-between;
padding-top: 25px;
// font-family: 'arialbd'; // font-family: 'arialbd';
} }
.firsty { .firsty {
width: 15%; // width: 15%;
min-width: 80px;
height: 35px; height: 35px;
text-align: center; text-align: center;
line-height: 35px; line-height: 35px;
/* border: 1px solid #fff; */ /* border: 1px solid #fff; */
color: #fff; color: #fff;
font-size: 16px; font-size: 16px;
float: left; // float: left;
margin-left: 8%; // margin-left: 8%;
cursor: pointer; cursor: pointer;
// font-family: 'arialbd'; // font-family: 'arialbd';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment