|
@@ -15,16 +15,22 @@
|
|
|
<span style="fontSize:16px;">{{dialogTitle}}</span>
|
|
|
</div>
|
|
|
<div class="dialog-min" style="height:460px;">
|
|
|
- <div style="overflowY:auto;overflowX:hidden;">
|
|
|
- <el-tree
|
|
|
- class="type-list"
|
|
|
- :data="typeList"
|
|
|
- accordion
|
|
|
- highlight-current
|
|
|
- :props="defaultProps"
|
|
|
- @node-click="chooseType"
|
|
|
- style="width:140px;">
|
|
|
- </el-tree>
|
|
|
+ <div class="left-cont">
|
|
|
+ <div style="overflowY:auto;overflowX:hidden;">
|
|
|
+ <el-tree
|
|
|
+ class="type-list"
|
|
|
+ :data="typeList"
|
|
|
+ accordion
|
|
|
+ highlight-current
|
|
|
+ :props="defaultProps"
|
|
|
+ @node-click="chooseType"
|
|
|
+ style="width:140px;">
|
|
|
+ </el-tree>
|
|
|
+ </div>
|
|
|
+ <div class="data-authority-row" @click="dataAuthorityJump">
|
|
|
+ <img src="~@/assets/img/icons/add_blue_new.png" />
|
|
|
+ <span>添加手工指标分类</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="rigth-cont">
|
|
|
<el-form
|
|
@@ -377,6 +383,10 @@ import {dataInterence} from 'api/api.js';
|
|
|
this.classify_id = item.ClassifyId;
|
|
|
}
|
|
|
},
|
|
|
+ // 手工数据权限页面跳转
|
|
|
+ dataAuthorityJump(){
|
|
|
+ this.$router.push('Sysdatauth')
|
|
|
+ }
|
|
|
},
|
|
|
created() {
|
|
|
// this.getTargetlist();
|
|
@@ -393,6 +403,27 @@ import {dataInterence} from 'api/api.js';
|
|
|
.dialog_container {
|
|
|
.dialog-min {
|
|
|
display: flex;
|
|
|
+ .left-cont{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-bottom: 15px;
|
|
|
+ .data-authority-row{
|
|
|
+ margin-top: 10px;
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ img{
|
|
|
+ margin-right: 6px;
|
|
|
+ height: 17px;
|
|
|
+ width: 17px;
|
|
|
+ }
|
|
|
+ span{
|
|
|
+ color: #1146DB;
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.rigth-cont {
|
|
|
border-left: 1px solid #dcdcdc;
|
|
|
padding: 0 0 48px 60px;
|