Browse Source

事件接口更换,宽度更改

feature
mk 2 years ago
parent
commit
a88d4872d4
  1. 2
      src/views/dataBoard/cpts/details/jmxq.vue
  2. 2
      src/views/dataBoard/cpts/details/smyd.vue
  3. 2
      src/views/dataBoard/cpts/details/xqwmz.vue
  4. 9
      src/views/dataBoard/cpts/event-details.vue
  5. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/complaint.vue
  6. 3
      src/views/dataBoard/cpts/personnel/modules/businessTables/reporting-events.vue

2
src/views/dataBoard/cpts/details/jmxq.vue

@ -190,7 +190,7 @@ export default {
}
.eventWrap {
width: 1094px;
// width: 1094px;
height: 798px;
overflow-y: auto;
overflow-x: hidden;

2
src/views/dataBoard/cpts/details/smyd.vue

@ -207,7 +207,7 @@ export default {
}
.eventWrap {
width: 1094px;
// width: 1094px;
max-height: 798px;
overflow-y: auto;
overflow-x: hidden;

2
src/views/dataBoard/cpts/details/xqwmz.vue

@ -291,7 +291,7 @@ export default {
}
.eventWrap {
width: 1094px;
// width: 1094px;
max-height: 798px;
overflow-y: auto;
overflow-x: hidden;

9
src/views/dataBoard/cpts/event-details.vue

@ -221,6 +221,10 @@ export default {
type: Boolean,
default: false,
},
formType: {
type: String,
default: false,
},
},
data() {
@ -267,7 +271,7 @@ export default {
getDetailsData(id) {
this.loading = true;
this.$http
.post("/governance/icEvent/detail", {icEventId: id})
.post(`/governance/${this.formType == '12345'?'icEvent':'icEventOld'}/detail`, {icEventId: id})
.then((res) => {
const {code, data, msg} = res.data;
if (code === 0) {
@ -279,10 +283,9 @@ export default {
}
});
},
getProcessData(id) {
this.$http
.post("/governance/icEvent/process", {icEventId: id})
.post(`/governance/${this.formType == '12345'?'icEvent':'icEventOld'}/process`, {icEventId: id})
.then((res) => {
const {code, data, msg} = res.data;
if (code === 0) {

2
src/views/dataBoard/cpts/personnel/modules/businessTables/complaint.vue

@ -17,7 +17,7 @@
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>
<eventDetails :showDialog="showDialog" :id="rowId" @close="close" />
<eventDetails :showDialog="showDialog" :id="rowId" @close="close" :formType="'12345'" />
<Pagination
v-show="total > 0"
:total="total"

3
src/views/dataBoard/cpts/personnel/modules/businessTables/reporting-events.vue

@ -23,7 +23,7 @@
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<eventDetails :showDialog="showDialog" :id="this.rowId" @close="close" />
<eventDetails :showDialog="showDialog" :formType="'event'" :id="this.rowId" @close="close" />
</div>
</template>
@ -45,6 +45,7 @@ export default {
total: 0,
rowId: null,
showDialog: false,
};
},
created() {},

Loading…
Cancel
Save