1.0.0.729d2

Former-commit-id: 482b27245d44aa3e8f12e0c0fae6dac1eba6788d
Former-commit-id: 39b3915386b8384f701701c26ad183251d7f7ae9
TSXN
wanggang 5 years ago
parent 34a4ff058f
commit b84cd6d4fc

@ -100,10 +100,10 @@ namespace IoT.Shared.Areas.Admin.Controlls
catch (Exception ex)
{
ex.PrintStack();
return RedirectTo(rawMesage: ex.Message);
return Error(ex.Message);
}
}
return RedirectTo();
return Success();
}
[ApiExplorerSettings(IgnoreApi = true)]

@ -1,4 +1,4 @@
using System.Reflection;
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.729d1")]
[assembly: AssemblyInformationalVersion("1.0.0.729d2")]

@ -193,7 +193,9 @@
var data = Enumerable.from(list).select(o => o.value).toArray();
axios.post(url, data).then(function (response) {
if (response.status === 204) {
vm.load();
setTimeout(function () {
vm.load();
}, 1000);
}
else {
Swal.fire(response.data).then(o => vm.load());

Loading…
Cancel
Save