Browse Source

fix: 某个额功能显示包装号 11/13

syhx_app_vue3
王志国 1 week ago
parent
commit
82de5e6b16
  1. 7
      src/mycomponents/balance/pack.vue

7
src/mycomponents/balance/pack.vue

@ -1,5 +1,5 @@
<template>
<view class="card_view" v-if="ShowPackingNumber">
<view class="card_view" v-if="ShowPackingNumber || isShowPackingNumberProps">
<text class="card_packing_code">{{ title }}</text>
<text class="card_content">{{ packingCode }}</text>
</view>
@ -17,6 +17,11 @@ const props = defineProps({
title: {
type: String,
default: '包装'
},
//
isShowPackingNumberProps:{
type:Boolean,
default:false
}
})
const ShowPackingNumber = ref(true)

Loading…
Cancel
Save