Browse Source

调整自适应

dev
caoyizhong 2 years ago
parent
commit
e58f172631
  1. 1
      src/views/activiti/Separate.vue
  2. 11
      src/views/activiti/form/ProcessUdgetPlanForm.vue
  3. 15
      src/views/activiti/historicDetail.vue
  4. 13
      src/views/activiti/historicPictrue.vue

1
src/views/activiti/Separate.vue

@ -31,7 +31,6 @@ name: "Separate",
}, },
created() { created() {
console.log("有值LOL",JSON.parse(decodeURIComponent(this.$route.query.item))); console.log("有值LOL",JSON.parse(decodeURIComponent(this.$route.query.item)));
this.lcModa = JSON.parse(decodeURIComponent(this.$route.query.item)); this.lcModa = JSON.parse(decodeURIComponent(this.$route.query.item));
console.log(this.lcModa); console.log(this.lcModa);
}, },

11
src/views/activiti/form/ProcessUdgetPlanForm.vue

@ -1,6 +1,6 @@
<template> <template>
<a-spin :spinning="confirmLoading" style="height: 680px;padding-top: 10px"> <a-spin :spinning="confirmLoading" style="padding-top: 10px;" :style="conheight">
<j-form-container style="background-color: #efefef;padding-top: 10px" > <j-form-container style="background-color: #efefef;padding-top: 10px" >
<!-- 主表单区域 --> <!-- 主表单区域 -->
<a-form :form="form" slot="detail"> <a-form :form="form" slot="detail">
@ -247,6 +247,9 @@
return { return {
// //
listId: [], listId: [],
conheight:{
height:''
},
// data, // data,
// columns, // columns,
// editingKey: '', // editingKey: '',
@ -691,6 +694,9 @@
mounted() { mounted() {
// console.log( isPlanType); // console.log( isPlanType);
// this.form.setFieldsValue("materialGroup",123123); // this.form.setFieldsValue("materialGroup",123123);
// mounted
window.addEventListener('resize', this.getHeight);
this.getHeight();
}, },
methods: { methods: {
lengthCheck(rule, value, callback) { lengthCheck(rule, value, callback) {
@ -699,6 +705,9 @@
callback('长度应当在0 ~ 12 字符') callback('长度应当在0 ~ 12 字符')
} }
}, },
getHeight(){
this.conheight.height=window.innerHeight-230+'px';
},
selectRowChange(a, b, c) { selectRowChange(a, b, c) {
// console.log("",a,b,c); // console.log("",a,b,c);
}, },

15
src/views/activiti/historicDetail.vue

@ -1,7 +1,5 @@
<style lang="less">
</style>
<template> <template>
<div class="search"> <div class="search" :style="conheight">
<a-card style="margin-bottom:10px;"> <a-card style="margin-bottom:10px;">
<p slot="title"> <p slot="title">
<span>流程审批进度历史</span> <span>流程审批进度历史</span>
@ -124,6 +122,9 @@ export default {
historicFlow:'/actTask/historicFlow/', historicFlow:'/actTask/historicFlow/',
getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/` getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/`
}, },
conheight:{
height:''
},
type: 0, type: 0,
loading: false, // loading: false, //
loadingImg: false, loadingImg: false,
@ -138,12 +139,20 @@ export default {
this.init(); this.init();
} }
}, },
mounted() {
// mounted
window.addEventListener('resize', this.getHeight);
this.getHeight();
},
watch: { watch: {
procInstId:function(newval ,oldName) { procInstId:function(newval ,oldName) {
this.init(); this.init();
} }
}, },
methods: { methods: {
getHeight(){
this.conheight.height=window.innerHeight-230+'px';
},
loadData(){ loadData(){
}, },

13
src/views/activiti/historicPictrue.vue

@ -1,7 +1,7 @@
<style lang="less"> <style lang="less">
</style> </style>
<template> <template>
<div class="search"> <div class="search" :style="conheight" style="overflow:auto;">
<!--<a-card style="margin-bottom:10px;"> <!--<a-card style="margin-bottom:10px;">
<p slot="title"> <p slot="title">
<span>流程审批进度历史</span> <span>流程审批进度历史</span>
@ -120,6 +120,9 @@ export default {
}, },
data() { data() {
return { return {
conheight:{
height:''
},
url:{ url:{
historicFlow:'/actTask/historicFlow/', historicFlow:'/actTask/historicFlow/',
getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/`, getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/`,
@ -150,6 +153,11 @@ export default {
// //
// } // }
}, },
mounted() {
// mounted
window.addEventListener('resize', this.getHeight);
this.getHeight();
},
watch: { watch: {
procInstId:function(newval ,oldName) { procInstId:function(newval ,oldName) {
this.init(); this.init();
@ -159,6 +167,9 @@ export default {
} }
}, },
methods: { methods: {
getHeight(){
this.conheight.height=window.innerHeight-230+'px';
},
loadData(){ loadData(){
}, },

Loading…
Cancel
Save