spring
5 天以前 2f26ba8f2c8f5c67e5ed16f4e89baaef82d70a3b
pages/sys/home/index.vue
@@ -11,7 +11,8 @@
         <u-grid :border="false">
            <u-grid-item v-for="(baseListItem, baseListIndex) in item.list" :key="baseListIndex"
               @click="navTo(baseListItem.url)">
               <img :src="require(`@/static/custom/home/${baseListItem.icon}.png`)" alt="">
               <view class="img" :style="`background: url(../../../static/custom/home/${baseListItem.icon}.png) no-repeat;`">
               </view>
               <text class="grid-text">{{ baseListItem.name }}</text>
            </u-grid-item>
         </u-grid>
@@ -29,27 +30,27 @@
                  {
                     name: '报工',
                     url: '/pages/product/report/index',
                     icon: '报工'
                     icon: 'one'
                  },
                  {
                     name: '取消报工',
                     url: '/pages/product/cancelReport/index',
                     icon: '取消报工'
                     icon: 'two'
                  },
                  {
                     name: '接收(铜杆)',
                     url: '/',
                     icon: '接收(铜杆)'
                     icon: 'three'
                  },
                  {
                     name: '车间订单下发',
                     url: '/',
                     icon: '车间订单下发'
                     icon: 'four'
                  },
                  {
                     name: '车间取消下发',
                     url: '/',
                     icon: '车间取消下发'
                     icon: 'five'
                  },
               ]
            },
@@ -59,27 +60,27 @@
                  {
                     name: '移库',
                     url: '/pages/wareHouse/moveWareHouse/index',
                     icon: '移库'
                     icon: 'six'
                  },
                  {
                     name: '盘点报告盘点',
                     url: '/pages/wareHouse/inventory/index',
                     icon: '盘点报告盘点'
                     icon: 'seven'
                  },
                  {
                     name: '核磅录入',
                     url: '/pages/wareHouse/packing/registration',
                     icon: '核磅录入'
                     icon: 'eight'
                  },
                  {
                     name: '库存件盘点',
                     url: '/pages/wareHouse/inventory/index',
                     icon: '库存件盘点'
                     icon: 'nine'
                  },
                  {
                     name: '导体备货盘点',
                     url: '/pages/wareHouse/inventory/index',
                     icon: '导体备货盘点'
                     icon: 'ten'
                  },
               ]
            },
@@ -89,12 +90,12 @@
                  {
                     name: '领料',
                     url: '/pages/wareHouse/moveWareHouse/index',
                     icon: '领料'
                     icon: 'eleven'
                  },
                  {
                     name: '取消领料',
                     url: '/pages/wareHouse/inventory/index',
                     icon: '取消领料'
                     icon: 'twelve'
                  },
               ]
            }
@@ -116,7 +117,7 @@
</script>
<style lang="scss">
.wrap {
   height: calc(100vh - 200rpx);
   height: 100%;
   background: linear-gradient(to bottom, #e5f0ff, #f6f9ff);
   overflow-y: auto;
}
@@ -140,4 +141,11 @@
.u-grid-item {
   background: transparent !important;
}
.img {
   width: 96rpx;
   height: 96rpx;
   background-size: contain !important;
   background-position: center !important;
}
</style>