关于系统

This commit is contained in:
jjLv 2024-09-30 13:19:49 +08:00
parent 1b30c098b9
commit 07d44db10b
3 changed files with 19 additions and 6 deletions

View File

@ -291,20 +291,17 @@ export default {
this.departRange.forEach((item) => {
if (e === item.value) {
this.projectParams.departName = item.label;
console.log(1111)
//
let projRes = queryProjApi({
isAll: 0,
departId: e,
}).then(projRes =>{
console.log(projRes)
this.projRange = projRes.data.map((item) => {
return {
label: item.proName,
value: item.id,
};
});
console.log(22222)
})
}
});

View File

@ -169,9 +169,6 @@
<div class="bottom-info">
版权所有权归国网电力工程技术研究院有限公司
<div>
版本v1.0
</div>
</div>
</div>
</template>

View File

@ -0,0 +1,19 @@
<template>
<div class="bottom-info">
系统名称基建现场物联感知数据监测分析系统
<div>
版本v1.0
</div>
</div>
</template>
<style lang="scss">
.bottom-info{
width: 100%;
height: 10%;
text-align: left;
font-size: 25px;
font-weight: bold;
color: #1E67E7;
}
</style>