#
whycq
2023-10-21 98dc492f262d87e93a80f1ef2d65e7d5c121f002
#
1个文件已添加
2个文件已修改
69 ■■■■■ 已修改文件
pages.json 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/home.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/tzsk/pakin/locPick.vue 51 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -230,6 +230,15 @@
            }
            
        }
        ,{
            "path" : "pages/tzsk/pakin/locPick",
            "style" :
            {
                "navigationBarTitleText": "平库拣货",
                "enablePullDownRefresh": false
            }
        }
    ],
    "globalStyle": {
        "navigationBarTextStyle": "black",
pages/home/home.vue
@@ -120,13 +120,20 @@
                        url: '/tzsk/pakin/untie'
                    },
                    {
                        title: '平仓移库',
                        title: '平库移库',
                        name: 'locChange',
                        color: 'cyan',
                        // cuIcon: 'pullup',
                        url: '/tzsk/pakin/locChage'
                    },
                    {
                        title: '平库拣货',
                        name: 'locChange',
                        color: 'cyan',
                        // cuIcon: 'pullup',
                        url: '/tzsk/pakin/locPick'
                    },
                    {
                        title: '临时入库',
                        name: 'pakin',
                        color: 'cyan',
pages/tzsk/pakin/locPick.vue
New file
@@ -0,0 +1,51 @@
<template>
    <view>
        <view class="box" v-for="item in 10">
            <view class="box-left">
                <text class="text"> 库区 </text>
            </view>
            <view class="box-right">
                <text class="text"> {{item}} </text>
            </view>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
            }
        },
        methods: {
        }
    }
</script>
<style>
    .box {
        margin: 16rpx;
        display: flex;
        align-items: stretch;
    }
    .box-left {
        height: 80rpx;
        line-height: 80rpx;
        background-color: #499bff;
        background-color: #26edcf;
        color: #F7F6F9;
    }
    .box-right {
        flex: 1;
        display: flex;
        align-items: center;
        background-color: #fff;
        color: #808080;
    }
    .text  {
        padding: 10rpx 20rpx;
    }
</style>