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 canvas = document.createElement('canvas');
|
||||||
const context = canvas.getContext('2d');
|
const context = canvas.getContext('2d');
|
||||||
if (context != null) {
|
if (context != null) {
|
||||||
|
|
|
@ -250,4 +250,14 @@
|
||||||
);
|
);
|
||||||
</script>
|
</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>
|
</style>
|
||||||
|
|
|
@ -599,6 +599,7 @@
|
||||||
{
|
{
|
||||||
title: 'caseManagement.featureCase.tableColumnUpdateUser',
|
title: 'caseManagement.featureCase.tableColumnUpdateUser',
|
||||||
slotName: 'updateUserName',
|
slotName: 'updateUserName',
|
||||||
|
showTooltip: true,
|
||||||
dataIndex: 'updateUser',
|
dataIndex: 'updateUser',
|
||||||
titleSlotName: 'updateUserFilter',
|
titleSlotName: 'updateUserFilter',
|
||||||
sortable: {
|
sortable: {
|
||||||
|
@ -627,6 +628,7 @@
|
||||||
dataIndex: 'createUserName',
|
dataIndex: 'createUserName',
|
||||||
titleSlotName: 'createUserFilter',
|
titleSlotName: 'createUserFilter',
|
||||||
showInTable: true,
|
showInTable: true,
|
||||||
|
showTooltip: true,
|
||||||
width: 200,
|
width: 200,
|
||||||
showDrag: true,
|
showDrag: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -443,6 +443,7 @@
|
||||||
sorter: true,
|
sorter: true,
|
||||||
},
|
},
|
||||||
showInTable: true,
|
showInTable: true,
|
||||||
|
showTooltip: true,
|
||||||
width: 200,
|
width: 200,
|
||||||
showDrag: true,
|
showDrag: true,
|
||||||
},
|
},
|
||||||
|
@ -462,6 +463,7 @@
|
||||||
title: 'caseManagement.featureCase.tableColumnCreateUser',
|
title: 'caseManagement.featureCase.tableColumnCreateUser',
|
||||||
slotName: 'createUserName',
|
slotName: 'createUserName',
|
||||||
dataIndex: 'createUser',
|
dataIndex: 'createUser',
|
||||||
|
showTooltip: true,
|
||||||
titleSlotName: 'createUserFilter',
|
titleSlotName: 'createUserFilter',
|
||||||
showInTable: true,
|
showInTable: true,
|
||||||
width: 200,
|
width: 200,
|
||||||
|
@ -484,6 +486,7 @@
|
||||||
dataIndex: 'deleteUserName',
|
dataIndex: 'deleteUserName',
|
||||||
titleSlotName: 'deleteUserFilter',
|
titleSlotName: 'deleteUserFilter',
|
||||||
showInTable: true,
|
showInTable: true,
|
||||||
|
showTooltip: true,
|
||||||
width: 200,
|
width: 200,
|
||||||
showDrag: true,
|
showDrag: true,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue