123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view>
- <view class="use-copyright dflex-c padding-lr w-full" @click="to">
- <view v-if="false" class="iconfont iconxiangqing animated rotate margin-right-sm ft-base"></view>
- <view class="ft-dark">{{title}}</view><text class="margin-lr-xs" v-if="desc">·</text><text v-if="desc">{{desc}}</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- title: {
- type: String,
- default: ''
- },
- desc: {
- type: String,
- default: ''
- },
- },
- data() {
- return {};
- },
- methods: {
- to() {
- this.$emit('to', {
- type: 'to'
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .use-copyright {
- height: 180rpx;
- position: relative;
- bottom: 0px;
- padding-bottom: 180rpx;
- padding-top: 100rpx;
- }
- .use-copyright {
- text {
- color: #c0c0c0;
- }
- }
- </style>
|