发票bug修改提交

fp_dev
郑明梁 2 years ago
parent 19054110f2
commit b1626f6dd2

@ -712,11 +712,13 @@ export default {
this.determineData = row this.determineData = row
this.determineVisible = true this.determineVisible = true
}, },
closeDetermineDialog() { closeDetermineDialog(val) {
this.determineVisible = false this.determineVisible = false
if(val!=false){
this.orderList = [] this.orderList = []
this.productDetailList = [] this.productDetailList = []
this.getInvoiceList() this.getInvoiceList()
}
}, },
handleSelectionChange(val) { handleSelectionChange(val) {
this.currentRow.billNo = val.billNo this.currentRow.billNo = val.billNo

@ -593,6 +593,10 @@ export default {
getOrderDetail() { getOrderDetail() {
this.codeQuery.page = 1 this.codeQuery.page = 1
this.getCodeDetailLists() this.getCodeDetailLists()
this.codeDetailList=[]
this.currentRow={
billNo: ''
}
//this.getResultDetailList(); //this.getResultDetailList();
}, },

@ -6,7 +6,7 @@
<el-row type="flex" justify="end" > <el-row type="flex" justify="end" >
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: 10px"> <el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: 10px">
<el-button type="primary" @click.native="determineBtn()" :loading="loading">确认</el-button> <el-button type="primary" @click.native="determineBtn()" :loading="loading">确认</el-button>
<el-button type="primary" @click.native="closeDialog()" :loading="loading">取消</el-button> <el-button type="primary" @click.native="closeDialog(false)" :loading="loading">取消</el-button>
</el-button-group> </el-button-group>
</el-row> </el-row>

Loading…
Cancel
Save