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.
32 lines
335 B
32 lines
335 B
<template>
|
|
<view class="know-bean">
|
|
<image class="img" src="" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
getDetail() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.know-bean {
|
|
|
|
.img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
|