ke_junjie
2025-06-04 4bf0783db564f0d446c74d7b42242aff879b894c
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
<template>
    <view class="">
        <u-navbar title="添加物料">
            <view v-if="flag" @click="flag=!flag" class="slot-right"
                style="width: 100%; display: flex; justify-content: flex-end;margin-right: 15px;color:#00cc33">
                显示全部
            </view>
            <view v-else @click="flag=!flag" class="slot-right"
                style="width: 100%; display: flex; justify-content: flex-end;margin-right: 15px;color:#00cc33">
                只显示计划
            </view>
        </u-navbar>
        <view class="search">
            <u-search placeholder="搜索" v-model="keyword" input-align="center" bg-color="#fff" shape="square"
                :show-action="false"></u-search>
        </view>
        <view class="line" v-for="item in 25">
            <text>5101050-A95</text>
            <text>油门踏板固定板总成</text>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                flag: true,
            }
        }
    }
</script>
 
<style scoped>
    .search {
        background-color: #f2f2f2;
        padding: 6px 8px;
    }
    .line{
        height: 40px;
        line-height: 40px;
        border-bottom: 1px solid #eaeaea;
        padding-left: 3rem;
        font-size: 1rem;
        padding-right: 10px;
    }
    </style>