|
@@ -192,9 +192,7 @@ export default {
|
|
|
getFilterItems(isTurnPage) {
|
|
|
//翻页时筛选条件没点确定则清空
|
|
|
if(isTurnPage&&!this.searched){
|
|
|
- this.filter={
|
|
|
- conceptName:''
|
|
|
- };
|
|
|
+ this.filter.conceptName='';
|
|
|
};
|
|
|
const param = {
|
|
|
current: this.currentPage,
|
|
@@ -241,9 +239,7 @@ export default {
|
|
|
if(res.data.code=='0'){
|
|
|
if(!this.searched){
|
|
|
//未点确认时清空搜索条件
|
|
|
- this.filter={
|
|
|
- conceptName:''
|
|
|
- };
|
|
|
+ this.filter.conceptName='';
|
|
|
}
|
|
|
if(this.list.length==1){
|
|
|
//当前在最后一页且只有一条数据时,删除后跳到前一页
|