修改bug

prod
wangwei 2 years ago
parent 7aab3de7d3
commit d0e398271e

@ -89,6 +89,7 @@ export default {
return { return {
query: { query: {
code: "", code: "",
orderId:"",
corpOrderId: "", corpOrderId: "",
page: 1, page: 1,
limit: 20, limit: 20,
@ -113,6 +114,7 @@ export default {
}); });
this.query = { this.query = {
code: "", code: "",
orderId:"",
corpOrderId: "", corpOrderId: "",
page: 1, page: 1,
limit: 20, limit: 20,
@ -136,6 +138,7 @@ export default {
}, },
getCodeList() { getCodeList() {
debugger
this.loading = true; this.loading = true;
this.query.orderId = this.idQuery.billNo; this.query.orderId = this.idQuery.billNo;
findByOrderId(this.query) // findByOrderId(this.query) //

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

Loading…
Cancel
Save