更新 'SrcJyPublic.js'

master
src48597962 7 months ago
parent 50d3457f74
commit f479f71788
  1. 6
      SrcJyPublic.js

@ -465,6 +465,7 @@ function selectSource() {
if(s.startsWith('[')){ if(s.startsWith('[')){
inputBox.setTitle('全部'); inputBox.setTitle('全部');
inputBox.setDefaultValue(s); inputBox.setDefaultValue(s);
/*
sourceList = getGroupLists(sourceAllList, '全部'); sourceList = getGroupLists(sourceAllList, '全部');
names = getnames(sourceList).names; names = getnames(sourceList).names;
tmpList = sourceList.filter(x => x.name.toLowerCase().includes(s.toLowerCase())); tmpList = sourceList.filter(x => x.name.toLowerCase().includes(s.toLowerCase()));
@ -473,6 +474,8 @@ function selectSource() {
flist.forEach(x => { flist.forEach(x => {
manage.list.push(x); manage.list.push(x);
}); });
manage.change();
*/
}else{ }else{
inputBox.setTitle(s); inputBox.setTitle(s);
inputBox.setDefaultValue(""); inputBox.setDefaultValue("");
@ -483,9 +486,10 @@ function selectSource() {
names.forEach(x => { names.forEach(x => {
manage.list.push(x); manage.list.push(x);
}); });
manage.change();
} }
manage.change();
} }
}); });
}, },

Loading…
Cancel
Save