给财务单据的列表页面进行优化
This commit is contained in:
@@ -40,6 +40,7 @@ export const BillListMixin = {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.initColumnsSetting()
|
this.initColumnsSetting()
|
||||||
|
this.isShowExcel = Vue.ls.get('isShowExcel');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
myHandleAdd() {
|
myHandleAdd() {
|
||||||
@@ -116,7 +117,6 @@ export const BillListMixin = {
|
|||||||
console.log(value);
|
console.log(value);
|
||||||
},
|
},
|
||||||
initSystemConfig() {
|
initSystemConfig() {
|
||||||
this.isShowExcel = Vue.ls.get('isShowExcel');
|
|
||||||
getCurrentSystemConfig().then((res) => {
|
getCurrentSystemConfig().then((res) => {
|
||||||
if(res.code === 200 && res.data){
|
if(res.code === 200 && res.data){
|
||||||
let multiBillType = res.data.multiBillType
|
let multiBillType = res.data.multiBillType
|
||||||
@@ -208,7 +208,7 @@ export const BillListMixin = {
|
|||||||
//导出单据
|
//导出单据
|
||||||
handleExport() {
|
handleExport() {
|
||||||
let search = this.getQueryParams().search
|
let search = this.getQueryParams().search
|
||||||
this.$refs.billExcelIframe.show(this.model, this.billExcelUrl + '?search=' + search, 150)
|
this.$refs.billExcelIframe.show(this.model, this.billExcelUrl + '?search=' + search + '&type=1', 150)
|
||||||
this.$refs.billExcelIframe.title = "确认导出"
|
this.$refs.billExcelIframe.title = "确认导出"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,6 +83,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -132,6 +133,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<advance-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></advance-in-modal>
|
<advance-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></advance-in-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -139,6 +141,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import AdvanceInModal from './modules/AdvanceInModal'
|
import AdvanceInModal from './modules/AdvanceInModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -149,6 +152,7 @@
|
|||||||
components: {
|
components: {
|
||||||
AdvanceInModal,
|
AdvanceInModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -83,6 +83,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -132,6 +133,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<giro-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></giro-modal>
|
<giro-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></giro-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -139,6 +141,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import GiroModal from './modules/GiroModal'
|
import GiroModal from './modules/GiroModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -149,6 +152,7 @@
|
|||||||
components: {
|
components: {
|
||||||
GiroModal,
|
GiroModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -92,6 +92,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1"@click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1"@click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -141,6 +142,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<item-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></item-in-modal>
|
<item-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></item-in-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -148,6 +150,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import ItemInModal from './modules/ItemInModal'
|
import ItemInModal from './modules/ItemInModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -158,6 +161,7 @@
|
|||||||
components: {
|
components: {
|
||||||
ItemInModal,
|
ItemInModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -92,6 +92,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -141,6 +142,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<item-out-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></item-out-modal>
|
<item-out-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></item-out-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -148,6 +150,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import ItemOutModal from './modules/ItemOutModal'
|
import ItemOutModal from './modules/ItemOutModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -158,6 +161,7 @@
|
|||||||
components: {
|
components: {
|
||||||
ItemOutModal,
|
ItemOutModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -97,6 +97,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -147,6 +148,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<money-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></money-in-modal>
|
<money-in-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></money-in-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import MoneyInModal from './modules/MoneyInModal'
|
import MoneyInModal from './modules/MoneyInModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -164,6 +167,7 @@
|
|||||||
components: {
|
components: {
|
||||||
MoneyInModal,
|
MoneyInModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -97,6 +97,7 @@
|
|||||||
<!-- 操作按钮区域 -->
|
<!-- 操作按钮区域 -->
|
||||||
<div class="table-operator" style="margin-top: 5px">
|
<div class="table-operator" style="margin-top: 5px">
|
||||||
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
|
||||||
|
<a-button v-if="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||||
<a-dropdown>
|
<a-dropdown>
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||||
@@ -147,6 +148,7 @@
|
|||||||
<!-- 表单区域 -->
|
<!-- 表单区域 -->
|
||||||
<money-out-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></money-out-modal>
|
<money-out-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></money-out-modal>
|
||||||
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
<financial-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></financial-detail>
|
||||||
|
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -154,6 +156,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import MoneyOutModal from './modules/MoneyOutModal'
|
import MoneyOutModal from './modules/MoneyOutModal'
|
||||||
import FinancialDetail from './dialog/FinancialDetail'
|
import FinancialDetail from './dialog/FinancialDetail'
|
||||||
|
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||||
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
import { FinancialListMixin } from './mixins/FinancialListMixin'
|
||||||
import JDate from '@/components/jeecg/JDate'
|
import JDate from '@/components/jeecg/JDate'
|
||||||
@@ -164,6 +167,7 @@
|
|||||||
components: {
|
components: {
|
||||||
MoneyOutModal,
|
MoneyOutModal,
|
||||||
FinancialDetail,
|
FinancialDetail,
|
||||||
|
BillExcelIframe,
|
||||||
JDate
|
JDate
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import {findFinancialDetailByNumber, findBySelectSup, findBySelectCus, findBySelectOrgan, findBySelectRetail,
|
import {findFinancialDetailByNumber, findBySelectSup, findBySelectCus, findBySelectOrgan, findBySelectRetail,
|
||||||
getUserList, getPersonByType, getAccount, getCurrentSystemConfig} from '@/api/api'
|
getUserList, getPersonByType, getAccount, getCurrentSystemConfig, getPlatformConfigByKey} from '@/api/api'
|
||||||
import { getCheckFlag } from "@/utils/util"
|
import { getCheckFlag } from "@/utils/util"
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
|
||||||
@@ -8,6 +8,9 @@ export const FinancialListMixin = {
|
|||||||
return {
|
return {
|
||||||
/* 原始审核是否开启 */
|
/* 原始审核是否开启 */
|
||||||
checkFlag: true,
|
checkFlag: true,
|
||||||
|
/* 单据Excel是否开启 */
|
||||||
|
isShowExcel: false,
|
||||||
|
billExcelUrl: '',
|
||||||
prefixNo: '',
|
prefixNo: '',
|
||||||
supList: [],
|
supList: [],
|
||||||
cusList: [],
|
cusList: [],
|
||||||
@@ -33,6 +36,7 @@ export const FinancialListMixin = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
this.isShowExcel = Vue.ls.get('isShowExcel');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
myHandleAdd() {
|
myHandleAdd() {
|
||||||
@@ -92,6 +96,13 @@ export const FinancialListMixin = {
|
|||||||
this.checkFlag = getCheckFlag(multiBillType, multiLevelApprovalFlag, this.prefixNo)
|
this.checkFlag = getCheckFlag(multiBillType, multiLevelApprovalFlag, this.prefixNo)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
getPlatformConfigByKey({ "platformKey": "bill_excel_url" }).then((res) => {
|
||||||
|
if (res && res.code === 200) {
|
||||||
|
if(res.data.platformValue) {
|
||||||
|
this.billExcelUrl = res.data.platformValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
initSupplier() {
|
initSupplier() {
|
||||||
let that = this;
|
let that = this;
|
||||||
@@ -154,6 +165,12 @@ export const FinancialListMixin = {
|
|||||||
},
|
},
|
||||||
onDateOk(value) {
|
onDateOk(value) {
|
||||||
console.log(value);
|
console.log(value);
|
||||||
|
},
|
||||||
|
//导出单据
|
||||||
|
handleExport() {
|
||||||
|
let search = this.getQueryParams().search
|
||||||
|
this.$refs.billExcelIframe.show(this.model, this.billExcelUrl + '?search=' + search + '&type=2', 150)
|
||||||
|
this.$refs.billExcelIframe.title = "确认导出"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user