detail.vue 243 B

123456789101112131415161718192021
  1. <template>
  2. <view>
  3. <image src="../../static/tp.jpg" mode="widthFix" class="pic"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. .pic{
  16. width: 100%;
  17. }
  18. </style>