时间及复选框类型转换
**//全局刷新**
handleEmptyPaymentBill: function() {
window.location.reload();
},
**// 时间**
monthDatechange(date, dateString) {
this.searchPaymentBillObj.endDate = dateString;
},
**// 复选**
deductChange(e) {
this.searchPaymentBillObj.undeducted = Object.is(e.target.checked, true)
? 1
: 0;
},