#
whycq
2022-09-09 7335bf9f71207bf3d0f35208040ef696164af589
#
3个文件已修改
1个文件已添加
129 ■■■■ 已修改文件
pages.json 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/basics/stoCheck.vue 64 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/index/index.vue 56 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/apk/__UNI__DA5854D_cm.apk 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -159,6 +159,15 @@
                "enablePullDownRefresh": false
                
            }
        },
        {
            "path" : "pages/basics/stoCheck",
            "style" :
            {
                "navigationBarTitleText": "库存盘点",
                "enablePullDownRefresh": false
            }
        }
        
        
pages/basics/stoCheck.vue
New file
@@ -0,0 +1,64 @@
<template>
    <view class="">
        <!-- 库位号输入框 -->
        <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 type="text" v-model="locno" placeholder="扫码 / 输入" :focus="locnoFocus">
                    <uni-icons v-show="locno" type="closeempty" size="20" color="#dadada" @click="remove('locno')"></uni-icons>
                </view>
            </view>
        </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-btn">
                    <input v-model="matnr" type="text" placeholder="扫码 / 输入" @input="findMat()"
                    :focus="matnrFocus" placeholder-style="line-height:  85rpx;">
                    <uni-icons v-show="matnr" type="closeempty" size="20" color="#dadada" @click="remove('matnr')"></uni-icons>
                </view>
                <view class="content-btn">
                    <button class="cu-btn bg-blue pda-btn" @click="selectMat()">+提取</button>
                </view>
            </view>
        </view>
        <!-- 商品列表表头 -->
        <view class="square-1">
            <view class="square-title">
                <view class="title-sign"><view class="sign"></view></view>
                <view class="title-text"><text>商品列表</text></view>
            </view>
        </view>
        <view class="square-none" v-show="matList.length == 0">
            <view class="v-show">暂无更多数据...</view>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                locno: '',
                locnoFocus: true,
                matnr: '',
                matnrFocus: true,
                matList: [],
            }
        }
    }
</script>
<style>
</style>
pages/index/index.vue
@@ -23,43 +23,43 @@
        data() {
            return {
                elements:[
                    {
                        title: '上架管理',
                        name: 'putOnSale',
                        color: 'blue',
                        cuIcon: 'video'
                    },
                    {
                        title: '下架管理',
                        name: 'offLines',
                        color: 'blue',
                        cuIcon: 'copy'
                    },
                    {
                        title: '组托入库',
                        name: 'pakin',
                        color: 'blue',
                        cuIcon: 'copy'
                    },
                    // {
                    //     title: '组托入库',
                    //     name: 'pakin',
                    //     color: 'blue',
                    //     cuIcon: 'copy'
                    // },
                    // {
                    //     title: '订单组托',
                    //     name: 'order',
                    //     color: 'blue',
                    //     cuIcon: 'goods'
                    // },
                    {
                        title: '库存查询',
                        name: 'stockQuery',
                        color: 'blue',
                        cuIcon: 'searchlist'
                    },
                    {
                        title: '上架',
                        name: 'putOnSale',
                        color: 'blue',
                        cuIcon: 'video'
                    },
                    {
                        title: '单据出库',
                        name: 'orderOut',
                        color: 'blue',
                        cuIcon: 'video'
                    },
                    // {
                    //     title: '库存查询',
                    //     name: 'stockQuery',
                    //     color: 'blue',
                    //     cuIcon: 'searchlist'
                    // },
                    // {
                    //     title: '单据出库',
                    //     name: 'orderOut',
                    //     color: 'blue',
                    //     cuIcon: 'video'
                    // },
                    // {
                    //     title: '库位出库',
                    //     name: 'stoOut',
@@ -79,6 +79,12 @@
                    //     cuIcon: 'safe'
                    // },
                    {
                        title: '库存盘点',
                        name: 'stoCheck',
                        color: 'blue',
                        cuIcon: 'safe'
                    },
                    {
                        title: '退出登录',
                        name: 'logOut',
                        color: 'grey',
unpackage/cache/apk/__UNI__DA5854D_cm.apk
Binary files differ