niexiting
7 months ago
201 changed files with 515 additions and 428 deletions
@ -0,0 +1,41 @@ |
|||
<template> |
|||
<view> |
|||
<view class="task_card"> |
|||
<record-top :dataContent="dataContent"></record-top> |
|||
<slot></slot> |
|||
<u-line color="#909399" /> |
|||
<record-bottom :dataContent="dataContent"></record-bottom> |
|||
</view> |
|||
</view> |
|||
</template> |
|||
|
|||
<script> |
|||
import recordTop from '@/mycomponents/record/recordTop.vue' |
|||
import recordBottom from '@/mycomponents/record/recordBottom.vue' |
|||
|
|||
export default { |
|||
components: { |
|||
recordTop, |
|||
recordBottom, |
|||
}, |
|||
data() { |
|||
return { |
|||
}; |
|||
}, |
|||
|
|||
props: { |
|||
dataContent: { |
|||
type: Object, |
|||
default: {} |
|||
}, |
|||
}, |
|||
|
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
|
|||
</style> |
@ -1,50 +1,60 @@ |
|||
<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=""> |
|||
车间代码 : {{dataContent.workShopCode}} |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="task_text"> |
|||
<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=""> |
|||
计划单号 : {{dataContent.productionPlanNumber}} |
|||
</view> |
|||
</view> |
|||
<view class="task_text"> |
|||
<view class=""> |
|||
车间代码 : {{dataContent.workShopCode}} |
|||
</view> |
|||
</view> |
|||
|
|||
<!-- <view class="task_text"> |
|||
<view class=""> |
|||
班组 : {{dataContent.team}} |
|||
</view> |
|||
</view> |
|||
</view> |
|||
</job-com-main-card> |
|||
</template> |
|||
|
|||
<script> |
|||
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
|||
export default { |
|||
components: { |
|||
jobComMainCard, |
|||
}, |
|||
data() { |
|||
return {}; |
|||
}, |
|||
|
|||
props: { |
|||
dataContent: { |
|||
type: Object, |
|||
default: {} |
|||
}, |
|||
}, |
|||
|
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
|
|||
</style> |
|||
<view class="task_text"> |
|||
<view class=""> |
|||
班次 : {{dataContent.shift}} |
|||
</view> |
|||
</view> --> |
|||
</view> |
|||
</job-com-main-card> |
|||
</template> |
|||
|
|||
<script> |
|||
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
|||
export default { |
|||
components: { |
|||
jobComMainCard, |
|||
}, |
|||
data() { |
|||
return {}; |
|||
}, |
|||
|
|||
props: { |
|||
dataContent: { |
|||
type: Object, |
|||
default: {} |
|||
}, |
|||
}, |
|||
|
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
|
|||
</style> |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue