原代码

<el-form-item prop="name" :label="$t('JieKouYingWenMingCheng')">
	<el-input v-model="addInfo.name"
                  :placeholder="$t('QingShuRu')"
                  :disabled="isQuote"></el-input>
</el-form-item>

解决方法

  • 去掉 上面的 label
  • 用 slot= label 即可 自定义
	<el-form-item prop="name">
                   <span slot="label">
                     <span class="span-box">
                       <span>{{$t('JieKouYingWenMingCheng')}}</span>
                        <el-tooltip style="diaplay:inline" effect="dark" content="接口的唯一编码,对应接口调用时的字段”interfaceName“" placement="top">
                          <i class="el-icon-question" />
                        </el-tooltip>
                     </span>
                   </span>
                  <el-input v-model="addInfo.name"
                  :placeholder="$t('QingShuRu')"
                            :disabled="isQuote"></el-input>
                </el-form-item>
Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐