小小儁爺
2025-11-19 89513a76e1ea16d602f5d12949f61e880fafb9f6
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
<template>
    <view>
        <page-nav title="其它入库"></page-nav>
 
    </view>
</template>
 
<script>
    // import {
 
    // } from '../../config/api.js';
    export default {
        onLoad(option) {
 
        },
 
        onPullDownRefresh() {
            setTimeout(() => {
                this.init(() => {
                    uni.stopPullDownRefresh();
                })
            }, 1000);
        },
 
        data() {
            return {
 
            }
        },
        created() {
 
        },
        mounted() {
            this.init()
        },
        methods: {
            init() {
 
                uni.stopPullDownRefresh();
            },
        }
    }
</script>
 
<style lang="scss" scoped>
    ::v-deep .uicon-arrow-left>span {
        display: block;
    }
</style>