|
|
@@ -184,17 +184,17 @@
|
|
|
if(val == 'jianhang'){
|
|
|
this.bankValue = 1
|
|
|
this.tableData = []
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("已选择支付渠道为 建行支付")
|
|
|
}else if(val == 'nongshang'){
|
|
|
this.bankValue = 2
|
|
|
this.tableData = []
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("已选择支付渠道为 农商行支付")
|
|
|
}else{
|
|
|
this.bankValue = ''
|
|
|
this.tableData = []
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("已选择为所有支付")
|
|
|
}
|
|
|
},
|
|
|
@@ -214,7 +214,7 @@
|
|
|
this.tableData = []
|
|
|
this.all_money = 0
|
|
|
this.flag = 1
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
}
|
|
|
},
|
|
|
//选择月份按钮
|
|
|
@@ -238,19 +238,19 @@
|
|
|
this.tableData = []
|
|
|
this.all_money = 0
|
|
|
this.timeValue = this.monthValue
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("月份选择成功")
|
|
|
// console.log(this.flag+' '+this.timeValue)
|
|
|
},
|
|
|
//确定选择日期
|
|
|
selectDay() {
|
|
|
- // console.log(this.dayValue)
|
|
|
+ console.log(this.dayValue)
|
|
|
this.formInline.value = this.dayValue
|
|
|
this.editdialogFormVisible = false
|
|
|
this.tableData = []
|
|
|
this.all_money = 0
|
|
|
this.timeValue = this.dayValue
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("日期选择成功")
|
|
|
// console.log(this.flag+' '+this.timeValue)
|
|
|
},
|
|
|
@@ -271,7 +271,7 @@
|
|
|
// console.log(this.selectOrder)
|
|
|
this.tableData = []
|
|
|
this.all_money = 0
|
|
|
- this.getTableData(this.$Api.orderList, this.flag, this.index, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
+ this.getTableData(this.$Api.orderList, this.flag, 1, this.selectOrder, this.timeValue, this.bankValue)
|
|
|
this.$message.success("查找成功")
|
|
|
},
|
|
|
//获取订单数据
|
|
|
@@ -298,7 +298,7 @@
|
|
|
list.id = res.data.data.page.list[i].payerIdentify
|
|
|
list.stuName = res.data.data.page.list[i].studentName
|
|
|
list.class = res.data.data.page.list[i].className
|
|
|
- // list.money = res.data.data.page.list[i].orderAmount
|
|
|
+ list.money = res.data.data.page.list[i].orderAmount
|
|
|
if(res.data.data.page.list[i].payMethod == 1){
|
|
|
list.method = "建行支付"
|
|
|
}else if(res.data.data.page.list[i].payMethod == 2){
|