Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • src
  • views
  • system
  • customize
  • cpns
  • ContentUploadText.vue
  • pref:优化企业定制所有上传图片样式
    f9018530
    fengwotao authored
    2023-02-22 15:10:00 +0800  
    Browse Files »
ContentUploadText.vue 393 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<template>
  <a-row align="bottom" :gutter="16">
    <a-col :span="1">
      <slot name="uploadImg"></slot>
    </a-col>
    <a-col :span="5" />
    <a-col :span="18" class="padd-top">
      <slot name="uploadText"></slot>
    </a-col>
  </a-row>
</template>

<script lang="ts" setup></script>

<style lang="less" scoped>
  .padd-top {
    margin-bottom: 15px;
  }
</style>