修改禅道已知bug
This commit is contained in:
@@ -740,4 +740,11 @@
|
||||
.add--number {
|
||||
width: 101%;
|
||||
}
|
||||
|
||||
.ant-input-disabled {
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
.ant-select-disabled{
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user