You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.5 KiB
48 lines
2.5 KiB
<!--pages/index/index.wxml-->
|
|
<cu-custom bgColor="bg-white">
|
|
<view slot="content" style="color:black;font-size:36rpx">工作台</view>
|
|
</cu-custom>
|
|
<!-- loading-->
|
|
<view class="list-empty" style="height:1200rpx" wx:if="{{loading}}">
|
|
<van-loading type="spinner" size="32" />
|
|
<view class="text-empty">正在加载</view>
|
|
</view>
|
|
<!-- 普通员工-->
|
|
<van-tabs sticky active="{{tabIndex}}" color="#008AFF" bind:change="onTabChange" line-height="2px" wx:elif="{{userInfo && userInfo.position == 'ORDINARY'}}">
|
|
<van-tab wx:for="{{tabList}}" wx:key="index" title="{{item.name}}" title-style="color:{{tabIndex==index?'#008AFF':'#333333'}}">
|
|
<production id="{{item.value}}" status="{{item.status}}"></production>
|
|
</van-tab>
|
|
</van-tabs>
|
|
<!-- 管理员 -->
|
|
<van-tabs sticky active="{{tabIndex}}" color="#008AFF" bind:change="onTabChange" line-height="2px" wx:elif="{{userInfo && userInfo.position}}">
|
|
<van-tab title="{{tabList[0].name}}" title-style="color:{{tabIndex==0?'#008AFF':'#333333'}}">
|
|
<supply id="{{tabList[0].value}}"></supply>
|
|
</van-tab>
|
|
<van-tab title="{{tabList[1].name}}" title-style="color:{{tabIndex==1?'#008AFF':'#333333'}}">
|
|
<purchase id="{{tabList[1].value}}"></purchase>
|
|
</van-tab>
|
|
<van-tab title="{{tabList[2].name}}" title-style="color:{{tabIndex==2?'#008AFF':'#333333'}}">
|
|
<production id="{{tabList[2].value}}"></production>
|
|
</van-tab>
|
|
</van-tabs>
|
|
<!-- 待审核的员工 -->
|
|
<view class="list-empty bg-white" style="height:{{height}}rpx" wx:elif="{{userInfo && userInfo.applicationStatus == 0}}">
|
|
<image style="width:182rpx;height:203rpx" src="/assets/image/icon_logo.png"></image>
|
|
<view class="text-empty">您的申请还在审核中,如有疑问请联系管理员。</view>
|
|
</view>
|
|
<!-- 小白用户 -->
|
|
<view class="list-empty" style="height:{{height}}rpx" wx:elif="{{userInfo && !userInfo.enterpriseId}}">
|
|
<image style="width:182rpx;height:203rpx" src="/assets/image/icon_logo.png"></image>
|
|
<view class="text-empty">您还没有入驻云印通</view>
|
|
<van-button round plain custom-style="width:320rpx;margin-top:56rpx" type="default" bind:click="applyFrom">
|
|
<text class="text-df">现在去申请</text>
|
|
</van-button>
|
|
</view>
|
|
<!-- 没有登录 -->
|
|
<view class="list-empty" style="height:{{height}}rpx" wx:else>
|
|
<image style="width:182rpx;height:203rpx" src="/assets/image/icon_logo.png"></image>
|
|
<view class="text-empty">您还没有云印通账号</view>
|
|
<van-button round plain custom-style="width:320rpx;margin-top:56rpx" type="default" bind:click="loginFrom">
|
|
<text class="text-df">现在去登录</text>
|
|
</van-button>
|
|
</view>
|