导出excel

prod
wangwei 2 years ago
parent e4cb0b7141
commit 0d597ddfd0

@ -39,3 +39,12 @@ export function filterYearList(params) {
params: params
});
}
export function excelImport(params) {
return axios({
url: "/udiwms/inv/excelExportOut",
method: "get",
params: params
});
}

@ -104,6 +104,10 @@
icon="el-icon-search"
>查询
</el-button>
<el-button type="primary" @click="excel"
icon="el-icon-upload2"
>导出
</el-button>
</el-button-group>
</el-form-item>
</el-form>
@ -153,7 +157,7 @@
</template>
<script>
import {getStatOrderList, filterDayList} from "@/api/inout/statData";
import {getStatOrderList, filterDayList, excelImport} from "@/api/inout/statData";
const formJson = {
site_id: "",
@ -186,6 +190,7 @@ export default {
page: 1,
limit: 10
},
key:null,
detailLoading: false,
detailList: [],
detailTotal: 0,
@ -276,6 +281,14 @@ export default {
this.detailList = [];
this.detailTotal = 0;
},
excel(){
let params={billNo:this.currentRow.recordKey};
excelImport(params ).then( res =>{
this.$message("成功")
})
},
//
getList() {
this.loading = true;

Loading…
Cancel
Save