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.
56 lines
918 B
56 lines
918 B
<template>
|
|
<view>
|
|
<view class="task_card">
|
|
<job-top :dataContent="dataContent"></job-top>
|
|
|
|
<view class="task_item">
|
|
<view class="task_text">
|
|
需求物料 : {{dataContent.itemCode}}
|
|
</view>
|
|
<view class="task_text">
|
|
需求库位 : {{dataContent.toLocationCode}}
|
|
</view>
|
|
</view>
|
|
|
|
<u-line color="#909399" />
|
|
|
|
<job-bottom :dataContent="dataContent"></job-bottom>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
dateFormat,
|
|
} from '@/common/basic.js';
|
|
|
|
import jobTop from '@/mycomponents/job/jobTop.vue'
|
|
import jobBottom from '@/mycomponents/job/jobBottom.vue'
|
|
import jobProperty from '@/mycomponents/job/jobProperty.vue'
|
|
|
|
export default {
|
|
components: {
|
|
jobTop,
|
|
jobBottom,
|
|
jobProperty,
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|
|
|