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.
63 lines
1.2 KiB
63 lines
1.2 KiB
<template>
|
|
<job-com-main-card :dataContent="dataContent">
|
|
<view class="task_item">
|
|
<view class="task_text">
|
|
<view class="">
|
|
申请单号 : {{dataContent.requestNumber}}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="task_text">
|
|
<view class="">
|
|
盘点阶段 : {{getCountStageName(dataContent.stage)}}
|
|
</view>
|
|
</view>
|
|
|
|
<view class="task_text">
|
|
<view class="">
|
|
盘点库位 : {{dataContent.locationCode}}
|
|
</view>
|
|
</view>
|
|
<view class="task_text">
|
|
<view class="">
|
|
盘点策略 : {{isOpenCount(dataContent.isOpenCount)}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</job-com-main-card>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getCountStageName
|
|
} from '@/common/directory.js';
|
|
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue'
|
|
export default {
|
|
components: {
|
|
jobComMainCard,
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
getCountStageName(value){
|
|
return getCountStageName(value)
|
|
},
|
|
isOpenCount(value){
|
|
return value=="TRUE"?"明盘":"盲盘"
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|
|
|