(self, parent=None, current_cron: str = "")
| 60 | """Cron表达式生成器对话框""" |
| 61 | |
| 62 | def __init__(self, parent=None, current_cron: str = ""): |
| 63 | super().__init__("Cron表达式生成器", "", parent) |
| 64 | self.current_cron = current_cron |
| 65 | self.generated_cron = "" |
| 66 | self.setupUI() |
| 67 | |
| 68 | def setupUI(self): |
| 69 | self.textLayout.setSpacing(12) |