#
whycq
2022-07-25 09906e5b5a49a94e5bbf6878492fb8a1391c646e
#
2个文件已修改
1个文件已添加
66 ■■■■ 已修改文件
pages.json 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/basics/bad.vue 42 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/index/index.vue 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -90,7 +90,16 @@
                "enablePullDownRefresh": false
                
            }
        }
        },
        {
            "path" : "pages/basics/bad",
            "style" :
            {
                "navigationBarTitleText": "残次品",
                "enablePullDownRefresh": false
            }
        }
        
        
        
pages/basics/bad.vue
New file
@@ -0,0 +1,42 @@
<template>
    <view>
        <view class="square-2">
            <view class="square-title">
                <view class="title-sign"><view class="sign"></view></view>
                <view class="title-text"><text>检索商品</text></view>
            </view>
            <view class="square-content">
                <view class="content-input">
                    <input>
                    <uni-icons type="closeempty" size="20" color="#dadada"></uni-icons>
                </view>
            </view>
        </view>
        <view class="footer flex justify-around">
            <view>
                <button class="cu-btn lg" @click="">重置</button>
            </view>
            <view>
                <button class="cu-btn lg pakin-btn bg-blue" @click="">确认</button>
            </view>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
            }
        },
        methods: {
            name() {
            }
        },
    }
</script>
<style>
</style>
pages/index/index.vue
@@ -48,6 +48,12 @@
                        cuIcon: 'safe'
                    },
                    {
                        title: '残次品',
                        name: 'bad',
                        color: 'grey',
                        cuIcon: 'exit'
                    },
                    {
                        title: '组托入库',
                        name: 'pakin',
                        color: 'grey',
@@ -65,12 +71,7 @@
                        color: 'grey',
                        cuIcon: 'exit'
                    },
                    // {
                    //     title: '日志',
                    //     name: 'logbook',
                    //     color: 'grey',
                    //     cuIcon: 'exit'
                    // },
                    ]
            }
        },