查询调度命令参数修改

This commit is contained in:
dong 2022-07-27 18:19:09 +08:00
parent a7163cb437
commit 592a40c7cd
2 changed files with 2 additions and 2 deletions

View File

@ -291,7 +291,7 @@ export default {
},
searchCmd() {
this.cmdTableData = [];
sendCommandNew(this.group, 'CTC_QUERY_DISPATCH_COMMAND').then((res) => {
sendCommandNew(this.group, 'CTC_QUERY_DISPATCH_COMMAND', {}).then((res) => {
console.log(res, '---res');
if (res.code == 200) {
this.cmdTableData = res.data;

View File

@ -823,7 +823,7 @@ export default {
},
searchCmd() {
return new Promise((resolve, reject) => {
sendCommandNew(this.group, 'CTC_QUERY_DISPATCH_COMMAND').then((res) => {
sendCommandNew(this.group, 'CTC_QUERY_DISPATCH_COMMAND', {}).then((res) => {
console.log(res, '---res----');
this.seachData = res.data;
resolve();