xuxueyang
2024-08-04 17bb1250f2120415e5fc9f47fe50b60f72b47a07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<template>
    <view class="p15 bg-white">
        <view class="search-container m-t-12 flex">
            <view class="flex1 input">
                <u-input placeholder="请输入花名" v-model="search_flow" clearable @confirm="buttonSearchFlow" @clear="()=>{
                    $nextTick(()=>{buttonSearchFlow()})
                }">
                    <template slot="suffix">
                        <uni-icons color="#20613D" type="search" size="24" @click="buttonSearchFlow"></uni-icons>
                    </template>
                </u-input>
            </view>
 
        </view>
        <view class="m-t-12">
            <view class="title flex">
                <view class="m-l-0 m-r-a">搜索历史</view>
                <view class="bg-white desc-gray  text-center m-l-a m-r-0" @click.stop="clearHistory">
                    一键清空
                </view>
            </view>
            <view class="m-t-12 flex flex-wrap-normal history-item-list">
                <view class="history-item" v-for="item of history" :key="item" @click="searchBy(item)">
                    {{item}}
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                search_flow: '',
                history: [],
            }
        },
        onShow() {
            var k = this.$storage.getItem("cache_home_search")
            this.history = k && JSON.parse(k) || []
        },
        onHide() {
            this.$storage.setItem("cache_home_search", JSON.stringify(this.history))
        },
        methods: {
            buttonSearchFlow() {
                var name = this.search_flow
                if (name) {
                    if (this.history.indexOf(name) >= 0) {
                        this.history.splice(this.history.indexOf(name), 1)
                    }
                    this.history.unshift(name)
                    if (this.history.length >= 10) {
                        this.history.splice(this.history.length - 1, 1)
                    }
 
                    console.log('buttonSearchFlow')
                    uni.navigateTo({
                        url: '/sub_pages/customer/trade/list?name=' + this.search_flow
                    })
                }
            },
            async clearHistory() {
                await this.$message.confirm('是否清空历史记录')
                this.history = []
                this.$storage.setItem("cache_home_search", JSON.stringify(this.history))
            },
            searchBy(name) {
                if (this.history.indexOf(name) >= 0) {
                    this.history.splice(this.history.indexOf(name), 1)
                }
                this.history.unshift(name)
 
                uni.navigateTo({
                    url: '/sub_pages/customer/trade/list?name=' + name
                })
            }
        }
    }
</script>
 
<style lang="scss" scoped>
    .history-item-list {
        .history-item {
            margin-right: 20rpx;
            min-width: 100rpx;
            padding: 10rpx 20rpx;
            margin-bottom: 20rpx;
            text-align: center;
            height: 30rpx;
            line-height: 30rpx;
            font-size: 28rpx;
        }
    }
</style>