[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Tangjiafeng committed Mar 2, 2022
2 parents 7883d68 + 8a7f6da commit 60cc625
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 210 deletions.
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion docs/zh_CN/ch1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Qualitis基于Spring Boot,依赖于Linkis进行数据计算,提供数据质

## 文档列表
[架构设计文档](架构设计文档.md)
[快速搭建手册](快速搭建手册——单机版.md)
[快速搭建手册](快速搭建手册.md)
[用户手册](用户手册.md)

<br/>
Expand Down
6 changes: 1 addition & 5 deletions ui/fes.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ export default {
},
// 生产环境 fes build默认使用prod环境 fes dev --env=prod 触发使用
prod: {
},
sandbox: {
api: '/wds/qualitis/qualitis',
env: 'sandbox',
path: '/wds/qualitis'

}
},
// 配置角色-路由访问权限,使用FesApp.setRole('unLogin')来修改当前用户的角色,控制路由访问权限
Expand Down
1 change: 1 addition & 0 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@
"chart.js": "^2.9.4",
"vue-chartjs": "^3.5.1"
},

"gitHead": "357575247bde6d1d24a8d2e11d2bfe7adbe6abd6"
}
1 change: 1 addition & 0 deletions ui/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default function() {
// dqm 登录后检查登录并设置登录信息
if (from.path === '/home') return next();
if (to.path === '/home') return next();

this.FesApi.fetch("api/v1/projector/role", "get").then(({roles,username}) => {
if(Array.isArray(roles)){
roles = roles.map(item => item.toLowerCase())
Expand Down
6 changes: 5 additions & 1 deletion ui/src/assets/styles/crossTable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,17 @@
.no-border{
border: 1px solid #d7dde4;
border-top: none;
}

}
.map-col {
width: 92%;
}
.custom-input {
width: 72%;
}

::v-deep

textarea {
min-height: 44px;
}
Expand All @@ -123,4 +125,6 @@
.determine {
margin-right: 20px;
}

}

1 change: 1 addition & 0 deletions ui/src/components/fesHeader.fes
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

import { getUserRole, sha256 } from "assets/js/utils";
import bus from '../bus';

export default {
FesData() {
return {
Expand Down
1 change: 1 addition & 0 deletions ui/src/pages/configureParameter/index.fes
Original file line number Diff line number Diff line change
Expand Up @@ -302,3 +302,4 @@
margin-left: 10px;
}
</style>

1 change: 1 addition & 0 deletions ui/src/pages/personnelManage/index.fes
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@
chinese_name: this.chinese_name,
department: this.department
}

if (valid) {
this.FesApi.fetch(
"api/v1/admin/user",
Expand Down
6 changes: 5 additions & 1 deletion ui/src/pages/taskQuery/index.fes
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<Wb-select v-model="status" @on-change="changeStatus">
<Wb-option v-for="item in statusList" :key="item.status" :value="item.status" :label="item.type" />
</Wb-select>

</Cell>
<Cell v-if="searchType===3" span="4" offset="1">
<div>{{ $t('common.number') }}</div>
Expand Down Expand Up @@ -79,6 +80,7 @@
</Row>
</div>
</pageContainer>

</template>
<script type="text/ecmascript-6">
import { sizeList } from 'assets/js/sizeList';
Expand Down Expand Up @@ -371,6 +373,7 @@
}else {
return ''
}

}
})
},
Expand Down Expand Up @@ -443,7 +446,8 @@
.idlink {
color: #2db7f5;
}
::v-deep .ui-table {

/deep/ .ui-table {
overflow: auto;
}
}
Expand Down
2 changes: 2 additions & 0 deletions ui/src/pages/verifyFailData/index.fes
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@
.ruleTag:not(:last-child) {
margin-right: 8px;
}

.ruleTag:not(:last-child)::after {
content: ",";
}
Expand All @@ -315,6 +316,7 @@
.unVerified {
background-color: #656060;
}

.field{
position: relative;
border: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ CREATE TABLE `qualitis_project_label` (
PRIMARY KEY (`id`),
CONSTRAINT `UK_project_id_label_name` UNIQUE KEY (`label_name`, `project_id`),
CONSTRAINT `FK_qualitis_project_label_project_id` FOREIGN KEY (`project_id`) REFERENCES `qualitis_project` (`id`)
)
)

0 comments on commit 60cc625

Please sign in to comment.