liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata" fqn="LexConsumApplyEquipmentSetReassign">
    <apiVersion>57.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__RecordPage</target>
        <target>lightning__AppPage</target>
        <target>lightning__HomePage</target>
        <target>lightning__RecordAction</target>
        <target>lightning__FlowScreen</target> 
    </targets> 
    <!-- 定义变量 --> 
    <targetConfigs> 
        <targetConfig targets="lightning__FlowScreen"> 
            <!-- name js中使用的变量,从屏幕流中获取参数  label 在屏幕流的该LWC的设置中显示 --> 
            <property name="recordId" type="String" label="recordId"/> 
            <property name="consumEquipmentId" type="String[]" label="consumEquipmentId"/> 
        </targetConfig> 
    </targetConfigs> 
</LightningComponentBundle>