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.
64 lines
1.3 KiB
64 lines
1.3 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.productionPlanNumber}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">车间代码 : </text>
|
|
<text class="text_wrap">{{dataContent.workshopCode}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">班组 : </text>
|
|
<text class="text_wrap">{{dataContent.team}} </text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="item_title">班次 : </text>
|
|
<text class="text_wrap">{{dataContent.shift}} </text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<u-line></u-line>
|
|
</job-common-info>
|
|
</uni-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
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()
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|