dt_check.vue 406 B

123456789101112131415161718192021
  1. <template>
  2. <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>
  3. </template>
  4. <script>
  5. export default {
  6. props:{
  7. check:{
  8. type:Boolean,
  9. default:false
  10. }
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. .dt-checked{
  16. display: flex;
  17. width:40upx;
  18. height:40upx;
  19. }
  20. </style>