Showing
1 changed file
with
5 additions
and
1 deletions
... | ... | @@ -113,7 +113,11 @@ |
113 | 113 | createMessage.error('命令内容不能为空'); |
114 | 114 | passStatus = true; |
115 | 115 | } |
116 | - if (jsonData.value.params == '""' || jsonData.value.params == "''") { | |
116 | + if ( | |
117 | + jsonData.value.params == '""' || | |
118 | + jsonData.value.params == "''" || | |
119 | + jsonData.value.params == '“”' | |
120 | + ) { | |
117 | 121 | createMessage.error('命令内容不能为空'); |
118 | 122 | passStatus = true; |
119 | 123 | } | ... | ... |