Commit fb152108 authored by jingnan's avatar jingnan 👀

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

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