| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <!-- 搜索框入口 -->
- <wd-search
- :placeholder="searchPlaceholder"
- :hide-cancel="true"
- disabled
- @click="visible = true"
- />
- <!-- 搜索弹窗 -->
- <wd-popup
- v-model="visible"
- position="top"
- custom-style="border-radius: 0 0 24rpx 24rpx;"
- safe-area-inset-top
- @close="visible = false"
- >
- <view class="p-32rpx">
- <view class="mb-24rpx text-32rpx text-[#333] font-semibold">
- 搜索日志
- </view>
- <view class="mb-24rpx">
- <view class="mb-12rpx text-28rpx text-[#666]">
- 用户编号
- </view>
- <wd-input
- v-model="formData.userId"
- placeholder="请输入用户编号"
- clearable
- />
- </view>
- <view class="mb-32rpx">
- <view class="mb-12rpx text-28rpx text-[#666]">
- 应用名
- </view>
- <wd-input
- v-model="formData.applicationName"
- placeholder="请输入应用名"
- clearable
- />
- </view>
- <!-- TODO @芋艿:后续增加时间范围的检索 -->
- <view class="w-full flex justify-center gap-24rpx">
- <wd-button class="flex-1" plain @click="handleReset">
- 重置
- </wd-button>
- <wd-button class="flex-1" type="primary" @click="handleSearch">
- 搜索
- </wd-button>
- </view>
- </view>
- </wd-popup>
- </template>
- <script lang="ts" setup>
- import { computed, reactive, ref, watch } from 'vue'
- /** 搜索表单数据 */
- export interface SearchFormData {
- userId?: number
- applicationName?: string
- }
- const props = defineProps<{
- searchParams?: Partial<SearchFormData> // 初始搜索参数
- }>()
- const emit = defineEmits<{
- search: [data: SearchFormData]
- reset: []
- }>()
- const visible = ref(false)
- const formData = reactive<SearchFormData>({
- userId: undefined,
- applicationName: undefined,
- })
- /** 搜索条件 placeholder 拼接 */
- const searchPlaceholder = computed(() => {
- const conditions: string[] = []
- if (props.searchParams?.userId) {
- conditions.push(`用户编号:${props.searchParams.userId}`)
- }
- if (props.searchParams?.applicationName) {
- conditions.push(`应用名:${props.searchParams.applicationName}`)
- }
- return conditions.length > 0 ? conditions.join(' | ') : '搜索日志'
- })
- /** 监听弹窗打开,同步外部参数 */
- watch(visible, (val) => {
- if (val && props.searchParams) {
- formData.userId = props.searchParams.userId
- formData.applicationName = props.searchParams.applicationName
- }
- })
- /** 搜索 */
- function handleSearch() {
- visible.value = false
- emit('search', { ...formData })
- }
- /** 重置 */
- function handleReset() {
- formData.userId = undefined
- formData.applicationName = undefined
- visible.value = false
- emit('reset')
- }
- </script>
|