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.
74 lines
1.6 KiB
74 lines
1.6 KiB
<template>
|
|
<view class="">
|
|
<uni-popup ref="popup">
|
|
<job-common-info :dataContent="dataContent" @onClose="closePopup">
|
|
<view class="">
|
|
<view class="uni-flex uni-column">
|
|
<view class="item">
|
|
<text class="item_title">计划单号 : </text>
|
|
<text class="text_wrap">{{dataContent.planNumber}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">阶段 : </text>
|
|
<text class="text_wrap">{{getCountStageName(dataContent.stage)}} </text>
|
|
</view>
|
|
|
|
<view class="item">
|
|
<text class="item_title">库位 : </text>
|
|
<text class="text_wrap">{{dataContent.locationCode}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">盘点策略 : </text>
|
|
<text class="text_wrap">{{isOpenCount(dataContent.isOpenCount)}}</text>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</job-common-info>
|
|
</uni-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getCountStageName
|
|
} from '@/common/directory.js';
|
|
import jobCommonInfo from '@/mycomponents/job/jobCommonInfo.vue'
|
|
export default {
|
|
components: {
|
|
jobCommonInfo,
|
|
},
|
|
data() {
|
|
return {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
}
|
|
},
|
|
|
|
mounted() {},
|
|
props: {},
|
|
|
|
methods: {
|
|
openPopup(val) {
|
|
this.dataContent = val;
|
|
this.$refs.popup.open('bottom')
|
|
},
|
|
closePopup() {
|
|
this.$refs.popup.close()
|
|
},
|
|
getCountStageName(value) {
|
|
return getCountStageName(value)
|
|
},
|
|
isOpenCount(value) {
|
|
return value == "TRUE" ? "明盘" : "盲盘"
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|