Browse Source

修改大小写

hella_vue3
陈薪名 7 months ago
parent
commit
1fa968c4ae
  1. 25
      src/mycomponents/batch/batch.vue

25
src/mycomponents/batch/batch.vue

@ -0,0 +1,25 @@
<template>
<view class="batch_view">
<text class="card_batch">批次</text>
<text class="card_batch_content">&nbsp{{batch}}</text>
</view>
</template>
<script>
export default {
data(){
return {
}
},
props: {
batch:{
type: String,
default: ""
}
},
}
</script>
<style>
</style>
Loading…
Cancel
Save