dt_check.vue 547 B

1234567891011121314151617181920212223
  1. <template>
  2. <image class="dt-checked"
  3. :src="check?'https://szsq.nxzhsq.cn/community/miniofile/image/selected_icon.png':'https://szsq.nxzhsq.cn/community/miniofile/image/no_selected_icon.png'"
  4. mode="widthFix"></image>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. check: {
  10. type: Boolean,
  11. default: false
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. .dt-checked {
  18. display: flex;
  19. width: 40 upx;
  20. height: 40 upx;
  21. }
  22. </style>