zhang_li
3 months ago
14 changed files with 93 additions and 36 deletions
@ -1,11 +1,17 @@ |
|||||
<template> |
<template> |
||||
<view class="page-wraper"> |
<view class="page-wraper"> |
||||
<comMoveRecord businessTypeCode="HoldToOk"> </comMoveRecord> |
<comMoveRecord :myTitle="title" businessTypeCode="HoldToOk"> </comMoveRecord> |
||||
</view> |
</view> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||
|
import { ref, getCurrentInstance, nextTick } from 'vue' |
||||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
||||
|
|
||||
|
const title = ref('') |
||||
|
onLoad((option) => { |
||||
|
title.value = option.title |
||||
|
}) |
||||
</script> |
</script> |
||||
|
|
||||
<style></style> |
<style></style> |
||||
|
@ -1,11 +1,17 @@ |
|||||
<template> |
<template> |
||||
<view class="page-wraper"> |
<view class="page-wraper"> |
||||
<comMoveRecord businessTypeCode="HoldToScrap"> </comMoveRecord> |
<comMoveRecord :myTitle="title" businessTypeCode="HoldToScrap"> </comMoveRecord> |
||||
</view> |
</view> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||
|
import { ref, getCurrentInstance, nextTick } from 'vue' |
||||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
||||
|
|
||||
|
const title = ref('') |
||||
|
onLoad((option) => { |
||||
|
title.value = option.title |
||||
|
}) |
||||
</script> |
</script> |
||||
|
|
||||
<style></style> |
<style></style> |
||||
|
Loading…
Reference in new issue