|
|
|
@ -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;
|
|
|
|
|