buli
2023-05-04 d4a4ce824f3b2f3a335a3ad8e8c9efb3b37d630f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
 * @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>