人员定位系统(地图管理):回显问题修复

This commit is contained in:
骆乐 2022-09-20 16:39:38 +08:00
parent d85da820a5
commit 6df7c05241
3 changed files with 9 additions and 5 deletions

View File

@ -40,7 +40,7 @@
<vue-scroll style="height: 100%"> <vue-scroll style="height: 100%">
<el-table class="tables" :data="tableList"> <el-table class="tables" :data="tableList">
<el-table-column <el-table-column
width="60" width="200"
prop="id" prop="id"
align="center" align="center"
:label="$t('message.safeManage.safeRocordList.number')" :label="$t('message.safeManage.safeRocordList.number')"

View File

@ -749,6 +749,10 @@
this.$message.error(this.$t('message.personnelPosition.mapManage.please_add_build_infoMsg'));// this.$message.error(this.$t('message.personnelPosition.mapManage.please_add_build_infoMsg'));//
} else { } else {
this.floorDialogTitle = this.$t('message.personnelPosition.mapManage.new_floor');// this.floorDialogTitle = this.$t('message.personnelPosition.mapManage.new_floor');//
this.floorForm = {
floorName: "",
buildId: "",
}
this.addFloorDialog = true; this.addFloorDialog = true;
this.isAdd = true; this.isAdd = true;
} }

View File

@ -40,7 +40,7 @@
<span class="width_35">{{ <span class="width_35">{{
$t("message.companyDiagram.entryName1") $t("message.companyDiagram.entryName1")
}}</span> }}</span>
<span class="width_65">{{ projectDetail.projectName }}</span> <span class="width_65" style="white-space: nowrap;">{{ projectDetail.projectName }}</span>
</div> </div>
<div class="flex3"> <div class="flex3">
<span class="width_35">{{ <span class="width_35">{{
@ -1035,19 +1035,19 @@ export default {
} }
.width_65 { .width_65 {
width: 65%; width: 80%;
display: inline-block; display: inline-block;
box-sizing: border-box; box-sizing: border-box;
height: 44px; height: 44px;
padding: 0 15px; padding: 0 15px;
} }
.width_35 { .width_35 {
width: 35%; width: 20%;
display: inline-block; display: inline-block;
box-sizing: border-box; box-sizing: border-box;
border-right: 1px solid rgba(148, 148, 148, 0.5); border-right: 1px solid rgba(148, 148, 148, 0.5);
padding: 0 15px; padding: 0 15px;
text-align: right; text-align: left;
background: rgba(235, 234, 234, 0.5); background: rgba(235, 234, 234, 0.5);
} }
} }