Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

增加最新系统版本筛选条件,包含安卓14/鸿蒙4/苹果17(用户对这块的筛选会需求比较强劲) #269

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/views/Devices.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ const agentIds = ref([]);
const cpus = ref([]);
const sizes = ref([]);
const isFlush = ref('0');
const androidSystemVersion = ref([5, 6, 7, 8, 9, 10, 11, 12, 13]);
const iOSSystemVersion = ref([9, 10, 11, 12, 13, 14, 15, 16]);
const harmonySystemVersion = ref([1, 2, 3]);
const androidSystemVersion = ref([5, 6, 7, 8, 9, 10, 11, 12, 13, 14]);
const iOSSystemVersion = ref([9, 10, 11, 12, 13, 14, 15, 16, 17]);
const harmonySystemVersion = ref([1, 2, 3, 4]);
const manufacturer = ref([
'APPLE',
'HUAWEI',
Expand Down
Loading