| 123456789101112131415161718192021 |
- <template>
- <image class="dt-checked" :src="check?'http://139.9.103.171:1888/img/image/selected_icon.png':'http://139.9.103.171:1888/img/image/no_selected_icon.png'" mode="widthFix"></image>
- </template>
- <script>
- export default {
- props:{
- check:{
- type:Boolean,
- default:false
- }
- }
- }
- </script>
- <style lang="scss">
- .dt-checked{
- display: flex;
- width:40upx;
- height:40upx;
- }
- </style>
|