|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <a-card :bordered="false">
|
|
|
+ <a-card :bordered="false" class="u-dialog-card">
|
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
@@ -10,10 +10,10 @@
|
|
|
<!-- 查询区域-END -->
|
|
|
|
|
|
<!-- 操作按钮区域 -->
|
|
|
- <!-- <div class="table-operator">
|
|
|
- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
|
|
|
- <a-button type="primary" icon="download" @click="handleExportXls('物资出库单')">导出</a-button>
|
|
|
- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
|
|
|
+ <div class="table-operator">
|
|
|
+ <!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> -->
|
|
|
+ <a-button type="primary" icon="download" @click="handleExportXls(taskno+'材料费明细')">导出</a-button>
|
|
|
+ <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
|
|
|
<a-button type="primary" icon="import">导入</a-button>
|
|
|
</a-upload> -->
|
|
|
<!-- 高级查询区域 -->
|
|
@@ -23,8 +23,8 @@
|
|
|
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
|
|
|
</a-menu>
|
|
|
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
|
|
|
- </a-dropdown>
|
|
|
- </div> -->
|
|
|
+ </a-dropdown> -->
|
|
|
+ </div>
|
|
|
|
|
|
<!-- table区域-begin -->
|
|
|
<div>
|
|
@@ -148,12 +148,15 @@
|
|
|
list: "/wzOutboundOrder/wzOutboundOrderH/getCLFList",
|
|
|
// delete: "/wzOutboundOrder/wzOutboundOrderH/delete",
|
|
|
// deleteBatch: "/wzOutboundOrder/wzOutboundOrderH/deleteBatch",
|
|
|
- // exportXlsUrl: "/wzOutboundOrder/wzOutboundOrderH/exportXls",
|
|
|
+ exportXlsUrl: "/jeecg-boot/wzOutboundOrder/wzOutboundOrderH/exportCLFDetail",
|
|
|
// importExcelUrl: "wzOutboundOrder/wzOutboundOrderH/importExcel",
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
dictOptions:{},
|
|
|
superFieldList:[],
|
|
|
+ queryParam: {
|
|
|
+ taskno: this.taskno
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -207,4 +210,11 @@
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
@import '~@assets/less/common.less';
|
|
|
+</style>
|
|
|
+<style lang="less" scoped>
|
|
|
+ .u-dialog-card{
|
|
|
+ /deep/.ant-card-body{
|
|
|
+ padding: 0 !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|