|
|
|
@ -110,13 +110,13 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="filterQuery.limit"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:current-page="filterQuery.page"
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="handleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card class="el-card" v-if="true" id="printJS-form">
|
|
|
|
@ -292,6 +292,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
idQuery: {
|
|
|
|
|
id: "",
|
|
|
|
|
billNo:""
|
|
|
|
|
},
|
|
|
|
|
curIndex: "",
|
|
|
|
|
adListNoDataText: "无数据",
|
|
|
|
@ -389,7 +390,7 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
|
this.filterQuery.page = val.page;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -463,8 +464,10 @@ export default {
|
|
|
|
|
// this.dialogTableVisible = true;
|
|
|
|
|
},
|
|
|
|
|
intentDetail(row) {
|
|
|
|
|
debugger
|
|
|
|
|
this.codeDetailVisible = true;
|
|
|
|
|
this.idQuery.id = row.id;
|
|
|
|
|
this.idQuery.billNo=row.billNo;
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.successOrderExportPDFSettingVisible = false;
|
|
|
|
|