Browse Source

infocode

release/epdc
tianq 2 years ago
parent
commit
6bb97cadfc
  1. 6
      src/views/modules/events/appeal-detail-view.vue
  2. 6
      src/views/modules/events/appeal-development-list.vue
  3. 6
      src/views/modules/events/appeal-enforce-list.vue
  4. 4
      src/views/modules/events/appeal-peo-list.vue

6
src/views/modules/events/appeal-detail-view.vue

@ -140,7 +140,7 @@
<div class="block">
<el-cascader
v-model="categoryIds"
placeholder="试试搜索:城市管理"
placeholder="试试搜索关键字"
:props="{ checkStrictly: false }"
:options="categoryOptions"
filterable
@ -246,6 +246,7 @@ export default {
name: 'itemCloseDetailView',
data() {
return {
infoCode:"",
categoryIds: [],
categoryOptions: [],
timeloading: true,
@ -285,6 +286,7 @@ export default {
mounted() {
this.dataForm.id = this.$route.query.id;
this.pageType = this.$route.query.type;
this.infoCode= this.$route.query.infoCode;
this.init();
this.getCategoryList();
},
@ -445,7 +447,7 @@ export default {
return this.$http
.get('/events/category/list', {
params: {
infoCode: 'A'
infoCode: this.infoCode
}
})
.then(({ data: res }) => {

6
src/views/modules/events/appeal-development-list.vue

@ -77,7 +77,7 @@
<el-cascader
clearable
v-model="dataForm.categoryValue"
placeholder="试试搜索:城市管理"
placeholder="试试搜索关键字"
:props="{ checkStrictly: true,emitPath: false, }"
:options="categoryOptions"
filterable
@ -410,7 +410,7 @@ export default {
return this.$http
.get('/events/category/list', {
params: {
infoCode: 'A'
infoCode: 'B'
}
})
.then(({ data: res }) => {
@ -470,7 +470,7 @@ export default {
},
dealAction (id,type) {
this.$parent.selectComponent = 'AppealDetailView'
this.$router.push({ path: '/events-appeal-development', query: { id: id,type:type } })
this.$router.push({ path: '/events-appeal-development', query: { id: id,type:type,infoCode:'B' } })
},
addDiff (id) {
this.$confirm('此操作将会标记该诉求为难点堵点, 是否继续?', '提示', {

6
src/views/modules/events/appeal-enforce-list.vue

@ -50,7 +50,7 @@
<el-cascader
clearable
v-model="dataForm.categoryValue"
placeholder="试试搜索:城市管理"
placeholder="试试搜索关键字"
:props="{ checkStrictly: true, emitPath: false }"
:options="categoryOptions"
filterable
@ -278,7 +278,7 @@ export default {
return this.$http
.get('/events/category/list', {
params: {
infoCode: 'A'
infoCode: 'C'
}
})
.then(({ data: res }) => {
@ -337,7 +337,7 @@ export default {
},
dealAction (id,type) {
this.$parent.selectComponent = 'AppealDetailView'
this.$router.push({ path: '/events-appeal-enforce', query: { id: id,type:type } })
this.$router.push({ path: '/events-appeal-enforce', query: { id: id,type:type,infoCode:'C' } })
},
addDiff(id) {
this.$confirm('此操作将会标记该诉求为难点堵点, 是否继续?', '提示', {

4
src/views/modules/events/appeal-peo-list.vue

@ -50,7 +50,7 @@
<el-cascader
clearable
v-model="dataForm.categoryValue"
placeholder="试试搜索:城市管理"
placeholder="试试搜索关键字"
:props="{ checkStrictly: true, emitPath: false }"
:options="categoryOptions"
filterable
@ -368,7 +368,7 @@ export default {
},
dealAction (id,type) {
this.$parent.selectComponent = 'AppealDetailView'
this.$router.push({ path: '/events-appeal-peo', query: { id: id,type:type } })
this.$router.push({ path: '/events-appeal-peo', query: { id: id,type:type,infoCode:'A' } })
},
addDiff(id) {
this.$confirm('此操作将会标记该诉求为难点堵点, 是否继续?', '提示', {

Loading…
Cancel
Save