From a9de980704900dd5d26c1d9d19936271c9da7f4b Mon Sep 17 00:00:00 2001 From: x_z Date: Mon, 13 Jun 2022 14:51:17 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=90=8C=E6=AD=A5=E8=AE=B0=E5=BD=95=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=AF=A6=E6=83=85=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/thrsys/SysUdimsData.vue | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/views/thrsys/SysUdimsData.vue b/src/views/thrsys/SysUdimsData.vue index feda1d0..faf2cff 100644 --- a/src/views/thrsys/SysUdimsData.vue +++ b/src/views/thrsys/SysUdimsData.vue @@ -113,6 +113,13 @@ @@ -193,6 +210,8 @@ export default { checked: false, syncTime: null, configParms: {}, + syncInfo: null, + syncVisible: false }; }, @@ -378,6 +397,14 @@ export default { .catch(() => { }); }, + detailDialog(id) { + this.syncVisible = true; + this.list.forEach(item => { + if (id === item.id) { + this.syncInfo = item.remark; + } + }) + } }, mounted() { @@ -417,4 +444,10 @@ export default { border-radius: 4px; flex-wrap: wrap; } + +.syncInfo { + font-size: medium; + font-family: "Microsoft YaHei"; + line-height: 25px; +}