From 7ed291f7f663d530284b35a6ae28c77ccb87d812 Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期一, 08 四月 2024 19:13:20 +0800 Subject: [PATCH] # --- pages/home/home.vue | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 42 insertions(+), 8 deletions(-) diff --git a/pages/home/home.vue b/pages/home/home.vue index 653da14..de1596e 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -23,20 +23,21 @@ token: '', icon: '', elements: [], + project: 'tzsk', elements2: [ { title: 'AGV缁勬墭', name: 'AGVPakin', color: 'blue', // cuIcon: 'pullup', - url: '/tzsk/AGV/AGVPakin' + url: `/tzsk/AGV/AGVPakin` }, { title: 'AGV鐩樼偣/鎷f枡', name: 'AGVPick', color: 'cyan', // cuIcon: 'pullup', - url: '/tzsk/AGV/AGVPick' + url: `/tzsk/AGV/AGVPick` }, { @@ -67,20 +68,40 @@ // cuIcon: 'pullup', url: '/tzsk/AGV/AGVContainerMove' }, - { - title: '缁勬墭鍏ュ簱', + title: 'AGV鏉$爜', + name: 'AGVCode', + color: 'cyan', + // cuIcon: 'pullup', + url: '/tzsk/AGV/AGVCode' + }, + { + title: '骞冲簱缁勬墭鍏ュ簱', name: 'pakin', color: 'cyan', // cuIcon: 'pullup', url: '/tzsk/pakin/pakin2' }, { - title: '缁勬墭涓婃灦', + title: '鍥涢」缁勬墭鍏ュ簱', + name: 'pakin', + color: 'cyan', + // cuIcon: 'pullup', + url: '/tzsk/pakin/pakin3' + }, + { + title: '骞冲簱缁勬墭涓婃灦', name: 'PutOn', color: 'cyan', // cuIcon: 'pullup', url: '/tzsk/order/orderPutOn' + }, + { + title: '鍑哄簱鎷i��', + name: 'checkOut', + color: 'cyan', + // cuIcon: 'pullup', + url: '/tzsk/pakin/checkOut' }, { title: '璁㈠崟涓婃灦', @@ -120,11 +141,18 @@ url: '/tzsk/pakin/untie' }, { - title: '骞充粨绉诲簱', + title: '骞冲簱绉诲簱', name: 'locChange', color: 'cyan', // cuIcon: 'pullup', url: '/tzsk/pakin/locChage' + }, + { + title: '骞冲簱鎷h揣', + name: 'locChange', + color: 'cyan', + // cuIcon: 'pullup', + url: '/tzsk/pakin/locPick' }, { title: '涓存椂鍏ュ簱', @@ -156,7 +184,7 @@ name: 'stockQuery', color: 'green', cuIcon: 'check', - url: '/stock/stockQuery' + url: `/tzsk/stock/stockQuery` }, { title: '鐩樼偣', @@ -216,6 +244,7 @@ onShow() { this.baseUrl = uni.getStorageSync('baseUrl'); this.token = uni.getStorageSync('token'); + this.project = uni.getStorageSync('project') this.getAuth() this.backGroundRepeat() }, @@ -239,6 +268,11 @@ header: { 'token': uni.getStorageSync('token') }, method: 'POST', success(res) { + console.log(res); + if (res.statusCode === 404) { + that.elements = that.elements2 + return + } res = res.data that.elements = [] if (res.code === 200) { @@ -256,7 +290,7 @@ name: res.data[i].title, color: that.colorList[i], cuIcon: that.icon, - url: res.data[i].action + url: `/${that.project}${res.data[i].action}` }) } that.elements.push({ -- Gitblit v1.9.1