修改禅道已知bug

This commit is contained in:
qq787203167
2022-07-01 13:28:51 +08:00
parent 2cdb33e5d4
commit 0a6c8f35dd
2 changed files with 24 additions and 4 deletions
@@ -47,7 +47,8 @@
</a-table>
</div>
<!-- 修改工程接口人--->
<a-modal v-model="areaVisible" :title="$t('modifyprojectInterfacePerson')" width='620px' :footer="null" @cancel="cancleImports">
<a-modal v-model="areaVisible" :title="$t('modifyprojectInterfacePerson')" width='620px' :footer="null"
@cancel="cancleImports">
<a-form-model
class='tag-module'
ref='ruleForm'
@@ -244,7 +245,12 @@
},
methods: {
rowClassName(row, index) {
return row.changeFlag == '1' ? 'yellow' : 'red'
if (row.changeFlag == '1') {
return 'rowClassRedYellow'
}
if (row.delFlag == '1') {
return 'rowClassRed'
}
},
// 查看配置详细信息
onClickSee(val) {
@@ -361,7 +367,7 @@
getAction(this.url.getLoginUserType, params).then((res) => {
if (res.success) {
this.getTableList(res.result[0].value)
this.$emit('LoginUserType', res.result,this.currentPersonRole)
this.$emit('LoginUserType', res.result, this.currentPersonRole)
}
})
},
@@ -481,7 +487,7 @@
}
})
},
cancleoperationFailed(){
cancleoperationFailed() {
this.selectedRowKeys = []
},
getTableList(currentPersonRole) {
@@ -671,6 +677,7 @@
.resize-table-th {
position: relative;
}
.table-draggable-handle {
/* width: 10px !important; */
height: 100% !important;
@@ -683,4 +690,10 @@
transform: none !important;
bottom: 0;
}
.rowClassRed{
background: #f3d9de;
}
.rowClassRedYellow{
background: yellow;
}
</style>