|
|
@@ -8,8 +8,12 @@
|
|
|
:close-on-click-modal="false"
|
|
|
width="60%"
|
|
|
@close="cancel"
|
|
|
+ :fullscreen="fullscreen"
|
|
|
:modal="isModal"
|
|
|
>
|
|
|
+ <template slot="title">
|
|
|
+ <modalTitle :title="title" @setFullscreen="fullscreen=!fullscreen"></modalTitle>
|
|
|
+ </template>
|
|
|
<div class="switch">
|
|
|
<div class="switch_left">
|
|
|
<ul>
|
|
|
@@ -188,6 +192,7 @@ import {copyObj} from '@/utils/util';
|
|
|
import bpmDetail from '@/views/bpm/processInstance/detail.vue';
|
|
|
import timeDialog from '@/components/timeDialog/index.vue';
|
|
|
import fileMain from '@/components/addDoc/index';
|
|
|
+import modalTitle from '@/BIZComponents/modalTitle.vue';
|
|
|
|
|
|
export default {
|
|
|
mixins: [dictMixins],
|
|
|
@@ -197,10 +202,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
- bpmDetail, timeDialog,fileMain
|
|
|
+ bpmDetail, timeDialog,fileMain,modalTitle
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ fullscreen:false,
|
|
|
activeComp: 'main',
|
|
|
tabOptions: [
|
|
|
{key: 'main', name: '需求详情'},
|