h5-image-config.vue 912 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // ImageFormItems.vue - Form items specific to the h5-image component
  2. <template>
  3. <div>
  4. <el-form-item label="图片">
  5. <image-upload v-model="config.url" :file-type='["png", "jpg", "jpeg", "gif"]' :limit="1"/>
  6. </el-form-item>
  7. <div class="image-tips">
  8. <p>建议尺寸:宽750px,高不限;</p>
  9. <p>支持格式:png/jpeg/gif,不大于1M尺寸。</p>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'ImageFormItems',
  16. props: {
  17. config: {
  18. type: Object,
  19. required: true
  20. }
  21. }
  22. }
  23. </script>
  24. <style scoped>
  25. .image-tips {
  26. margin-top: 12px;
  27. padding: 12px;
  28. background-color: #fef0e6;
  29. border-left: 3px solid #ff9800;
  30. border-radius: 4px;
  31. }
  32. .image-tips p {
  33. margin: 4px 0;
  34. color: #ff9800;
  35. font-size: 12px;
  36. line-height: 1.6;
  37. }
  38. .image-tips p:first-child {
  39. margin-top: 0;
  40. }
  41. .image-tips p:last-child {
  42. margin-bottom: 0;
  43. }
  44. </style>