zhang_li
3 months ago
21 changed files with 106 additions and 27 deletions
@ -1,11 +1,17 @@ |
|||
<template> |
|||
<view class="page-wraper"> |
|||
<comMoveRecord :allowEditStatus="true" businessTypeCode="Move"> </comMoveRecord> |
|||
<comMoveRecord :myTitle="title" :allowEditStatus="true" businessTypeCode="Move"> </comMoveRecord> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
|||
|
|||
const title = ref('') |
|||
onLoad((option) => { |
|||
title.value = option.title |
|||
}) |
|||
</script> |
|||
|
|||
<style></style> |
|||
|
@ -1,11 +1,17 @@ |
|||
<template> |
|||
<view class="page-wraper"> |
|||
<comMoveRecord businessTypeCode="OkToHold"> </comMoveRecord> |
|||
<comMoveRecord :myTitle="title" businessTypeCode="OkToHold"> </comMoveRecord> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
|||
|
|||
const title = ref('') |
|||
onLoad((option) => { |
|||
title.value = option.title |
|||
}) |
|||
</script> |
|||
|
|||
<style></style> |
|||
|
@ -1,11 +1,17 @@ |
|||
<template> |
|||
<view class="page-wraper"> |
|||
<comMoveRecord businessTypeCode="OkToScrap"> </comMoveRecord> |
|||
<comMoveRecord :myTitle="title" businessTypeCode="OkToScrap"> </comMoveRecord> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
|||
|
|||
const title = ref('') |
|||
onLoad((option) => { |
|||
title.value = option.title |
|||
}) |
|||
</script> |
|||
|
|||
<style></style> |
|||
|
@ -1,10 +1,16 @@ |
|||
<template> |
|||
<view class="page-wraper"> |
|||
<comMoveRecord businessTypeCode="ScrapToHold"> </comMoveRecord> |
|||
<comMoveRecord :myTitle="title" businessTypeCode="ScrapToHold"> </comMoveRecord> |
|||
</view> |
|||
</template> |
|||
<script setup lang="ts"> |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import comMoveRecord from '@/pages/inventoryMove/coms/comMoveRecord.vue' |
|||
|
|||
const title = ref('') |
|||
onLoad((option) => { |
|||
title.value = option.title |
|||
}) |
|||
</script> |
|||
|
|||
<style></style> |
|||
|
Loading…
Reference in new issue