emis-sapp/components/buns-post-edit-templates/bpe-bindedpost-tmp.vue
2024-07-14 19:49:39 +08:00

53 lines
657 B
Vue

<template>
<u-row justify="between">
<text class="clr-sub">您的专属快递员</text>
<u-row>
<text class="">李晓</text>
<view class="ml-10">
<u-avatar size="50" :src="''"></u-avatar>
</view>
</u-row>
</u-row>
</template>
<script>
import * as apiService from "@/common/api"
export default {
computed: {
modelInfo: {
get(){
return this.value
}
},
},
watch: {
},
props: {
value: {
default () {
return { }
}
}
},
data() {
return {
}
},
created() {
},
onHide() {
},
unmounted() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
</style>