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
578 B
38 lines
578 B
12 months ago
|
<template>
|
||
|
<view class="business_view uni-inline-item">
|
||
|
<text class="card_business">{{businessTypeDesc(bussinessType)}}</text>
|
||
|
<text class="card_business_content">{{number}}</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
getBusinessTypeDesc
|
||
|
} from '@/common/directory.js';
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
props: {
|
||
|
bussinessType: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
number: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
}
|
||
|
},
|
||
|
methods:{
|
||
|
businessTypeDesc(type){
|
||
|
return getBusinessTypeDesc(type)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|