-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
438 additions
and
139 deletions.
There are no files selected for viewing
15 changes: 14 additions & 1 deletion
15
mobile2/backend/gen/android/.idea/deploymentTargetDropDown.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<script setup lang="ts"> | ||
import {useAppStore} from "@/store/app"; | ||
import {ref} from "vue"; | ||
let store = useAppStore(); | ||
let query = ref("") | ||
let showResult = ref(true) | ||
function doQuery() { | ||
} | ||
function handleDomain() { | ||
} | ||
</script> | ||
|
||
<template> | ||
<v-container class="mx-auto" style="max-width: 480px;"> | ||
<v-row> | ||
<v-col> | ||
<v-text-field v-model="query" label="域名关键字" | ||
variant="outlined"></v-text-field> | ||
</v-col> | ||
<v-col cols="2"> | ||
<v-btn icon @click="doQuery"> | ||
<v-icon>mdi-tab-search</v-icon> | ||
</v-btn> | ||
</v-col> | ||
</v-row> | ||
<div v-if="showResult"> | ||
<v-list :items="store.domains" class="my-list" @click:select="handleDomain"> | ||
</v-list> | ||
</div> | ||
</v-container> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
Oops, something went wrong.