|
|
@@ -6,10 +6,13 @@
|
|
|
:title="title"
|
|
|
:append-to-body="true"
|
|
|
:close-on-click-modal="false"
|
|
|
+ :fullscreen="fullscreen"
|
|
|
width="70%"
|
|
|
:before-close="cancel"
|
|
|
>
|
|
|
-
|
|
|
+ <template slot="title">
|
|
|
+ <modalTitle :title="title" @setFullscreen="fullscreen=!fullscreen"></modalTitle>
|
|
|
+ </template>
|
|
|
<el-card shadow="never">
|
|
|
<div class="switch">
|
|
|
<div class="switch_left">
|
|
|
@@ -63,13 +66,14 @@ import bpmDetail from '@/views/bpm/processInstance/detail.vue';
|
|
|
import InventoryTable from "@/views/saleManage/saleOrder/accountstatement/components/inventoryTable.vue";
|
|
|
import saleForm from "@/views/saleManage/saleOrder/accountstatement/components/saleForm.vue";
|
|
|
import {infoAccountStatementAPI} from "@/api/saleManage/accountstatement";
|
|
|
+import modalTitle from '@/BIZComponents/modalTitle.vue';
|
|
|
|
|
|
export default {
|
|
|
props: ['detailDialogFlag'],
|
|
|
components: {
|
|
|
saleForm,
|
|
|
InventoryTable,
|
|
|
- bpmDetail
|
|
|
+ bpmDetail,modalTitle
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
@@ -78,6 +82,7 @@ export default {
|
|
|
{key: 'main', name: '对账单详情'},
|
|
|
{key: 'bpm', name: '流程详情'}
|
|
|
],
|
|
|
+ fullscreen:false,
|
|
|
|
|
|
visible: false,
|
|
|
form: {},
|