diff --git a/components/custom-input/custom-input.vue b/components/custom-input/custom-input.vue new file mode 100644 index 0000000..bbe2864 --- /dev/null +++ b/components/custom-input/custom-input.vue @@ -0,0 +1,253 @@ + + + + + \ No newline at end of file diff --git a/manifest.json b/manifest.json index 779fea3..2e0f85b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "name" : "干巷仓库APP", + "name" : "上海干巷涂装PDA", "appid" : "__UNI__A67E78B", "description" : "", - "versionName" : "2.3.0", - "versionCode" : 230, + "versionName" : "2.4.0", + "versionCode" : 240, "transformPx" : false, "sassImplementationName" : "node-sass", "app-plus" : { diff --git a/pages/index/index.vue b/pages/index/index.vue index a713069..2e54f83 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,36 +1,15 @@ @@ -148,23 +127,15 @@ index: 12 }, { - name: '移库', - icon: 'rewind-right-fill', - url: '/pages/relocation/relocation', - type: 4, - index: 13 - } - ] - }; + name: '移库', + icon: 'rewind-right-fill', + url: '/pages/relocation/relocation', + type: 4, + index: 13 + } + ] + }; }, - onLoad: function() { - this.GetInfo(); - }, - mounted() { - // console.log('屏幕宽度', uni.getWindowInfo().screenWidth) - // console.log('可用高度', uni.getWindowInfo().windowHeight) - }, - methods: { ...mapActions([ 'LogOut', @@ -178,8 +149,22 @@ url }); }, - } - }; + getSectionTitle(type) { + const titles = ['', '入库', '出库', '库存管理', '库内管理']; + return titles[type] || ''; + }, + getItemsByType(type) { + return this.gridItemList.filter(item => item.type === type); + } + }, + onLoad: function() { + this.GetInfo(); + }, + mounted() { + // console.log('屏幕宽度', uni.getWindowInfo().screenWidth) + // console.log('可用高度', uni.getWindowInfo().windowHeight) + } +};