You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
632 B

1 year ago
<template>
<view class="card_view" v-if="ShowPackingNumber">
9 months ago
<text class="card_packing_code ">{{title}}</text>
1 year ago
<text class="card_content ">{{packingCode}}</text>
1 year ago
</view>
</template>
<script>
import {
getSwitchInfoByCode
} from '@/common/basic.js';
1 year ago
export default {
components: {
},
data() {
return {
ShowPackingNumber:true
};
1 year ago
},
props: {
packingCode: {
type: String,
default: ''
},
title:
{
type:String,
default: '包装'
}
1 year ago
},
mounted() {
this.ShowPackingNumber=getSwitchInfoByCode('ShowPackingNumber')
1 year ago
},
methods: {
}
}
</script>
<style>
</style>