| 1234567891011121314151617181920212223 |
- <template>
- <image class="dt-checked"
- :src="check?'https://szsq.nxzhsq.cn/community/miniofile/image/selected_icon.png':'https://szsq.nxzhsq.cn/community/miniofile/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: 40 upx;
- height: 40 upx;
- }
- </style>
|