(self)
| 145 | layout.addWidget(self.codeScintilla) |
| 146 | |
| 147 | def onRunButton(self): |
| 148 | text = self.text() |
| 149 | if not text: |
| 150 | return QMessageBox.information(self, "提示", "json数据不能为空") |
| 151 | self.runSignal.emit(text) |
| 152 | |
| 153 | def openFile(self, file): |
| 154 | try: |