关于系统
This commit is contained in:
parent
1b30c098b9
commit
07d44db10b
|
|
@ -291,20 +291,17 @@ export default {
|
||||||
this.departRange.forEach((item) => {
|
this.departRange.forEach((item) => {
|
||||||
if (e === item.value) {
|
if (e === item.value) {
|
||||||
this.projectParams.departName = item.label;
|
this.projectParams.departName = item.label;
|
||||||
console.log(1111)
|
|
||||||
// 获取工程下拉选
|
// 获取工程下拉选
|
||||||
let projRes = queryProjApi({
|
let projRes = queryProjApi({
|
||||||
isAll: 0,
|
isAll: 0,
|
||||||
departId: e,
|
departId: e,
|
||||||
}).then(projRes =>{
|
}).then(projRes =>{
|
||||||
console.log(projRes)
|
|
||||||
this.projRange = projRes.data.map((item) => {
|
this.projRange = projRes.data.map((item) => {
|
||||||
return {
|
return {
|
||||||
label: item.proName,
|
label: item.proName,
|
||||||
value: item.id,
|
value: item.id,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
console.log(22222)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -169,9 +169,6 @@
|
||||||
|
|
||||||
<div class="bottom-info">
|
<div class="bottom-info">
|
||||||
版权所有权归国网电力工程技术研究院有限公司
|
版权所有权归国网电力工程技术研究院有限公司
|
||||||
<div>
|
|
||||||
版本:v1.0
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue