iconImg.vue 463 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="icon_wrap">
  3. <image src="../../../static/circumstances/success.png" mode="" class="icon_img" v-if="value">
  4. </image>
  5. <image src="../../../static/circumstances/error.png" mode="" class="icon_img" v-else></image>
  6. </view>
  7. </template>
  8. <script>
  9. export default{
  10. props : {
  11. value : {
  12. type : Boolean,
  13. required : true
  14. },
  15. },
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .icon_img {
  20. width: 40rpx;
  21. height: 40rpx;
  22. }
  23. </style>