From 33c90ee0a9caa07da8f4b50c7d849d3170f5e3d7 Mon Sep 17 00:00:00 2001 From: HAHA Date: Thu, 30 Jun 2022 15:35:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9F=A5=E7=9C=8B=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/cabaseinfo/wghSjxxb.vue | 158 +++++++++++++++++----- 1 file changed, 126 insertions(+), 32 deletions(-) diff --git a/src/views/modules/cabaseinfo/wghSjxxb.vue b/src/views/modules/cabaseinfo/wghSjxxb.vue index e931efe9..328ca57e 100644 --- a/src/views/modules/cabaseinfo/wghSjxxb.vue +++ b/src/views/modules/cabaseinfo/wghSjxxb.vue @@ -50,60 +50,67 @@ width="50" > - - - + :show-overflow-tooltip="true" + > + :show-overflow-tooltip="true"> + :show-overflow-tooltip="true"> + + + + :show-overflow-tooltip="true"> + - @@ -140,14 +207,41 @@ export default { communityname:"", statusname:"" }, - optionsG:[] + detailForm:{ + infosourcename: "", + infotypename: "", + communityname:"", + description:"", + address:"", + statusname:"", + streetname:"", + }, + optionsG:[], + dialogVisible: false }; }, methods:{ - - }, -created(){ - this.getGridList('query') + getDetailById(row){ + this.dialogVisible = true + this.$http.post(`/opendata/wghSjxxb/sjxx/getDetailById`,{ + taskid:row.row.taskid + }).then(resp => { + this.detailForm = resp.data.data + }).catch(error => { + this.$message.error(error) + }) + }, + handleClose(done) { + this.$confirm('确认关闭?') + .then(_ => { + done(); + dialogVisible = false + }) + .catch(_ => {}); + }, + jumplink(){ + window.open('http://120.221.72.15:8089/sbwgh/bizsys/login.htm','_blank') + } }, };