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.
IOReportMgt/IOReportSysMP/miniprogram/components/sysCard/sysCard.wxml

19 lines
985 B

4 years ago
<view class="card-container" style="background-color: {{colors[reportStatus]}};">
<view class="card-header">
<text>报备类型:{{reportType}}</text>
</view>
<view class="card-divider">{{''}}</view>
<view class="card-content">
<view class="card-content-left">
<text>报备时间:</text>
<text class="text-2">{{reportDateTime}}</text>
<text>审核人:{{reviewer}}</text>
</view>
<view class="card-status">
<image class="sys-image" src="/asset/qrcode_mini.png" wx:if="{{reportStatus == 'SCHOOL_PASS'}}"></image>
<text class="sys-text" wx:if="{{reportStatus == 'SUBMIT'}}" style="color: #04137D;">院级待审</text>
<text class="sys-text" wx:if="{{reportStatus == 'DEPT_PASS'}}" style="color: #04137D;">校级待审</text>
<text class="sys-text" wx:if="{{reportStatus=='DENY' }}" style="color: red;">退回</text>
</view>
</view>
</view>