特易招,招聘小程序
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.
 
 
 

47 lines
553 B

<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>