zhang_li
3 months ago
21 changed files with 106 additions and 27 deletions
@ -1,11 +1,17 @@ |
|||||
<template> |
<template> |
||||
<view class="page-wraper"> |
<view class="page-wraper"> |
||||
<comMoveRecord :allowEditStatus="true" businessTypeCode="Move"> </comMoveRecord> |
<comMoveRecord :myTitle="title" :allowEditStatus="true" businessTypeCode="Move"> </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="OkToHold"> </comMoveRecord> |
<comMoveRecord :myTitle="title" businessTypeCode="OkToHold"> </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="OkToScrap"> </comMoveRecord> |
<comMoveRecord :myTitle="title" businessTypeCode="OkToScrap"> </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,10 +1,16 @@ |
|||||
<template> |
<template> |
||||
<view class="page-wraper"> |
<view class="page-wraper"> |
||||
<comMoveRecord businessTypeCode="ScrapToHold"> </comMoveRecord> |
<comMoveRecord :myTitle="title" businessTypeCode="ScrapToHold"> </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