diff --git a/src/views/thrsys/SysUdimsData.vue b/src/views/thrsys/SysUdimsData.vue index f497b9b..e5a9a00 100644 --- a/src/views/thrsys/SysUdimsData.vue +++ b/src/views/thrsys/SysUdimsData.vue @@ -101,6 +101,13 @@ @@ -181,6 +198,8 @@ export default { checked: false, syncTime: null, configParms: {}, + syncInfo: null, + syncVisible: false }; }, @@ -341,6 +360,14 @@ export default { .catch(() => { }); }, + detailDialog(id) { + this.syncVisible = true; + this.list.forEach(item => { + if (id === item.id) { + this.syncInfo = item.remark; + } + }) + } }, mounted() { @@ -380,4 +407,10 @@ export default { border-radius: 4px; flex-wrap: wrap; } + +.syncInfo { + font-size: medium; + font-family: "Microsoft YaHei"; + line-height: 25px; +}