|
|
|
@ -7,6 +7,19 @@
|
|
|
|
|
class="hamburger-container"
|
|
|
|
|
/>
|
|
|
|
|
<breadcrumb />
|
|
|
|
|
<div class="right-menu">
|
|
|
|
|
<div class="item-men">
|
|
|
|
|
<div class="item" @click="centerDialogVisible = true">说明</div>
|
|
|
|
|
<div class="item">
|
|
|
|
|
<a href="https://ajreport.beliefteam.cn/report-doc/" target="blank"
|
|
|
|
|
>文档</a
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item">
|
|
|
|
|
<a href="https://gitee.com/anji-plus/report" target="blank">社区</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-dropdown class="avatar-container" trigger="click">
|
|
|
|
|
<div class="avatar-wrapper">
|
|
|
|
|
<i class="icon iconfont iconyonghu user" />
|
|
|
|
@ -22,6 +35,8 @@
|
|
|
|
|
</el-dropdown-item>
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</el-menu>
|
|
|
|
|
<!-- 修改密码弹框 -->
|
|
|
|
|
<el-dialog
|
|
|
|
@ -67,6 +82,30 @@
|
|
|
|
|
<el-button type="primary" @click="confrimUpdate">确 定</el-button>
|
|
|
|
|
</span>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!--说明弹出框-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="说明"
|
|
|
|
|
:visible.sync="centerDialogVisible"
|
|
|
|
|
width="34%"
|
|
|
|
|
center
|
|
|
|
|
>
|
|
|
|
|
<div style="font-size: 30px; line-height: 50px; margin-bottom: 50px">
|
|
|
|
|
AJ-Report由<a href="http://www.anji-plus.com/" target="_blank" style="text-decoration: underline"><b>安吉加加信息技术有限公司</b></a
|
|
|
|
|
>遵循 <a href="http://www.apache.org/licenses/LICENSE-2.0.html" target="_blank" style="word-wrap: break-word"><strong style="color: orangered">Apache2.0开源协议</strong></a
|
|
|
|
|
>在<a href="https://gitee.com/explore" target="_blank" style="text-decoration: underline; word-wrap: break-word"><b>Gitee平台</b></a
|
|
|
|
|
>进行开源。
|
|
|
|
|
</div>
|
|
|
|
|
<div style="font-size: 30px; line-height: 50px">
|
|
|
|
|
<strong style="color: orangered">个人/商业使用须遵循Apache2.0开源协议。</strong>
|
|
|
|
|
<strong style="color: orangered">禁止将AJ-Report产品用于违法违规业务。</strong>
|
|
|
|
|
</div>
|
|
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="centerDialogVisible = false"
|
|
|
|
|
>确 定</el-button
|
|
|
|
|
>
|
|
|
|
|
</span>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -127,7 +166,10 @@ export default {
|
|
|
|
|
confirmPassword: [
|
|
|
|
|
{ required: true, validator: validatePass3, trigger: "blur" }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 说明
|
|
|
|
|
centerDialogVisible: false
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -204,6 +246,8 @@ export default {
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
border-radius: 0px !important;
|
|
|
|
|
background: #fff !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
.hamburger-container {
|
|
|
|
|
line-height: 57px;
|
|
|
|
|
height: 49px;
|
|
|
|
@ -217,15 +261,25 @@ export default {
|
|
|
|
|
top: 16px;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.right-menu {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 35px;
|
|
|
|
|
display: flex;
|
|
|
|
|
.item-men {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
.item {
|
|
|
|
|
margin-right: 60px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.avatar-container {
|
|
|
|
|
height: 50px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 35px;
|
|
|
|
|
.avatar-wrapper {
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
position: relative;
|
|
|
|
|
.user-avatar {
|
|
|
|
|
width: 40px;
|
|
|
|
|