buli
2023-05-23 07390e2fcb4adf27c928335bf27ae7939c5a80ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>54.0</apiVersion>
    <isExposed>true</isExposed>
    <targets> 
        <target>lightning__AppPage</target> 
        <target>lightning__RecordPage</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="raStatus" type="String" label="raStatus"/> 
            <property name="name" type="String" label="name"/> 
            <property name="hospitalId" type="String" label="hospitalId"/> 
            <property name="strategicDeptId" type="String" label="strategicDeptId"/> 
            <property name="accountId" type="String" label="accountId"/>  
            <property name="account" type="String" label="account"/> 
            <property name="strategicDept" type="String" label="strategicDept"/>  
            <property name="hospital" type="String" label="hospital"/>
            <property name="assetReturnDay2" type="String" label="assetReturnDay2"/>
            <property name="demoPurpose2" type="String" label="demoPurpose2"/>
            <property name="followUPOpp" type="String" label="followUPOpp"/>
            <property name="followUPOppId" type="String" label="followUPOppId"/>
            <property name="opdPlan" type="String" label="opdPlan"/>
            <property name="opdPlanId" type="String" label="opdPlanId"/>
        </targetConfig> 
    </targetConfigs>
</LightningComponentBundle>