This commit is contained in:
parent
3ae9e1b1d2
commit
78f2538081
|
@ -479,7 +479,12 @@ export default {
|
|||
const regex = /\/([^\/]+)$/;
|
||||
const match = val.match(regex);
|
||||
console.log(match[1]);
|
||||
return match[1];
|
||||
|
||||
return !!match[1] ? match[1] : val;
|
||||
},
|
||||
handleFilter() {
|
||||
this.listQuery.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
onAdd() {
|
||||
this.anchors.qaQuestions = [
|
||||
|
|
Loading…
Reference in New Issue