修改禅道已知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
@@ -740,4 +740,11 @@
.add--number { .add--number {
width: 101%; width: 101%;
} }
.ant-input-disabled {
color: rgba(0, 0, 0, 0.65);
}
.ant-select-disabled{
color: rgba(0, 0, 0, 0.65);
}
</style> </style>
@@ -47,7 +47,8 @@
</a-table> </a-table>
</div> </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 <a-form-model
class='tag-module' class='tag-module'
ref='ruleForm' ref='ruleForm'
@@ -244,7 +245,12 @@
}, },
methods: { methods: {
rowClassName(row, index) { rowClassName(row, index) {
return row.changeFlag == '1' ? 'yellow' : 'red' if (row.changeFlag == '1') {
return 'rowClassRedYellow'
}
if (row.delFlag == '1') {
return 'rowClassRed'
}
}, },
// 查看配置详细信息 // 查看配置详细信息
onClickSee(val) { onClickSee(val) {
@@ -361,7 +367,7 @@
getAction(this.url.getLoginUserType, params).then((res) => { getAction(this.url.getLoginUserType, params).then((res) => {
if (res.success) { if (res.success) {
this.getTableList(res.result[0].value) 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 = [] this.selectedRowKeys = []
}, },
getTableList(currentPersonRole) { getTableList(currentPersonRole) {
@@ -671,6 +677,7 @@
.resize-table-th { .resize-table-th {
position: relative; position: relative;
} }
.table-draggable-handle { .table-draggable-handle {
/* width: 10px !important; */ /* width: 10px !important; */
height: 100% !important; height: 100% !important;
@@ -683,4 +690,10 @@
transform: none !important; transform: none !important;
bottom: 0; bottom: 0;
} }
.rowClassRed{
background: #f3d9de;
}
.rowClassRedYellow{
background: yellow;
}
</style> </style>