|
@@ -60,8 +60,8 @@
|
|
|
import { http } from '../../framework/http';
|
|
|
import { log } from '../../framework/log';
|
|
|
import { UserData } from '../../stores/userDataManager';
|
|
|
-import { util } from '../../framework/util';
|
|
|
-import { tools } from '../../framework/tools';
|
|
|
+ import { util } from '../../framework/util';
|
|
|
+ import { tools } from '../../framework/tools';
|
|
|
|
|
|
let data_list = ref([])
|
|
|
let current_index = ref(-1)
|
|
@@ -83,6 +83,9 @@ import { tools } from '../../framework/tools';
|
|
|
}
|
|
|
|
|
|
function clickItem(index:number){
|
|
|
+ if(current_index.value==index) {
|
|
|
+ return
|
|
|
+ }
|
|
|
current_index.value = index
|
|
|
}
|
|
|
|