| | |
| | | <view class="hero-section"> |
| | | <view class="bg-img"> |
| | | <view class="hero-content"> |
| | | <text class="hero-title">润泰生物科技</text> |
| | | <text class="hero-title">双奇点</text> |
| | | </view> |
| | | <view class="hero-wave"></view> |
| | | </view> |
| | |
| | | <!-- </view>--> |
| | | <!-- </view>--> |
| | | <!-- </view>--> |
| | | |
| | | <!-- 仓储物流模块 --> |
| | | <view class="common-module marketing-module"> |
| | | <view class="module-header"> |
| | | <view class="module-title-container"> |
| | | <text class="module-title">仓储物流</text> |
| | | </view> |
| | | </view> |
| | | <view class="module-content"> |
| | | <up-grid |
| | | :border="false" |
| | | col="4" |
| | | > |
| | | <up-grid-item |
| | | v-for="(item, index) in warehousingLogisticsItems" |
| | | :key="index" |
| | | @click="handleCommonItemClick(item)" |
| | | > |
| | | <view class="icon-container" :style="{ background: item.bgColor }"> |
| | | <up-icon |
| | | :name="item.icon" |
| | | :size="58" |
| | | color="#ffffff" |
| | | ></up-icon> |
| | | </view> |
| | | <text class="item-label">{{item.label}}</text> |
| | | </up-grid-item> |
| | | </up-grid> |
| | | </view> |
| | | </view> |
| | | <!-- 营销管理模块 --> |
| | | <view class="common-module marketing-module"> |
| | | <view class="module-header"> |
| | |
| | | currentStatus.value = statusList[statusIndex] |
| | | }, 3000) |
| | | } |
| | | |
| | | //仓储物流功能数据 |
| | | const warehousingLogisticsItems = reactive([ |
| | | { |
| | | icon: '/static/images/icon/xiaoshoutaizhang@2x.png', |
| | | label: '入库管理', |
| | | }, |
| | | { |
| | | icon: '/static/images/icon/kaipiaodengji@2x.png', |
| | | label: '出库管理', |
| | | }, |
| | | { |
| | | icon: '/static/images/icon/kaipiaotaizhang@2x.png', |
| | | label: '出库台账', |
| | | }, |
| | | { |
| | | icon: '/static/images/icon/huikuandengji@2x.png', |
| | | label: '库存管理', |
| | | } |
| | | ]); |
| | | |
| | | // 营销管理功能数据 |
| | | const marketingItems = reactive([ |
| | |
| | | url: '/pages/equipmentManagement/verification/index' |
| | | }); |
| | | break; |
| | | case '入库管理': |
| | | uni.navigateTo({ |
| | | url: '/pages/inventoryManagement/receiptManagement/index' |
| | | }); |
| | | break |
| | | case '出库管理': |
| | | uni.navigateTo({ |
| | | url: '/pages/inventoryManagement/issueManagement/index' |
| | | }); |
| | | break |
| | | case '出库台账': |
| | | uni.navigateTo({ |
| | | url: '/pages/inventoryManagement/dispatchLog/index' |
| | | }); |
| | | break |
| | | case '库存管理': |
| | | uni.navigateTo({ |
| | | url: '/pages/inventoryManagement/stockManagement/index' |
| | | }); |
| | | break |
| | | default: |
| | | uni.showToast({ |
| | | title: `点击了${item.label}`, |