|
|
@ -182,10 +182,8 @@ export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
orderQuery: {
|
|
|
|
orderQuery: {
|
|
|
|
bill_code: '',
|
|
|
|
beginDate:null,
|
|
|
|
bill_type: 'A',
|
|
|
|
ensDate:null,
|
|
|
|
begin_date:'',
|
|
|
|
|
|
|
|
ens_date:'',
|
|
|
|
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 10
|
|
|
|
limit: 10
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -223,6 +221,15 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
onReset() {
|
|
|
|
|
|
|
|
this.orderQuery = {
|
|
|
|
|
|
|
|
beginDate: null,
|
|
|
|
|
|
|
|
ensDate: null,
|
|
|
|
|
|
|
|
page: 1,
|
|
|
|
|
|
|
|
limit: 10
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
|
|
|
},
|
|
|
|
confirmSelect() {
|
|
|
|
confirmSelect() {
|
|
|
|
if (this.currentRow == null) {
|
|
|
|
if (this.currentRow == null) {
|
|
|
|
this.$message.error('请选择要选入的单据!')
|
|
|
|
this.$message.error('请选择要选入的单据!')
|
|
|
|