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.
24 lines
383 B
24 lines
383 B
<template>
|
|
<view class="moreBox">
|
|
<view class="txt">{{text}}</view>
|
|
<u-icon name="arrow-right" color="#686B73" size="14"></u-icon>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['text']
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.moreBox {
|
|
display: flex;
|
|
align-items: center;
|
|
.txt {
|
|
font-size: 24rpx;
|
|
color: #686B73;
|
|
margin-right: 8rpx;
|
|
}
|
|
}
|
|
</style>
|