123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="box">
- <image v-for="v in value" :style="{width:size+'px',height:size+'px'}" src="/static/light-start.png" mode=""></image>
- <image v-for="k in (5-value)" :style="{width:size+'px',height:size+'px'}" src="/static/start.png" mode=""></image>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- nowArr:[]
- }
- },
- props:{
- size:{
- type:Number|String,
- default:15
- },
- value:{
- type:Number|String,
- default:4
- }
- },
- watch:{
- },
- }
- </script>
- <style lang="scss">
- .box{
- image{
- margin-right: 10rpx;
- }
- }
- </style>
|