|
@ -1,17 +1,25 @@ |
|
|
<template> |
|
|
<template> |
|
|
<job-com-main-card :dataContent="dataContent"> |
|
|
<job-com-main-card :dataContent="dataContent"> |
|
|
|
|
|
<view class="task_item" style="border-top: 1px solid #dedede;padding-top: 20rpx;margin-top: 20rpx; "> |
|
|
|
|
|
<view class="task_text"> |
|
|
<view class="card_view"> |
|
|
<view class="card_view"> |
|
|
<text class="card_packing_code ">盘点计划</text> |
|
|
<text class="card_packing_code ">盘点计划</text> |
|
|
<text class="card_content ">{{dataContent.planNumber}}</text> |
|
|
<text class="card_content ">{{dataContent.planNumber}}</text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
<view v-if="dataContent.countRange!=undefined" class=""> |
|
|
<view v-if="dataContent.countRange!=undefined" class=""> |
|
|
|
|
|
<view class="task_text"> |
|
|
<view v-for="(range, index) in dataContent.countRange" :key="index"> |
|
|
<view v-for="(range, index) in dataContent.countRange" :key="index"> |
|
|
<view class="card_view"> |
|
|
<view class="card_view"> |
|
|
<text class="card_packing_code ">{{getCountScopeName(range.type)}}</text> |
|
|
<text class="card_location ">{{getCountScopeName(range.type)}}</text> |
|
|
<text class="card_content ">{{range.value}}</text> |
|
|
<text class="card_content ">{{range.value}}</text> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
</job-com-main-card> |
|
|
</job-com-main-card> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|