Merge remote-tracking branch 'origin/master'

prod
wj 2 years ago
commit 9d90bdaf5d

@ -657,7 +657,10 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -772,7 +775,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -892,7 +892,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -928,7 +930,9 @@ export default {
page: 1,
limit: 10
};
this.getCodeDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getCodeDetailList();
}
},
onCodeSubmit() {
this.codeQuery.page = 1;
@ -966,7 +970,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -738,7 +738,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -858,7 +860,9 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -686,7 +686,9 @@ export default {
page: 1,
limit: 10
};
this.getBizDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getBizDetailList();
}
},
onBizSubmit() {
this.bizQuery.page = 1;
@ -722,7 +724,10 @@ export default {
page: 1,
limit: 10
};
this.getCodeDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getCodeDetailList();
}
},
onCodeSubmit() {
this.codeQuery.page = 1;
@ -760,7 +765,10 @@ export default {
page: 1,
limit: 10
};
this.getResultDetailList();
if(!isBlank(this.currentRow.billNo)) {
this.getResultDetailList();
}
},
onResultSubmit() {
this.resultQuery.page = 1;

@ -46,10 +46,12 @@
</el-col>
<el-col :span="4">
<el-form-item style="display: flex;margin-left: 20px">
<el-button type="primary" icon="search" @click="getList"
>查询
</el-button
>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="getList"
>查询
</el-button>
</el-button-group>
</el-form-item>
</el-col>
</el-row>

@ -14,7 +14,8 @@
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="getList"
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary"icon="el-icon-search" @click="getList"
>查询
</el-button>
</el-button-group>
@ -265,7 +266,7 @@ export default {
supId: null,
};
this.actDateRange = [];
this.getList();
//this.getList();
},
enterKey(event) {

Loading…
Cancel
Save