bug584
This commit is contained in:
parent
a0526237f1
commit
f06af37a5f
|
@ -221,7 +221,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
operationType (val) {
|
operationType (val) {
|
||||||
if (val !== 'all') {
|
if (val !== 'all' && val !== '') {
|
||||||
this.dataForm.operationType = val
|
this.dataForm.operationType = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -245,6 +245,7 @@ export default {
|
||||||
|
|
||||||
// 重置按钮
|
// 重置按钮
|
||||||
resetFunction () {
|
resetFunction () {
|
||||||
|
this.operationType = '' // 操作类型转化
|
||||||
const params = {
|
const params = {
|
||||||
status: '',
|
status: '',
|
||||||
creatorName: '',
|
creatorName: '',
|
||||||
|
@ -254,10 +255,10 @@ export default {
|
||||||
operationType: 'all'
|
operationType: 'all'
|
||||||
}
|
}
|
||||||
this.value1 = '' // 格式化日期
|
this.value1 = '' // 格式化日期
|
||||||
this.operationType = '' // 操作类型转化
|
|
||||||
this.page = 1
|
this.page = 1
|
||||||
this.limit = 10
|
this.limit = 10
|
||||||
this.dataForm = params
|
this.dataForm = params
|
||||||
|
console.log('this.dataForm', this.dataForm)
|
||||||
this.getDataList() // 重置完调用查询方法
|
this.getDataList() // 重置完调用查询方法
|
||||||
},
|
},
|
||||||
// 序号
|
// 序号
|
||||||
|
|
Loading…
Reference in New Issue