diff --git a/src/views/modules/cabaseinfo/wghSjxxb.vue b/src/views/modules/cabaseinfo/wghSjxxb.vue
index d3a9c103..cfbb60c3 100644
--- a/src/views/modules/cabaseinfo/wghSjxxb.vue
+++ b/src/views/modules/cabaseinfo/wghSjxxb.vue
@@ -2,31 +2,24 @@
-
+
-
+
-
+
-
-
-
@@ -50,46 +43,46 @@
width="50"
>
+ align="center"
+ :show-overflow-tooltip="true">
@@ -125,49 +118,79 @@
width="37%"
:before-close="handleClose">
-
-
-
+
+
+
+
+
+
+
-
+
+
+
+
+
-
+
+
+
+
+
-
+
-
+
+
+
+
+
-
-
+
+
-
+
取 消
@@ -183,24 +206,27 @@ export default {
data() {
return {
mixinViewModuleOptions: {
- getDataListURL: "/opendata/wghSjxx/todo/wghSjxxPage",
+ getDataListURL: "/opendata/caKettleBaseDisputeProcess/todo/getCaKettlePage",
getDataListIsPage: true,
deleteURL: "",
deleteIsBatch: true,
},
dataForm: {
- wgymc: "",
- ssjdbq: "",
- sssqbq:"",
- hcyj:""
+ wgy: "",
+ griddingname:"",
+ eventtitle:""
},
detailForm:{
- wgymc: "",
- ssjdbq: "",
- sssqbq:"",
- hcyj:"",
- hcsj:"",
- sjms:"",
+ griddingname: "",
+ eventtitle: "",
+ eventdate:"",
+ eventaddrdetail:"",
+ eventtext:"",
+ finishedmethod:"",
+ wgy:"",
+ eventsource:"",
+ curstatus:"",
+ isExtracted:"",
},
optionsG:[],
dialogVisible: false
@@ -209,14 +235,56 @@ export default {
methods:{
getDetailById(row){
this.dialogVisible = true
- this.$http.post(`/opendata/wghSjxx/getWghSjxxDetail`,{
- recid:row.row.recid
+ this.$http.post(`/opendata/caKettleBaseDisputeProcess/getCaKettleDetails`,{
+ baseKeyId:row.row.baseKeyId
}).then(resp => {
this.detailForm = resp.data.data
+ this.EscapeAttribute()
}).catch(error => {
this.$message.error(error)
})
},
+ EscapeAttribute(){
+ if(this.detailForm.eventsource === "05") {
+ this.detailForm.eventsource = '网格员上报'
+ } else if(this.detailForm.eventsource === "03") {
+ this.detailForm.eventsource = '街道吹哨'
+ } else {
+ this.detailForm.eventsource = '其他'
+ }
+ switch (this.detailForm.curstatus) {
+ case 0 :
+ this.detailForm.curstatus = '待提交'
+ break
+ case 1 :
+ this.detailForm.curstatus = '提交'
+ break
+ case 2 :
+ this.detailForm.curstatus = '代派发'
+ break
+ case 3 :
+ this.detailForm.curstatus = '处理中'
+ break
+ case 4 :
+ this.detailForm.curstatus = '复核'
+ break
+ case 5 :
+ this.detailForm.curstatus = '办结'
+ break
+ case 6 :
+ this.detailForm.curstatus = '退回'
+ break
+ default :
+ this.detailForm.curstatus = '作废'
+ }
+ if(this.detailForm.isExtracted === '0') {
+ this.detailForm.isExtracted = '未抽取'
+ } else if (this.detailForm.isExtracted === '1') {
+ this.detailForm.isExtracted = '已抽取'
+ } else {
+ this.detailForm.isExtracted = '准备抽取'
+ }
+ },
handleClose(done) {
this.$confirm('确认关闭?')
.then(_ => {