Commit 2c241633 authored by lei's avatar lei

add:提升机后台管理

parent 36bbea09
import request from '@/utils/request' import request from '@/utils/request'
// 自动化控制密码修改 // 自动化控制状态和频率
export function autoPwdEdit(query) { export function getStatusFre(query) {
return request({ return request({
url: '/business/password/edit', url: '/business/peak/select',
method: 'post', method: 'get',
data: query data: query
}) })
} }
//排水系统设置峰谷返回值 //排水系统设置峰谷
export function peakGetDra(query) { export function getStatusIntervalTimeList(query) {
return request({ return request({
url: '/business/peak/getDra', url: '/business/peak/getStatusIntervalTimeList',
method: 'get', method: 'get',
data: query data: query
}) })
} }
export function peakEditDra(query) { //获取水仓设置
export function getStatusIntervalNumList(query) {
return request({ return request({
url: '/business/peak/add', url: '/business/peak/getStatusIntervalNumList',
method: 'post',
data: query
})
}
//报警短信设置
export function messageGetList(query) {
return request({
url: '/business/message/list',
method: 'get', method: 'get',
data: query data: query
}) })
} }
export function messageEdit(query) { //修改自动化排水系统参数
export function updateSysSet(query) {
return request({ return request({
url: '/business/message/add', url: '/business/peak/update',
method: 'post', method: 'post',
data: query data: query
}) })
} }
\ No newline at end of file
...@@ -49,6 +49,11 @@ ...@@ -49,6 +49,11 @@
</p> </p>
</div> </div>
</div> </div>
<!--温度-->
<div class="dlxt-wd">
<p>温度:33.20℃</p>
<p>湿度:51.00%RH</p>
</div>
</div> </div>
<div class="dlxt-bg dlxt-bg2" v-show="showBtn === 2"> <div class="dlxt-bg dlxt-bg2" v-show="showBtn === 2">
<!--电柜布局--> <!--电柜布局-->
...@@ -93,6 +98,11 @@ ...@@ -93,6 +98,11 @@
</p> </p>
</div> </div>
</div> </div>
<!--温度-->
<div class="dlxt-wd">
<p>温度:33.20℃</p>
<p>湿度:51.00%RH</p>
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -2140,6 +2150,29 @@ p { ...@@ -2140,6 +2150,29 @@ p {
.dlxt-tit-db13 { .dlxt-tit-db13 {
left: 1915px; left: 1915px;
} }
.dlxt-wd {
width: 285px;
height: 130px;
background: url("~@/assets/images/screen/dlxt/wd-bg2.png") no-repeat
center;
background-size: 100%;
position: absolute;
top: 30px;
left: 620px;
/* 新增以下居中样式 */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
p {
font-weight: 400;
font-size: 24px;
color: #f0ff01;
/* 原text-align可以移除,因为flex容器已控制对齐 */
width: 100%; /* 确保文本容器宽度充满父元素 */
text-align: center; /* 双重保障 */
}
}
} }
.dlxt-bg1 { .dlxt-bg1 {
background: url("~@/assets/images/screen/dlxt/bg2.png") no-repeat center; background: url("~@/assets/images/screen/dlxt/bg2.png") no-repeat center;
......
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item prop="deviceName">
<el-input
v-model="queryParams.deviceName"
placeholder="请输入采集设备名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
>删除</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="infoList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column type="index" label="序号" width="55" align="center" />
<el-table-column label="采集项名称" align="center" prop="deviceName" />
<el-table-column label="寄存器位置" align="center" prop="deviceId" />
<el-table-column
label="数据类型"
align="center"
prop="installationLocation"
/>
<el-table-column label="单位" align="center" prop="powerSupplyVoltage" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
fixed="right"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改风机基本信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="150px">
<el-form-item label="采集项名称" prop="deviceName">
<el-input v-model="form.deviceName" placeholder="请输入风机名称" />
</el-form-item>
<el-form-item label="寄存器位置" prop="deviceId">
<el-input v-model="form.deviceId" placeholder="请输入风机编号" />
</el-form-item>
<el-form-item label="数据类型" prop="installationLocation">
<el-input v-model="form.installationLocation" placeholder="" />
</el-form-item>
<el-form-item label="单位" prop="installationLocation">
<el-input v-model="form.installationLocation" placeholder="" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getFanInfo,
listFanInfo,
addFanInfo,
updateFanInfo,
delFanInfo,
} from "@/api/tyler/fanDev";
export default {
name: "Info",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 风机基本信息表格数据
infoList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
deviceName: null,
deviceId: null,
installationLocation: null,
powerSupplyVoltage: null,
motorCurrent: null,
operatingFrequency: null,
setFrequency: null,
windPressure: null,
windSpeed: null,
airVolume: null,
frontAxisTemperature: null,
rearAxisTemperature: null,
motorTemperature: null,
frontVibration: null,
rearVibration: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [{ required: true, message: "id不能为空", trigger: "blur" }],
deviceName: [
{ required: true, message: "风机名称不能为空", trigger: "blur" },
],
deviceId: [
{ required: true, message: "风机编号不能为空", trigger: "blur" },
],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询风机基本信息列表 */
getList() {
this.loading = true;
listFanInfo(this.queryParams).then((response) => {
this.infoList = [];
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
deviceName: null,
deviceId: null,
installationLocation: null,
powerSupplyVoltage: null,
motorCurrent: null,
operatingFrequency: null,
setFrequency: null,
windPressure: null,
windSpeed: null,
airVolume: null,
frontAxisTemperature: null,
rearAxisTemperature: null,
motorTemperature: null,
frontVibration: null,
rearVibration: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加风机基本信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getFanInfo(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改风机基本信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateFanInfo(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addFanInfo(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm('是否确认删除风机基本信息编号为"' + ids + '"的数据项?')
.then(function () {
return delFanInfo(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
},
};
</script>
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="状态名称">
<el-select
v-model="queryParams.cageSection"
style="width: 240px"
placeholder="请选择状态名称"
clearable
>
<el-option
v-for="item in deviceName"
:key="item.id"
:label="item.cageSection"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-date-picker
v-model="dateRange"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-divider content-position="left">运行实时状态</el-divider>
<el-table
:data="dataList"
style="width: 100%"
border
size="mini"
:row-key="getRowKey"
@selection-change="handleSelectionChange"
>
<el-table-column label="序号" type="index" width="55" align="center" />
<el-table-column label="状态名称" align="center" prop="mainSpeed" />
<el-table-column label="状态" align="center" prop="coderSpeed" />
<el-table-column label="时间" align="center" prop="slaveSpeed" />
</el-table>
</div>
</template>
<script>
import { queryHoistHisData, listHoistSelectData } from "@/api/tyler/hoistSys";
export default {
name: "Data",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 提升机历史数据表格数据
dataList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
cageSection: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
cageSection: [
{ required: true, message: "罐笼所在中段不能为空", trigger: "blur" },
],
},
deviceName: [],
dateRange: [],
};
},
created() {
this.getList();
},
methods: {
/** 查询提升机历史数据列表 */
getList() {
this.loading = true;
queryHoistHisData(
this.addDateRange(this.queryParams, this.dateRange)
).then((response) => {
this.dataList = [];
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {};
this.queryParams = {
pageNum: 1,
pageSize: 10,
cageSection: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
},
},
};
</script>
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="">
<el-date-picker
v-model="dateRange"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<!-- <el-table v-loading="loading" :data="dataList">
<el-table-column label="主控速度m/s" align="center" prop="mainSpeed" />
<el-table-column label="编码器速度m/s" align="center" prop="coderSpeed" />
<el-table-column label="给定速度m/s" align="center" prop="givenSpeed" />
<el-table-column
label="从编码器速度m/s"
align="center"
prop="slaveSpeed"
/>
<el-table-column label="主罐位置m" align="center" prop="position" />
<el-table-column
label="位置偏差m"
align="center"
prop="locationDeviation"
/>
<el-table-column label="电枢电流A" align="center" prop="motorCurrent" />
<el-table-column
label="磁场电流A"
align="center"
prop="runningPressure"
/>
<el-table-column
label="运行油压MPa"
align="center"
prop="controlPosition"
/>
<el-table-column
label="记录时间"
align="center"
prop="recordedAt"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.recordedAt) }}</span>
</template>
</el-table-column>
</el-table> -->
<el-row :gutter="20">
<el-col :span="14">
<el-divider content-position="left">运行实时数据</el-divider>
<el-table
:data="dataList"
style="width: 100%"
border
size="mini"
:row-key="getRowKey"
@selection-change="handleSelectionChange"
>
<el-table-column
label="序号"
type="index"
width="55"
align="center"
/>
<el-table-column label="运行数据项" align="center" prop="mainSpeed" />
<el-table-column label="值" align="center" prop="coderSpeed" />
<el-table-column label="单位" align="center" prop="givenSpeed" />
<el-table-column label="时间" align="center" prop="slaveSpeed" />
</el-table>
</el-col>
<el-col :span="10">
<el-divider content-position="left">运行实时状态</el-divider>
<el-table
:data="dataList"
style="width: 100%"
border
size="mini"
:row-key="getRowKey"
@selection-change="handleSelectionChange"
>
<el-table-column
label="序号"
type="index"
width="55"
align="center"
/>
<el-table-column label="状态名称" align="center" prop="mainSpeed" />
<el-table-column label="状态" align="center" prop="coderSpeed" />
<el-table-column label="时间" align="center" prop="slaveSpeed" />
</el-table>
</el-col>
</el-row>
</div>
</template>
<script>
import { queryHoistHisData, listHoistSelectData } from "@/api/tyler/hoistSys";
export default {
name: "Data",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 提升机历史数据表格数据
dataList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
cageSection: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [{ required: true, message: "$comment不能为空", trigger: "blur" }],
cageSection: [
{ required: true, message: "罐笼所在中段不能为空", trigger: "blur" },
],
},
deviceName: [],
dateRange: [],
};
},
created() {
this.getList();
},
methods: {
/** 查询提升机历史数据列表 */
getList() {
this.loading = true;
queryHoistHisData(
this.addDateRange(this.queryParams, this.dateRange)
).then((response) => {
this.dataList = [];
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {};
this.queryParams = {
pageNum: 1,
pageSize: 10,
cageSection: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRange = [];
this.resetForm("queryForm");
this.handleQuery();
},
},
};
</script>
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item prop="deviceName">
<el-input
v-model="queryParams.deviceName"
placeholder="请输入采集设备名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
>删除</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="infoList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column type="index" label="序号" width="55" align="center" />
<el-table-column label="变电站名称" align="center" prop="deviceName" />
<el-table-column label="电箱名称" align="center" prop="deviceId" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
fixed="right"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改风机基本信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="150px">
<el-form-item label="变电站名称" prop="deviceName">
<el-input v-model="form.deviceName" placeholder="请输入风机名称" />
</el-form-item>
<el-form-item label="电箱名称" prop="deviceId">
<el-input v-model="form.deviceId" placeholder="请输入风机编号" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getFanInfo,
listFanInfo,
addFanInfo,
updateFanInfo,
delFanInfo,
} from "@/api/tyler/fanDev";
export default {
name: "Info",
data() {
return {
// 根路径
baseURL: process.env.VUE_APP_BASE_API,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 风机基本信息表格数据
infoList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
deviceName: null,
deviceId: null,
installationLocation: null,
powerSupplyVoltage: null,
motorCurrent: null,
operatingFrequency: null,
setFrequency: null,
windPressure: null,
windSpeed: null,
airVolume: null,
frontAxisTemperature: null,
rearAxisTemperature: null,
motorTemperature: null,
frontVibration: null,
rearVibration: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
id: [{ required: true, message: "id不能为空", trigger: "blur" }],
deviceName: [
{ required: true, message: "风机名称不能为空", trigger: "blur" },
],
deviceId: [
{ required: true, message: "风机编号不能为空", trigger: "blur" },
],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询风机基本信息列表 */
getList() {
this.loading = true;
listFanInfo(this.queryParams).then((response) => {
this.infoList = [];
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
deviceName: null,
deviceId: null,
installationLocation: null,
powerSupplyVoltage: null,
motorCurrent: null,
operatingFrequency: null,
setFrequency: null,
windPressure: null,
windSpeed: null,
airVolume: null,
frontAxisTemperature: null,
rearAxisTemperature: null,
motorTemperature: null,
frontVibration: null,
rearVibration: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加风机基本信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getFanInfo(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改风机基本信息";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateFanInfo(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addFanInfo(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal
.confirm('是否确认删除风机基本信息编号为"' + ids + '"的数据项?')
.then(function () {
return delFanInfo(ids);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
},
};
</script>
This diff is collapsed.
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