#
whycq
2024-04-10 5248e257623228bf7b598f75f09902cbff6518c6
#
3个文件已修改
24 ■■■■■ 已修改文件
manifest.json 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/orderManage.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/order/pakinOrderSelect.vue 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
manifest.json
@@ -2,7 +2,7 @@
    "name" : "中扬WMS",
    "appid" : "__UNI__DA5854D",
    "description" : "",
    "versionName" : "20240408B",
    "versionName" : "20240410A",
    "versionCode" : "100",
    "transformPx" : false,
    /* 5+App特有相关 */
pages/home/orderManage.vue
@@ -27,10 +27,10 @@
                elements2: [
                    {
                        title: '采购入库单',
                        name: 'pakin',
                        name: 'outOrder',
                        color: 'blue',
                        // cuIcon: 'pullup',
                        url: `/phyz/order/purchaseOrder`
                        url: `/phyz/order/pakinOrderSelect`
                    },
                    {
                        title: '出库单',
@@ -41,11 +41,13 @@
                    },
                    {
                        title: '入库单测试用',
                        name: 'outOrder',
                        name: 'pakin',
                        color: 'blue',
                        // cuIcon: 'pullup',
                        url: `/phyz/order/pakinOrderSelect`
                        url: `/phyz/order/purchaseOrder`
                    },
                ],
                colorList: ['cyan','blue','purple','mauve','pink','brown','red','orange','yellow','olive','olive','grey' ]
            };
pages/phyz/order/pakinOrderSelect.vue
@@ -149,10 +149,10 @@
                this.count = 0
            },
            addConfirm() {
                if (this.count == 0) {
                    uni.showToast({ title: '入库数量不合法!', icon: "none", position: 'top' })
                    return
                }
                // if (this.count == 0) {
                //     uni.showToast({ title: '入库数量不合法!', icon: "none", position: 'top' })
                //     return
                // }
                this.dataList[this.index]['used'] = true
                this.dataList[this.index]['pakinQty'] = this.count
                this.orderCarList.push(this.dataList[this.index])
@@ -163,6 +163,10 @@
            // 点击前往 待组托列表
            orderCar() {
                let _this = this
                if (_this.orderCarList.length === 0) {
                    uni.showToast({ title: '请添加入库商品!', icon: "none", position: 'top' })
                    return
                }
                uni.navigateTo({
                    url: './orderCar',
                    success(res) {