<template>
|
|
<view class="const">
|
|
<view class="title">
|
|
{{ title }}
|
|
</view>
|
|
<view class="num">
|
|
{{ num }}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props : {
|
|
title : {
|
|
default : '您当前的找活'
|
|
},
|
|
num : {
|
|
default : 0
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.const{
|
|
padding: 30rpx;
|
|
background: $uni-color;
|
|
color: #fff;
|
|
font-weight: 900;
|
|
.title{
|
|
font-size: 34rpx;
|
|
}
|
|
.num{
|
|
padding: 20rpx 0;
|
|
font-size: 38rpx;
|
|
}
|
|
}
|
|
</style>
|