<!--
|
* @Description:
|
* @version:
|
* @Author: chen jing wu
|
* @Date: 2023-04-19 10:07:12
|
* @LastEditors: chen jing wu
|
* @LastEditTime: 2023-04-19 13:36:27
|
-->
|
<template>
|
<section if:true={IsOverLimit} class="slds-popover slds-nubbin_left" role="dialog">
|
<span class="result_name" style="color:red;">检索结果超过了50件</span><span class="result_id" style="display:none"></span><br/>
|
</section>
|
<template for:each={results} for:item="result">
|
<span class="result_name" key={result.Id}>{result.Name}</span>
|
<span class="result_id" style="display:none" key={result.Id}>{result.Id}</span>
|
</template>
|
</template>
|