chenhaozhe
2025-08-13 e24f1eef344fc0c9502c1d8fce9ad158c845ed22
表单弹出组件 工序流转卡弹出组件 添加 未查询到单据时清空缓存
5个文件已修改
35 ■■■■■ 已修改文件
components/BillListPopup/BillListPopup.vue 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
components/ProcExchListPopup/ProcExchListPopup.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
manifest.json 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/index/index.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/zhijiediaobo/form.vue 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
components/BillListPopup/BillListPopup.vue
@@ -121,6 +121,10 @@
                // this.exit()
            },
            getBillList() {
                this.HBillList = []
                this.length = 0
                this.page = 0
                this.curPage = 1
                CommonUtils.doRequest(
                    "/WEBSController/GetSourceBillList_Json", {
                        HBilltype: this.HBillType,
@@ -145,7 +149,6 @@
                            }
                            this.HBillList = result
                            this.page = result.length
                            console.log(this.page)
                        } else {
                            uni.showToast({
                                icon: 'none',
components/ProcExchListPopup/ProcExchListPopup.vue
@@ -218,6 +218,10 @@
                // this.exit()
            },
            getBillList() {
                this.HBillList = []
                this.length = 0
                this.page = 0
                this.curPage = 1
                CommonUtils.doRequest(
                    "/WEBSController/GetMES_ProcessExchangeBillList_APP_HaiCheng", {
                        HBillNo: this.HBillNo || '',
manifest.json
@@ -2,8 +2,8 @@
    "name" : "智云LMES",
    "appid" : "__UNI__B002F49",
    "description" : "",
    "versionName" : "1.0.52",
    "versionCode" : 152,
    "versionName" : "1.0.53",
    "versionCode" : 153,
    "transformPx" : false,
    /* 5+App特有相关 */
    "app-plus" : {
pages/index/index.vue
@@ -403,6 +403,12 @@
            this.getHiddenItem()
        },
        methods: {
            checkCardShow(item) {
                if(item.HMaker && item.HMaker != getUserInfo()['Czymc'] && item.hidden == true){
                    return false
                }
                return true
            },
            async getHiddenItem() {
                // let itemCache = uni.getStorageSync('HIndexItemData') || ''
                // console.log('itemCache: ',itemCache);
@@ -415,6 +421,7 @@
                })
                Array.from(data).forEach(e => {
                    this.itemData[e["HIndex"]].hidden = !CommonUtils.stringToBoolean(e["HShowMode"]) 
                    this.itemData[e["HIndex"]].HMaker = e["HMaker"]
                })
            },
            switchHidden(index) {
pages/zhijiediaobo/form.vue
@@ -792,14 +792,14 @@
            // 调入仓库资料
            getHWarehouseInList(Organizaiton) {
                Organizaiton = Organizaiton || uni.getStorageSync("Organization")
                uni.request({
                    url: this.serverUrl + '/Gy_Warehouse/list',
                CommonUtils.doRequest2({
                    url: '/Gy_Warehouse/list',
                    data: {
                        sWhere: "",
                        user: uni.getStorageSync('HUserName'),
                        Organization: Organizaiton
                    },
                    success: (res) => {
                    resFunction: (res) => {
                        console.log('调入仓库 res: ', res.data.data);
                        if (res.data.count == 1) {
                            this.HWHInNameList = []
@@ -815,14 +815,7 @@
                                icon: 'none'
                            })
                        }
                    },
                    fail: (res) => {
                        console.log(res);
                        uni.showToast({
                            title: '接口请求失败',
                            icon: 'none'
                        })
                    },
                    }
                });
                
                uni.request({