|
|
@@ -10,12 +10,12 @@
|
|
|
<div class="panel">
|
|
|
<div class="panel-body">
|
|
|
<div class=" panel_control">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col :span="4">
|
|
|
+ <el-row :gutter="24">
|
|
|
+ <el-col :span="5">
|
|
|
<em>标签名:</em>
|
|
|
<el-input v-model="panel.tagname" placeholder="请输入标签名"></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="4">
|
|
|
+ <el-col :span="5">
|
|
|
<em>所属区域:</em>
|
|
|
<el-select v-model="panel.regionid">
|
|
|
<el-option
|
|
|
@@ -35,8 +35,8 @@
|
|
|
</div>
|
|
|
<div class="contorl">
|
|
|
<el-button size="small" type="primary" @click="addList">添加</el-button>
|
|
|
+ <el-button size="small" type="primary" @click="editList">修改</el-button>
|
|
|
<el-button size="small" type="primary" @click="delList">删除</el-button>
|
|
|
- <el-button size="small" type="primary" @click="changeList">修改</el-button>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
@@ -66,6 +66,13 @@
|
|
|
prop="Location"
|
|
|
label="位置"
|
|
|
>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tooltip class="item" effect="dark" :content="scope.row.Location" placement="top-start">
|
|
|
+ <span>
|
|
|
+ {{ scope.row.Location.length > 12 ? scope.row.Location.substr(0,12)+'...' : scope.row.Location }}
|
|
|
+ </span>
|
|
|
+ </el-tooltip>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="FirmwareVersion"
|
|
|
@@ -135,33 +142,65 @@
|
|
|
@dialog_ok="dialog_ok"
|
|
|
>
|
|
|
<div class="dialogContent">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col :span="10">
|
|
|
+ <el-row :gutter="24">
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
- MAC地址
|
|
|
+ MAC地址*
|
|
|
</label>
|
|
|
- <el-input v-model="dialog.name"></el-input>
|
|
|
+ <el-input v-model="dialog.mac" @keyup.native="autoCompleteMac"></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="10">
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
- 标签名
|
|
|
+ 标签名*
|
|
|
</label>
|
|
|
<el-input v-model="dialog.tagname "></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="10">
|
|
|
+ <el-col :span="12">
|
|
|
+ <label>
|
|
|
+ 硬件版本
|
|
|
+ </label>
|
|
|
+ <el-input v-model="dialog.HardwareVersion "></el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <label>
|
|
|
+ esp固件版本
|
|
|
+ </label>
|
|
|
+ <el-input v-model="dialog.FirmwareVersion "></el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <label>
|
|
|
+ M4固件版本
|
|
|
+ </label>
|
|
|
+ <el-input v-model="dialog.FirmwareScanM4Version "></el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <label>
|
|
|
+ M0固件版本
|
|
|
+ </label>
|
|
|
+ <el-input v-model="dialog.FirmwareScanM0Version "></el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <label>
|
|
|
+ 购买来源
|
|
|
+ </label>
|
|
|
+ <el-input v-model="dialog.purchasesrc"></el-input>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
设备所属区域
|
|
|
</label>
|
|
|
- <el-select class="selectStyle" v-model="dialog.regionlevelOneId" placeholder="请选择所属区域">
|
|
|
+ <el-select class="selectStyle" ref="regionlevelOne" v-model="dialog.regionlevelOneId"
|
|
|
+ placeholder="请选择所属区域">
|
|
|
<el-option
|
|
|
v-for="item in dialog.regionlevelOneIdOptions"
|
|
|
:key="item.Id"
|
|
|
:label="item.Name"
|
|
|
- :value="item.Id">
|
|
|
+ :value="item.Id"
|
|
|
+ >
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
- <el-col :span="10">
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
设备所属房间
|
|
|
</label>
|
|
|
@@ -170,32 +209,32 @@
|
|
|
v-for="item in dialog.regionIdRoomOptions"
|
|
|
:key="item.Id"
|
|
|
:label="item.Name"
|
|
|
- :value="item.Id">
|
|
|
+ :value="item.Id"
|
|
|
+ >
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
坐标说明
|
|
|
</label>
|
|
|
<el-input v-model="dialog.coords_memo "></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="12">
|
|
|
<label>
|
|
|
备注
|
|
|
</label>
|
|
|
<el-input type="textarea" v-model="dialog.memo"></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="24">
|
|
|
<label>
|
|
|
位置标注
|
|
|
</label>
|
|
|
<div class="imgContianer">
|
|
|
<img :src="dialog.plateImgSrc" alt="">
|
|
|
- <div class="pointers">
|
|
|
- <i></i>
|
|
|
- <i></i>
|
|
|
- <i></i>
|
|
|
+ <div class="pointers" @click="addPoint">
|
|
|
+ <i v-for="point in dialog.points"
|
|
|
+ :style="{left:point.x*1+'px',top:point.y * 1+'px'}"></i>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
@@ -213,6 +252,9 @@
|
|
|
GetChildRegionSelect,
|
|
|
DetectorEditStatus,
|
|
|
RegionPictureGetByRegionId,
|
|
|
+ DetectorAdd,
|
|
|
+ DetectorEdit,
|
|
|
+ GetDetectorCoords,
|
|
|
} from '../api/getApiRes.js'
|
|
|
|
|
|
let qs = require('qs');
|
|
|
@@ -220,8 +262,8 @@
|
|
|
data() {
|
|
|
return {
|
|
|
// dialog
|
|
|
- dialog_state: true,
|
|
|
- dialog_title: '添加主建筑',
|
|
|
+ dialog_state: false,
|
|
|
+ dialog_title: '',
|
|
|
dialog_type: '',//类型,1是添加,2是修改
|
|
|
dialog: {
|
|
|
mac: '',
|
|
|
@@ -231,14 +273,18 @@
|
|
|
tagname: '',
|
|
|
longitude: 0,
|
|
|
latitude: 0,
|
|
|
+ HardwareVersion: '',
|
|
|
+ FirmwareVersion: '',
|
|
|
+ FirmwareScanM4Version: '',
|
|
|
+ FirmwareScanM0Version: '',
|
|
|
location: '',
|
|
|
- x: 0,
|
|
|
- y: 0,
|
|
|
coords_memo: '',
|
|
|
memo: '',
|
|
|
plateImgSrc: '',
|
|
|
regionlevelOneIdOptions: [],
|
|
|
regionIdRoomOptions: [],
|
|
|
+ points: [],
|
|
|
+ CoordsId: 0,
|
|
|
},
|
|
|
tabIndex: 0,
|
|
|
tabs: [
|
|
|
@@ -283,6 +329,12 @@
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+ if(this.$route.query.RegionId){
|
|
|
+ this.panel.regionid = this.$route.query.RegionId;
|
|
|
+ this.panel.tagname = this.$route.query.TagName;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
this.getTableQuery();
|
|
|
},
|
|
|
methods: {
|
|
|
@@ -366,7 +418,6 @@
|
|
|
that.dialog.regionlevelOneId = json.Rs[0].Id;
|
|
|
} else {
|
|
|
if (json.Rs) {
|
|
|
- console.log(json.Rs);
|
|
|
that.dialog.regionIdRoomOptions = json.Rs;
|
|
|
|
|
|
that.dialog.regionId = json.Rs[0].Id;
|
|
|
@@ -389,9 +440,9 @@
|
|
|
this.getTableQuery();
|
|
|
this.$message.success('查询完毕');
|
|
|
},
|
|
|
+
|
|
|
handleSelectionChange(val) {
|
|
|
this.multipleSelection = val;
|
|
|
- console.log(val);
|
|
|
},
|
|
|
// 设置分页数据
|
|
|
setPaginations() {
|
|
|
@@ -436,27 +487,78 @@
|
|
|
},
|
|
|
// 过滤时间
|
|
|
filterFmtDate(value, row, column) {
|
|
|
- let that = this;
|
|
|
return globalfmtDate(column, 11);
|
|
|
},
|
|
|
addList() {
|
|
|
this.dialog_state = true;
|
|
|
this.dialog_title = '添加设备';
|
|
|
- this.dialogGetGetChildRegionSelect(0,1);
|
|
|
+ this.dialog_type = 1;
|
|
|
+ // clear dialog
|
|
|
+ this.dialog.mac = '';
|
|
|
+ this.dialog.regionId = '';
|
|
|
+ this.dialog.tagname = '';
|
|
|
+ this.dialog.HardwareVersion = '';
|
|
|
+ this.dialog.FirmwareVersion = '';
|
|
|
+ this.dialog.FirmwareScanM4Version = '';
|
|
|
+ this.dialog.FirmwareScanM0Version = '';
|
|
|
+ this.dialog.location = '';
|
|
|
+ this.dialog.purchasesrc = '';
|
|
|
+ this.dialog.memo = '';
|
|
|
+ this.dialog.coords_memo = '';
|
|
|
+ this.dialog.points = [{}];
|
|
|
+
|
|
|
+ // 加载默认的平面图
|
|
|
+ this.dialogGetGetChildRegionSelect(0, 1);
|
|
|
},
|
|
|
delList() {
|
|
|
+ let that = this;
|
|
|
// checkNum
|
|
|
if (!this.multipleSelection.length) {
|
|
|
- this.$message({
|
|
|
+ that.$message({
|
|
|
showClose: true,
|
|
|
message: '错了哦,需要先选中至少一条记录',
|
|
|
type: 'error'
|
|
|
});
|
|
|
return false
|
|
|
}
|
|
|
- // todo delEquip
|
|
|
+ let detectorid = that.multipleSelection[0].Id;
|
|
|
+
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: detectorid,
|
|
|
+ status: 9,//0禁用1启用9删除
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+
|
|
|
+ this.$confirm('此操作将永久删除该设备, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ DetectorEditStatus(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '选中的设备已删除!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ that.dialog_state = false;
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
- changeList() {
|
|
|
+ editList() {
|
|
|
+ let that = this;
|
|
|
// checkNum
|
|
|
if (!this.multipleSelection.length) {
|
|
|
this.$message({
|
|
|
@@ -474,6 +576,52 @@
|
|
|
});
|
|
|
return false
|
|
|
}
|
|
|
+ this.dialog_state = true;
|
|
|
+ this.dialog_title = '修改设备信息';
|
|
|
+ this.dialog_type = 2;
|
|
|
+
|
|
|
+ // 读取本条记录
|
|
|
+ let row = this.multipleSelection[0];
|
|
|
+ this.dialog.eqId = row.Id;
|
|
|
+ this.dialog.mac = row.Mac;
|
|
|
+ this.dialog.regionId = row.RegionId;
|
|
|
+ this.dialog.tagname = row.TagName;
|
|
|
+ this.dialog.HardwareVersion = row.HardwareVersion;
|
|
|
+ this.dialog.FirmwareVersion = row.FirmwareVersion;
|
|
|
+ this.dialog.FirmwareScanM4Version = row.FirmwareScanM4Version;
|
|
|
+ this.dialog.FirmwareScanM0Version = row.FirmwareScanM0Version;
|
|
|
+ this.dialog.location = row.location;
|
|
|
+ this.dialog.purchasesrc = row.purchasesrc;
|
|
|
+ this.dialog.memo = row.memo;
|
|
|
+ this.dialog.coords_memo = row.coords_memo;
|
|
|
+
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorId: row.Id,
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ GetDetectorCoords(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ if(json.Rs.length != 0){
|
|
|
+ console.log(json.Rs);
|
|
|
+ that.dialog.points = [{x: json.Rs[0].Width, y: json.Rs[0].Height}];
|
|
|
+ that.dialog.CoordsId = json.Rs[0].CoordsId;
|
|
|
+ }else{
|
|
|
+ that.dialog.points = [{x: 0, y: 0}];
|
|
|
+ that.dialog.CoordsId = 0;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 自动补全MAC
|
|
|
+ autoCompleteMac() {
|
|
|
+ let text = this.dialog.mac;
|
|
|
+ if (text.length == 2 || text.length == 5 || text.length == 8 || text.length == 11 || text.length == 14) {
|
|
|
+ this.dialog.mac = this.dialog.mac.toUpperCase() + ":"
|
|
|
+ }
|
|
|
},
|
|
|
// 探测记录
|
|
|
goPhoneRecord(row) {
|
|
|
@@ -504,10 +652,134 @@
|
|
|
that.dialog_state = false;
|
|
|
},
|
|
|
dialog_ok() {
|
|
|
+ if (this.dialog_type == 1) {
|
|
|
+ this.confirmAddEquip();
|
|
|
+ } else {
|
|
|
+ this.confirmEditEquip();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 提交增加新设备
|
|
|
+ confirmAddEquip() {
|
|
|
let that = this;
|
|
|
- let dialog_type = that.dialog_type;
|
|
|
- let name = that.field_name;
|
|
|
- let id = that.field_id;
|
|
|
+ // checkVal
|
|
|
+ if (!that.dialog.mac) {
|
|
|
+ this.$message.error('错了哦,mac不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!checkMac(that.dialog.mac)) {
|
|
|
+ this.$message.error('错了哦,mac格式不正确');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!that.dialog.regionId) {
|
|
|
+ this.$message.error('错了哦,所属区域不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!that.dialog.tagname) {
|
|
|
+ this.$message.error('错了哦,标签名不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (that.dialog.tagname.length > 20) {
|
|
|
+ this.$message.error('错了哦,标签名不能超过20个字符');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ this.selectRegionLabel(that.dialog.regionId);
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ mac: that.dialog.mac,
|
|
|
+ comId: 1,
|
|
|
+ regionId: that.dialog.regionId,
|
|
|
+ tagname: that.dialog.tagname,
|
|
|
+ HardwareVersion: that.dialog.HardwareVersion,
|
|
|
+ FirmwareVersion: that.dialog.FirmwareVersion,
|
|
|
+ FirmwareScanM4Version: that.dialog.FirmwareScanM4Version,
|
|
|
+ FirmwareScanM0Version: that.dialog.FirmwareScanM0Version,
|
|
|
+ location: that.dialog.location,
|
|
|
+ purchasesrc: that.dialog.purchasesrc,
|
|
|
+ x: that.dialog.points[0].x,
|
|
|
+ y: that.dialog.points[0].y,
|
|
|
+ coords_memo: that.dialog.coords_memo,
|
|
|
+ memo: that.dialog.memo,
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ DetectorAdd(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '设备添加成功!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ that.dialog_state = false;
|
|
|
+
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 提交修改设备信息
|
|
|
+ confirmEditEquip() {
|
|
|
+ let that = this;
|
|
|
+ // checkVal
|
|
|
+ if (!that.dialog.mac) {
|
|
|
+ this.$message.error('错了哦,mac不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!checkMac(that.dialog.mac)) {
|
|
|
+ this.$message.error('错了哦,mac格式不正确');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!that.dialog.regionId) {
|
|
|
+ this.$message.error('错了哦,所属区域不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (!that.dialog.tagname) {
|
|
|
+ this.$message.error('错了哦,标签名不能为空');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (that.dialog.tagname.length > 20) {
|
|
|
+ this.$message.error('错了哦,标签名不能超过20个字符');
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ this.selectRegionLabel(that.dialog.regionId);
|
|
|
+ let param = {
|
|
|
+ token: localStorage.token,
|
|
|
+ detectorid: that.dialog.eqId,
|
|
|
+ mac: that.dialog.mac,
|
|
|
+ comId: 1,
|
|
|
+ regionId: that.dialog.regionId,
|
|
|
+ tagname: that.dialog.tagname,
|
|
|
+ HardwareVersion: that.dialog.HardwareVersion,
|
|
|
+ FirmwareVersion: that.dialog.FirmwareVersion,
|
|
|
+ FirmwareScanM4Version: that.dialog.FirmwareScanM4Version,
|
|
|
+ FirmwareScanM0Version: that.dialog.FirmwareScanM0Version,
|
|
|
+ location: that.dialog.location,
|
|
|
+ purchasesrc: that.dialog.purchasesrc,
|
|
|
+ x: that.dialog.points[0].x,
|
|
|
+ y: that.dialog.points[0].y,
|
|
|
+ coords_memo: that.dialog.coords_memo,
|
|
|
+ memo: that.dialog.memo,
|
|
|
+ coordsType: 1,//坐标状态 0:禁用, 1:启用, 9:删除,没有就传0
|
|
|
+ coordsID: that.dialog.CoordsId,
|
|
|
+ };
|
|
|
+ let postdata = qs.stringify(param);
|
|
|
+ DetectorEdit(postdata).then(res => {
|
|
|
+ let json = res;
|
|
|
+ if (json.Code == 0) {
|
|
|
+ that.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: '设备添加成功!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ // 重载列表
|
|
|
+ that.getTableQuery();
|
|
|
+ that.dialog_state = false;
|
|
|
+
|
|
|
+ } else {
|
|
|
+ that.$message.error(json.Memo);
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
// 修改设备状态
|
|
|
getDetectorEditStatus(detectorid, status, text) {
|
|
|
@@ -561,7 +833,7 @@
|
|
|
let json = res;
|
|
|
that.dialog.plateImgSrc = '';
|
|
|
if (json.Code == 0) {
|
|
|
- that.dialog.plateImgSrc = json.EncodeString
|
|
|
+ that.dialog.plateImgSrc = json.EncodeString;
|
|
|
} else {
|
|
|
that.$message.error(json.Memo);
|
|
|
}
|
|
|
@@ -583,14 +855,31 @@
|
|
|
message: '已取消启用'
|
|
|
});
|
|
|
});
|
|
|
+ },
|
|
|
+ // 添加探测器位置的点坐标
|
|
|
+ addPoint(e) {
|
|
|
+ let x = e.offsetX;
|
|
|
+ let y = e.offsetY;
|
|
|
+ this.dialog.points = [{x: x, y: y}];
|
|
|
+ },
|
|
|
+ // 获取位置的文字内容
|
|
|
+ selectRegionLabel(id) {
|
|
|
+ let that = this;
|
|
|
+ let selectedWorkName = {};
|
|
|
+ selectedWorkName = this.dialog.regionIdRoomOptions.filter(item => {
|
|
|
+ if (item.Id === id) {
|
|
|
+ that.dialog.location = item.Name;
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
'dialog.regionlevelOneId': function (val) {
|
|
|
- this.dialogGetGetChildRegionSelect(val,2)
|
|
|
+ this.dialogGetGetChildRegionSelect(val, 2)
|
|
|
},
|
|
|
'dialog.regionId': function (val) {
|
|
|
this.getRegionPictureGetByRegionId(val);
|
|
|
+
|
|
|
},
|
|
|
},
|
|
|
components: {
|
|
|
@@ -632,6 +921,7 @@
|
|
|
position: relative;
|
|
|
top: 35px;
|
|
|
}
|
|
|
+
|
|
|
.imgContianer {
|
|
|
width: 100%;
|
|
|
height: 340px;
|
|
|
@@ -639,6 +929,7 @@
|
|
|
display: block;
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
+
|
|
|
.imgContianer img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
@@ -646,25 +937,32 @@
|
|
|
display: block;
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
+
|
|
|
.pointers {
|
|
|
position: relative;
|
|
|
- bottom: 200px;
|
|
|
+ bottom: 340px;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
overflow: hidden;
|
|
|
display: block;
|
|
|
margin: 0 auto;
|
|
|
- background: red;
|
|
|
}
|
|
|
+
|
|
|
.imgContianer i {
|
|
|
position: relative;
|
|
|
- width: 5px;
|
|
|
- height: 5px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ float: left;
|
|
|
border-radius: 250px;
|
|
|
- background: #6DC1FF;
|
|
|
+ background: #FFDD00;
|
|
|
}
|
|
|
+
|
|
|
/deep/ .modal-dialog {
|
|
|
- height: 750px;
|
|
|
- margin-top: 3%;
|
|
|
+ height: 880px;
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ /deep/ textarea {
|
|
|
+ color: #6DC1FF;
|
|
|
}
|
|
|
</style>
|