style(接口管理): 调整批量执行的弹窗样式
This commit is contained in:
parent
86db45c9a0
commit
3d01581ce7
|
@ -281,7 +281,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
function getTextWidth(text) {
|
||||
function getTextWidth(text: string) {
|
||||
const canvas = document.createElement('canvas');
|
||||
const context = canvas.getContext('2d');
|
||||
if (context != null) {
|
||||
|
|
|
@ -250,4 +250,14 @@
|
|||
);
|
||||
</script>
|
||||
|
||||
<style scoped lang="less"></style>
|
||||
<style scoped lang="less">
|
||||
:deep(.arco-radio-group) {
|
||||
margin-left: -5px;
|
||||
}
|
||||
.ms-switch {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -1018,13 +1018,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
:deep(.arco-radio-group) {
|
||||
margin-left: -5px;
|
||||
}
|
||||
.ms-switch {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -599,6 +599,7 @@
|
|||
{
|
||||
title: 'caseManagement.featureCase.tableColumnUpdateUser',
|
||||
slotName: 'updateUserName',
|
||||
showTooltip: true,
|
||||
dataIndex: 'updateUser',
|
||||
titleSlotName: 'updateUserFilter',
|
||||
sortable: {
|
||||
|
@ -627,6 +628,7 @@
|
|||
dataIndex: 'createUserName',
|
||||
titleSlotName: 'createUserFilter',
|
||||
showInTable: true,
|
||||
showTooltip: true,
|
||||
width: 200,
|
||||
showDrag: true,
|
||||
},
|
||||
|
|
|
@ -443,6 +443,7 @@
|
|||
sorter: true,
|
||||
},
|
||||
showInTable: true,
|
||||
showTooltip: true,
|
||||
width: 200,
|
||||
showDrag: true,
|
||||
},
|
||||
|
@ -462,6 +463,7 @@
|
|||
title: 'caseManagement.featureCase.tableColumnCreateUser',
|
||||
slotName: 'createUserName',
|
||||
dataIndex: 'createUser',
|
||||
showTooltip: true,
|
||||
titleSlotName: 'createUserFilter',
|
||||
showInTable: true,
|
||||
width: 200,
|
||||
|
@ -484,6 +486,7 @@
|
|||
dataIndex: 'deleteUserName',
|
||||
titleSlotName: 'deleteUserFilter',
|
||||
showInTable: true,
|
||||
showTooltip: true,
|
||||
width: 200,
|
||||
showDrag: true,
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue