完善销售单据列表
This commit is contained in:
parent
5d71acc886
commit
b556658ecd
@ -110,6 +110,7 @@
|
||||
<!-- 操作按钮区域 -->
|
||||
<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="isShowExcel" type="primary" icon="download" @click="handleExport">导出</a-button>
|
||||
<a-dropdown>
|
||||
<a-menu slot="overlay">
|
||||
<a-menu-item key="1" v-if="btnEnableList.indexOf(1)>-1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
||||
@ -195,6 +196,7 @@
|
||||
<!-- 表单区域 -->
|
||||
<sale-out-modal ref="modalForm" @ok="modalFormOk" @close="modalFormClose"></sale-out-modal>
|
||||
<bill-detail ref="modalDetail" @ok="modalFormOk" @close="modalFormClose"></bill-detail>
|
||||
<bill-excel-iframe ref="billExcelIframe" @ok="modalFormOk" @close="modalFormClose"></bill-excel-iframe>
|
||||
</a-card>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@ -202,6 +204,7 @@
|
||||
<script>
|
||||
import SaleOutModal from './modules/SaleOutModal'
|
||||
import BillDetail from './dialog/BillDetail'
|
||||
import BillExcelIframe from '@/components/tools/BillExcelIframe'
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||||
import { BillListMixin } from './mixins/BillListMixin'
|
||||
import JEllipsis from '@/components/jeecg/JEllipsis'
|
||||
@ -213,6 +216,7 @@
|
||||
components: {
|
||||
SaleOutModal,
|
||||
BillDetail,
|
||||
BillExcelIframe,
|
||||
JEllipsis,
|
||||
JDate
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user