|
@@ -8,6 +8,8 @@
|
|
|
<BaseIndexButton ref="clear" name="clear"></BaseIndexButton>
|
|
<BaseIndexButton ref="clear" name="clear"></BaseIndexButton>
|
|
|
<BaseIndexButton ref="edit" name="edit"></BaseIndexButton>
|
|
<BaseIndexButton ref="edit" name="edit"></BaseIndexButton>
|
|
|
<BaseIndexButton ref="invalid" name="invalid"></BaseIndexButton>
|
|
<BaseIndexButton ref="invalid" name="invalid"></BaseIndexButton>
|
|
|
|
|
+ <!--打印-->
|
|
|
|
|
+ <BaseIndexButton ref="print" name="print"></BaseIndexButton>
|
|
|
</template>
|
|
</template>
|
|
|
<template #right>
|
|
<template #right>
|
|
|
<BaseIndexButton ref="add" name="add"></BaseIndexButton>
|
|
<BaseIndexButton ref="add" name="add"></BaseIndexButton>
|
|
@@ -68,15 +70,22 @@
|
|
|
</div>
|
|
</div>
|
|
|
</DkSplit>
|
|
</DkSplit>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <PrintModal ref="printModal" :doc-name="$config.docCode.moneyTransfer"
|
|
|
|
|
+ :service="$service.moneyTransferService"
|
|
|
|
|
+ :detailService="$service.moneyTransferItemService"
|
|
|
|
|
+ :postName="'trfId'"
|
|
|
|
|
+ :id="$refs?.['table-select']?.batchRows?.[0]?.trfId||null"/>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
import {indexMixin} from '@/mixins'
|
|
import {indexMixin} from '@/mixins'
|
|
|
|
|
+import PrintModal from '_c/business/print/modal'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
name: 'money-account',
|
|
name: 'money-account',
|
|
|
mixins: [indexMixin],
|
|
mixins: [indexMixin],
|
|
|
|
|
+ components: {PrintModal},
|
|
|
data() {
|
|
data() {
|
|
|
let self = this
|
|
let self = this
|
|
|
return {
|
|
return {
|
|
@@ -135,6 +144,15 @@ export default {
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
/**
|
|
/**
|
|
|
|
|
+ * @desc : 选择模板、打印机
|
|
|
|
|
+ * @author : 洪旭东
|
|
|
|
|
+ * @date : 2023-04-10 13:45
|
|
|
|
|
+ */
|
|
|
|
|
+ print() {
|
|
|
|
|
+ this.$refs.printModal.showChooseTemplate = true
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
* @desc : 加载数据
|
|
* @desc : 加载数据
|
|
|
* @author : 付斌
|
|
* @author : 付斌
|
|
|
* @date : 2024/3/1 11:16
|
|
* @date : 2024/3/1 11:16
|