#
whycq
2024-04-06 9dba76a130bf214aa540c8c5ffbd781590afe4f1
#
4个文件已修改
41 ■■■■ 已修改文件
pages/home/menuHome.vue 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/orderManage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/order/orderList2.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/phyz/order/purchaseOrder.vue 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/menuHome.vue
@@ -46,13 +46,13 @@
                        // cuIcon: 'pullup',
                        url: `/home/orderManage`
                    },
                    {
                        title: '工作档管理',
                        name: 'ordeManage',
                        color: 'brown',
                        // cuIcon: 'pullup',
                        url: `/home/wrkMastManage`
                    },
                    // {
                    //     title: '工作档管理',
                    //     name: 'ordeManage',
                    //     color: 'brown',
                    //     // cuIcon: 'pullup',
                    //     url: `/home/wrkMastManage`
                    // },
                    // {
                    //     title: '测试',
                    //     name: 'testView',
pages/home/orderManage.vue
@@ -30,7 +30,7 @@
                        name: 'pakin',
                        color: 'blue',
                        // cuIcon: 'pullup',
                        url: `/phyz/order/orderList2`
                        url: `/phyz/order/purchaseOrder`
                    },
                    {
                        title: '出库单',
pages/phyz/order/orderList2.vue
@@ -82,7 +82,7 @@
                    header: {'token': uni.getStorageSync('token')},
                    data: {
                        curr: 1,
                        limit: 1000,
                        limit: 9999,
                        order_id: id
                    },
                    method: 'GET',
pages/phyz/order/purchaseOrder.vue
@@ -1,7 +1,7 @@
<template>
    <view class="container">
        <view class="code">
            <uni-search-bar :focus="searchValueFocus" v-model="searchValue"  @input="searchValueInput()"
            <uni-search-bar :focus="searchValueFocus" v-model="searchValue"  @input="searchValueInput2()"
                maxlength="500" ancel="cancel" @clear="clear" placeholder="输入 / 扫描 订单号">
            </uni-search-bar>
            <view class="code-title">
@@ -65,6 +65,25 @@
            reload() {
                this.getOrderList()
            },
            searchValueInput2() {
                let _this = this
                uni.request({
                    url: `${_this.baseUrl}/order/head/page/auth`,
                    header: {'token': uni.getStorageSync('token')},
                    data: {
                        curr: 1,
                        limit: 30,
                        order_no: _this.searchValue
                    },
                    method: 'GET',
                    success(res) {
                        res = res.data
                        if (res.code === 200) {
                            _this.dataList = res.data.records
                        }
                    }
                })
            },
            searchValueInput() {
                let count = 0
                let sign = 0
@@ -116,7 +135,7 @@
                    header: {'token': uni.getStorageSync('token')},
                    data: {
                        curr: 1,
                        limit: 1000,
                        limit: 30,
                    },
                    method: 'GET',
                    success(res) {