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; +}