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.
38 lines
564 B
38 lines
564 B
1 year ago
|
<template>
|
||
|
<view class="ljh_box">
|
||
|
<view class="tit_ljh">{{ itemData.itemCode }}</view>
|
||
|
<view class="ljh_left desc_ljh">
|
||
|
<view class="font_xs text_lightblue">{{ itemData.itemName }}</view>
|
||
|
<view class="font_xs text_lightblue">{{ itemData.itemDesc1 }}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'comBaseItem',
|
||
|
components: {},
|
||
|
props: {
|
||
|
itemData: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
filters: {
|
||
|
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|