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">
+
-
+
去处置
+ @click="getDetailById(row)"
+ >查看
+ 去处置
@@ -119,6 +126,66 @@
>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+
+
+
@@ -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')
+ }
},
};