|
@@ -24,6 +24,11 @@
|
|
|
<!-- #endif -->
|
|
|
<view class="download-card" v-for="(item, index) in downloads" :key="index" >
|
|
|
<view @click="enterItem(item.pdid)">
|
|
|
+ <view class="info-row" v-if="item.uploadFlag == 1 && (item.photoStatus + item.keyStatus + item.recordStatus)
|
|
|
+ == (item.photoTotal + item.keyTotal + item.recordTotal)">
|
|
|
+ <uni-icons class="my-icon" size="24" color="green" type="checkbox"></uni-icons>
|
|
|
+ <text style="color: green;">已上传</text>
|
|
|
+ </view>
|
|
|
<view class="info-row">
|
|
|
<text class="label">工序:</text>
|
|
|
<text class="value">{{ item.gxno }}</text>
|
|
@@ -464,4 +469,8 @@
|
|
|
margin-left: auto;
|
|
|
}
|
|
|
|
|
|
+ .my-icon {
|
|
|
+ margin-right: 5rpx;
|
|
|
+ margin-left: auto;
|
|
|
+ }
|
|
|
</style>
|