20 lines
750 B
Plaintext
20 lines
750 B
Plaintext
|
|
<view class="card">
|
||
|
|
<view class="title">审批工作台</view>
|
||
|
|
<view wx:if="{{loading}}" class="hint">加载中...</view>
|
||
|
|
<view wx:for="{{stats}}" wx:key="label" class="stat">
|
||
|
|
<text>{{item.label}}</text>
|
||
|
|
<text>{{item.value}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="section-title">待审订单</view>
|
||
|
|
<view wx:for="{{orders}}" wx:key="order_id" class="task" bindtap="gotoApprove" data-order-id="{{item.order_id}}">
|
||
|
|
<text>{{item.order_no}}</text>
|
||
|
|
<text>{{item.order_status}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="section-title">审计日志</view>
|
||
|
|
<view wx:for="{{audits}}" wx:key="id" class="task">
|
||
|
|
<text>{{item.operator_name}}</text>
|
||
|
|
<text>{{item.action}}</text>
|
||
|
|
</view>
|
||
|
|
<button bindtap="logout">退出登录</button>
|
||
|
|
</view>
|