#
whycq
2024-03-18 d326f73a67465a504b7ca2c51d98237cefdd9359
#
3个文件已修改
36 ■■■■ 已修改文件
pages.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/inOutManage.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/tzsk/AGV/AGVPakin.vue 30 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -87,7 +87,7 @@
        {
            "path": "pages/tzsk/AGV/AGVPick",
            "style": {
                "navigationBarTitleText": "AGV盘点 / 拣货"
                "navigationBarTitleText": "采购入库"
            }
        },
        {
pages/home/inOutManage.vue
@@ -26,14 +26,14 @@
                project: 'tzsk',
                elements2: [
                    {
                        title: '空板入库',
                        title: '空板入出库',
                        name: 'emptyIn',
                        color: 'blue',
                        // cuIcon: 'pullup',
                        url: `/tzsk/AGV/AGVPakin`
                    },
                    {
                        title: 'AGV盘点/拣料',
                        title: '采购入库',
                        name: 'AGVPick',
                        color: 'cyan',
                        // cuIcon: 'pullup',
pages/tzsk/AGV/AGVPakin.vue
@@ -13,13 +13,12 @@
                    <view class="list-left-item">
                        <view class="desc">站点号:</view>
                        <view class="left-item">
                            <!-- <uni-tag :text="item.matnr" type="primary"></uni-tag> -->
                            ---------------
                            <uni-tag :text="item.barcode" type="primary"></uni-tag>
                        </view>
                    </view>
                    <view class="list-left-item">
                        <view class="desc">站点状态:</view>
                        <view class="left-item">{{item.maktx}}</view>
                        <view class="left-item">{{item.sts}}</view>
                    </view>
                    <view class="list-left-item">
                        <view class="desc">规格:</view>
@@ -45,9 +44,10 @@
            </view>
        </scroll-view>
        <!-- 底部操作按钮 -->
        <view class="buttom">
            <button size="mini" @click="reset('warn')">重置</button>
        <view class="buttom-k">
            <button size="mini" type="primary" @click="combConfirm('warn')">空板出库</button>
            <button size="mini" type="primary" @click="combConfirm('warn')">空板入库</button>
            <button size="mini" @click="reset('warn')">重置</button>
        </view>
        <!-- 弹窗 -->
        <!-- 修改数量 -->
@@ -127,7 +127,12 @@
                token: '',
                barcode: '',
                orderNo: '',
                dataList: [{}],
                dataList: [
                    {
                        barcode: 'CS-101-001-01@1',
                        sts: 'F.在库'
                    }
                ],
                count: 0,
                rowNum: '',
                matnr: '',
@@ -608,4 +613,17 @@
        text-align: center;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
    }
    .buttom-k {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: #FFF;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2) ;
    }
    .buttom-k button {
        margin: 20rpx 50rpx;
    }
</style>