feat(工作报告定时生成): 工作报告现在可以定时生成,并且可以刷新当前报告。
This commit is contained in:
@@ -560,7 +560,7 @@ const columns = computed(() => [
|
||||
<div class="requirement-action-cell" onClick={event => event.stopPropagation()}>
|
||||
{actions.length === 0 ? (
|
||||
<ElButton link size="small" class="requirement-action-icon-btn" type="primary" disabled>
|
||||
<IconMdiPencilOutline class="text-18px" />
|
||||
<IconMdiPencilOutline class="text-15px" />
|
||||
</ElButton>
|
||||
) : (
|
||||
actions.map(action => {
|
||||
@@ -575,7 +575,7 @@ const columns = computed(() => [
|
||||
disabled={action.disabled}
|
||||
onClick={() => action.onClick()}
|
||||
>
|
||||
<IconComponent class="text-18px" />
|
||||
<IconComponent class="text-15px" />
|
||||
</ElButton>
|
||||
</ElTooltip>
|
||||
);
|
||||
@@ -1068,13 +1068,18 @@ onMounted(async () => {
|
||||
:deep(.requirement-action-cell) {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 1px;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
:deep(.requirement-action-cell .el-button + .el-button) {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
:deep(.requirement-action-icon-btn) {
|
||||
padding: 1px;
|
||||
padding: 3px;
|
||||
height: auto;
|
||||
min-width: auto;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
:deep(.requirement-action-icon-btn:hover) {
|
||||
|
||||
Reference in New Issue
Block a user