123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <view class="container">
- <view class="top-container">
- <image class='bg-img' src="../../static/images/my/pic_statistics@3x.png"></image>
- <view class="padding-xl text-white" style="z-index:2">
- <view class="padding-xs text-xl">
- 设备总数(台)
- </view>
- <view class="padding-xs">
- {{deviceNum}}
- </view>
- </view>
- <view class="flex padding-xs text-white" style="z-index:2">
- <view class="flex-sub padding-lr-xl">
- <view class="text-sm">
- 在线设备(台)
- </view>
- <view class="padding-xs">
- {{deviceNum}}
- </view>
- </view>
- <view class="flex-sub padding-lr-xl">
- <view class="padding-xs text-sm">
- 缺货设备(台)
- </view>
- <view class="padding-xs">
- {{stockDeviceNum}}
- </view>
- </view>
- </view>
- </view>
- <view class="grid col-2">
- <view bindtap="toRouter" data-url="settledStore">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="house" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>设备入驻</text>
- </view>
- </view>
- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/product/index">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="bag" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>商品管理</text>
- </view>
- </view>
- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/scheme/index">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="evaluate" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>方案管理</text>
- </view>
- </view>
- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/stock/index">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="manage" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>库存管理</text>
- </view>
- </view>
- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/orderGoods/index">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="cart" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>订货管理</text>
- </view>
- </view>
- <!-- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/scheme/sync">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="square-selected" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>方案同步</text>
- </view>
- </view> -->
- <view wx:if="{{userInfo.mgvmRole!=2&&userInfo.mgvmRole!=4}}" bindtap="toRouter" data-url="/pages/pssRecord/index">
- <view class="margin-xs padding radius shadow-warp common-list-row">
- <tui-icon name="order" size="30" color="#5677fc"></tui-icon>
- <text class='item-name'>进销存记录</text>
- </view>
- </view>
- </view>
- </view>
|