From 6a074bb08783744bcc2de2220ecef4ab56c5fa2b Mon Sep 17 00:00:00 2001 From: jiang <1354748262@qq.com> Date: 星期四, 25 一月 2024 10:58:58 +0800 Subject: [PATCH] 更新配瓦规则设置新增查询功能实现 --- jcdm-ui/src/views/main/da/opcuaconfig/index.vue | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/jcdm-ui/src/views/main/da/opcuaconfig/index.vue b/jcdm-ui/src/views/main/da/opcuaconfig/index.vue index 0b4e9e7..17215a4 100644 --- a/jcdm-ui/src/views/main/da/opcuaconfig/index.vue +++ b/jcdm-ui/src/views/main/da/opcuaconfig/index.vue @@ -307,8 +307,17 @@ }, created() { this.getList(); + this.getProcessesList(); + }, methods: { + /** 鏌ヨ宸ュ簭淇℃伅鍒楄〃 */ + getProcessesList() { + this.loading = true; + listProcesses(this.queryParams).then(response => { + this.options = response.rows; + }); + }, handleSelectChange(selectedOption) { this.ProcessesqueryParams.process = selectedOption; listProcesses(this.ProcessesqueryParams).then(response => { -- Gitblit v1.9.3