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> |
<template> |
||||
<job-com-main-card :dataContent="dataContent"> |
<job-com-main-card :dataContent="dataContent"> |
||||
<view class="task_item"> |
<view class="task_item"> |
||||
<view class="task_text"> |
<view class="task_text"> |
||||
<view class=""> |
<view class=""> |
||||
申请单号 : {{dataContent.requestNumber}} |
申请单号 : {{dataContent.requestNumber}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
|
|
||||
<view class="task_text"> |
<view class="task_text"> |
||||
<view class=""> |
<view class=""> |
||||
车间代码 : {{dataContent.workShopCode}} |
计划单号 : {{dataContent.productionPlanNumber}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
|
<view class="task_text"> |
||||
<view class="task_text"> |
<view class=""> |
||||
|
车间代码 : {{dataContent.workShopCode}} |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
<!-- <view class="task_text"> |
||||
<view class=""> |
<view class=""> |
||||
班组 : {{dataContent.team}} |
班组 : {{dataContent.team}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
</view> |
<view class="task_text"> |
||||
</job-com-main-card> |
<view class=""> |
||||
</template> |
班次 : {{dataContent.shift}} |
||||
|
</view> |
||||
<script> |
</view> --> |
||||
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
</view> |
||||
export default { |
</job-com-main-card> |
||||
components: { |
</template> |
||||
jobComMainCard, |
|
||||
}, |
<script> |
||||
data() { |
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue' |
||||
return {}; |
export default { |
||||
}, |
components: { |
||||
|
jobComMainCard, |
||||
props: { |
}, |
||||
dataContent: { |
data() { |
||||
type: Object, |
return {}; |
||||
default: {} |
}, |
||||
}, |
|
||||
}, |
props: { |
||||
|
dataContent: { |
||||
methods: { |
type: Object, |
||||
|
default: {} |
||||
} |
}, |
||||
} |
}, |
||||
</script> |
|
||||
|
methods: { |
||||
<style lang="scss"> |
|
||||
|
} |
||||
</style> |
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
|
||||
|
</style> |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue