Commit 9f2b0972 by Neo Turing

优化

parent 7e1602a0
...@@ -467,7 +467,7 @@ namespace Kivii.Sample.ImageUploader ...@@ -467,7 +467,7 @@ namespace Kivii.Sample.ImageUploader
{ {
if (resp.Results.IsNullOrEmpty()) if (resp.Results.IsNullOrEmpty())
{ {
MessageBox.Show($"未找到此编号:{tbxReportId.Text}"); MessageBox.Show($"未找到此编号:{reportId}");
tbxReportId.Text = ""; tbxReportId.Text = "";
currentReport = null; currentReport = null;
} }
...@@ -475,7 +475,7 @@ namespace Kivii.Sample.ImageUploader ...@@ -475,7 +475,7 @@ namespace Kivii.Sample.ImageUploader
{ {
if (resp.Results[0].Status != 100) if (resp.Results[0].Status != 100)
{ {
MessageBox.Show($"此编号{tbxReportId.Text}不在受理状态"); MessageBox.Show($"此编号{reportId}不在受理状态");
tbxReportId.Text = ""; tbxReportId.Text = "";
currentReport = null; currentReport = null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment