Commit fb152108 authored by jingnan's avatar jingnan 👀

站位计划维护下新增区域更新标识

parent 6213c49c
...@@ -90,6 +90,13 @@ ...@@ -90,6 +90,13 @@
/> />
</div> </div>
</dee-tab> </dee-tab>
<span v-if="areaUpdatingLists[form.sorties]==='Y'" class="areaUpdateTip">
<i class="el-icon-warning" />
<span>温馨提示: </span>
<span class="tipInfo">
当前架次下区域正在更新中......
</span>
</span>
</div> </div>
</template> </template>
</dee-fold-pane> </dee-fold-pane>
...@@ -178,7 +185,8 @@ export default { ...@@ -178,7 +185,8 @@ export default {
}, },
activeTab: '0', activeTab: '0',
activeNodeData: {}, activeNodeData: {},
currentNodekey: '' currentNodekey: '',
areaUpdatingLists: {}
} }
}, },
watch: { watch: {
...@@ -397,7 +405,9 @@ export default { ...@@ -397,7 +405,9 @@ export default {
res.items.content.unshift(res.items.content.splice(index, 1)[0]) res.items.content.unshift(res.items.content.splice(index, 1)[0])
} }
}) })
this.areaUpdatingLists = {}
this.sortiesData = res.items.content.map((row) => { this.sortiesData = res.items.content.map((row) => {
this.areaUpdatingLists[row.id] = row.areaUpdating
return { return {
value: row.id, value: row.id,
label: row.defName label: row.defName
...@@ -780,8 +790,15 @@ export default { ...@@ -780,8 +790,15 @@ export default {
} }
} }
.right-container { .right-container {
position: relative;
// width: 82%; // width: 82%;
margin-left: 20px; margin-left: 20px;
.areaUpdateTip{
position: absolute;
top: 20px;
right: 40px;
color: #ff0000;
}
} }
} }
</style> </style>
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