whycq
2024-04-10 53193d9a0f6eac11a98c6da032e8a97979f433cb
Merge branch 'phyzasrs' of http://47.97.1.152:5880/r/wms_app into phyzasrs
1个文件已添加
1个文件已修改
49 ■■■■■ 已修改文件
pages.json 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/orderOut/orderOutSelect.vue 40 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -587,6 +587,15 @@
                "enablePullDownRefresh" : false
            }
        }
        ,{
            "path" : "pages/phyz/orderOut/orderOutSelect",
            "style" :
            {
                "navigationBarTitleText": "出库订单",
                "enablePullDownRefresh": false
            }
        }
    ],
    "globalStyle": {
        "navigationBarTextStyle": "black",
pages/phyz/orderOut/orderOutSelect.vue
New file
@@ -0,0 +1,40 @@
<template>
    <view class="container">
        <view class="code">
            <uni-search-bar :focus="searchValueFocus" v-model="searchValue"
                maxlength="500" ancel="cancel" @confirm="searchValueInput2()" @clear="clear" placeholder="输入 / 扫描 订单号">
            </uni-search-bar>
            <uni-search-bar :focus="searchValueFocus" v-model="searchValue"
                maxlength="500" ancel="cancel" @confirm="searchValueInput2()" @clear="clear" placeholder="输入 / 扫描 主订单号">
            </uni-search-bar>
            <view class="code-title">
                <view></view>
                <view style="width: 100%;text-align: center;margin: 16rpx;">{{searchValue}} 总数量:- {{total}} -</view>
                <view></view>
            </view>
        </view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                baseUrl: '',
                token: '',
                searchValueFocus: true,
                searchValue: '',
                total: '',
                dataList: [],
                orderCarList: [],
            }
        },
        methods: {
        }
    }
</script>
<style>
    @import url('../../../static/css/common/order.css');
</style>