33 lines
392 B
Vue
33 lines
392 B
Vue
<template>
|
|
<view>
|
|
<view
|
|
style="
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 2vw;">
|
|
{{code==0?'请领出库':'退货入库'}}
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
onLoad(e) {
|
|
this.code = e.code
|
|
},
|
|
data() {
|
|
return {
|
|
code:0
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
|
|
</style>
|